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
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0d1eafcc9c4c645bc98c8e020a403cce6c373516 | 1a4f6d71e5944d80ccee022999c77a29ece56ec6 | /tools/compilers/aas/AASFile.cpp | d09235d9a7cba16632cceb913781de99e806e036 | []
| no_license | LavinasChange/qc | 8e43d20f08b620d1a1732c08234b4a1c586e84ce | fb08f8cd2ff50cd2c4b907ff43ab65a3479d4c3c | refs/heads/master | 2020-07-11T11:25:42.416507 | 2019-04-19T20:05:04 | 2019-04-19T20:05:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,114 | cpp | /*
===========================================================================
Doom 3 GPL Source Code
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
Doom 3 Source Code 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.
Doom 3 Source Code 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 Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#include "../../../idlib/precompiled.h"
#pragma hdrstop
#include "AASFile.h"
#include "AASFile_local.h"
/*
===============================================================================
idReachability
===============================================================================
*/
/*
================
Reachability_Write
================
*/
bool Reachability_Write( idFile *fp, idReachability *reach ) {
fp->WriteFloatString( "\t\t%d %d (%f %f %f) (%f %f %f) %d %d",
(int) reach->travelType, (int) reach->toAreaNum, reach->start.x, reach->start.y, reach->start.z,
reach->end.x, reach->end.y, reach->end.z, reach->edgeNum, (int) reach->travelTime );
return true;
}
/*
================
Reachability_Read
================
*/
bool Reachability_Read( idLexer &src, idReachability *reach ) {
reach->travelType = src.ParseInt();
reach->toAreaNum = src.ParseInt();
src.Parse1DMatrix( 3, reach->start.ToFloatPtr() );
src.Parse1DMatrix( 3, reach->end.ToFloatPtr() );
reach->edgeNum = src.ParseInt();
reach->travelTime = src.ParseInt();
return true;
}
/*
================
idReachability::CopyBase
================
*/
void idReachability::CopyBase( idReachability &reach ) {
travelType = reach.travelType;
toAreaNum = reach.toAreaNum;
start = reach.start;
end = reach.end;
edgeNum = reach.edgeNum;
travelTime = reach.travelTime;
}
/*
===============================================================================
idReachability_Special
===============================================================================
*/
/*
================
Reachability_Special_Write
================
*/
bool Reachability_Special_Write( idFile *fp, idReachability_Special *reach ) {
int i;
const idKeyValue *keyValue;
fp->WriteFloatString( "\n\t\t{\n" );
for ( i = 0; i < reach->dict.GetNumKeyVals(); i++ ) {
keyValue = reach->dict.GetKeyVal( i );
fp->WriteFloatString( "\t\t\t\"%s\" \"%s\"\n", keyValue->GetKey().c_str(), keyValue->GetValue().c_str() );
}
fp->WriteFloatString( "\t\t}\n" );
return true;
}
/*
================
Reachability_Special_Read
================
*/
bool Reachability_Special_Read( idLexer &src, idReachability_Special *reach ) {
idToken key, value;
src.ExpectTokenString( "{" );
while( src.ReadToken( &key ) ) {
if ( key == "}" ) {
return true;
}
src.ExpectTokenType( TT_STRING, 0, &value );
reach->dict.Set( key, value );
}
return false;
}
/*
===============================================================================
idAASSettings
===============================================================================
*/
/*
============
idAASSettings::idAASSettings
============
*/
idAASSettings::idAASSettings( void ) {
numBoundingBoxes = 1;
boundingBoxes[0] = idBounds( idVec3( -16, -16, 0 ), idVec3( 16, 16, 72 ) );
usePatches = false;
writeBrushMap = false;
playerFlood = false;
noOptimize = false;
allowSwimReachabilities = false;
allowFlyReachabilities = false;
fileExtension = "aas48";
// physics settings
gravity = idVec3( 0, 0, -1066 );
gravityDir = gravity;
gravityValue = gravityDir.Normalize();
invGravityDir = -gravityDir;
maxStepHeight = 14.0f;
maxBarrierHeight = 32.0f;
maxWaterJumpHeight = 20.0f;
maxFallHeight = 64.0f;
minFloorCos = 0.7f;
// fixed travel times
tt_barrierJump = 100;
tt_startCrouching = 100;
tt_waterJump = 100;
tt_startWalkOffLedge = 100;
}
/*
============
idAASSettings::ParseBool
============
*/
bool idAASSettings::ParseBool( idLexer &src, bool &b ) {
if ( !src.ExpectTokenString( "=" ) ) {
return false;
}
b = src.ParseBool();
return true;
}
/*
============
idAASSettings::ParseInt
============
*/
bool idAASSettings::ParseInt( idLexer &src, int &i ) {
if ( !src.ExpectTokenString( "=" ) ) {
return false;
}
i = src.ParseInt();
return true;
}
/*
============
idAASSettings::ParseFloat
============
*/
bool idAASSettings::ParseFloat( idLexer &src, float &f ) {
if ( !src.ExpectTokenString( "=" ) ) {
return false;
}
f = src.ParseFloat();
return true;
}
/*
============
idAASSettings::ParseVector
============
*/
bool idAASSettings::ParseVector( idLexer &src, idVec3 &vec ) {
if ( !src.ExpectTokenString( "=" ) ) {
return false;
}
return ( src.Parse1DMatrix( 3, vec.ToFloatPtr() ) != 0 );
}
/*
============
idAASSettings::ParseBBoxes
============
*/
bool idAASSettings::ParseBBoxes( idLexer &src ) {
idToken token;
idBounds bounds;
numBoundingBoxes = 0;
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
while( src.ReadToken( &token ) ) {
if ( token == "}" ) {
return true;
}
src.UnreadToken( &token );
src.Parse1DMatrix( 3, bounds[0].ToFloatPtr() );
if ( !src.ExpectTokenString( "-" ) ) {
return false;
}
src.Parse1DMatrix( 3, bounds[1].ToFloatPtr() );
boundingBoxes[numBoundingBoxes++] = bounds;
}
return false;
}
/*
============
idAASSettings::FromParser
============
*/
bool idAASSettings::FromParser( idLexer &src ) {
idToken token;
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
// parse the file
while ( 1 ) {
if ( !src.ReadToken( &token ) ) {
break;
}
if ( token == "}" ) {
break;
}
if ( token == "bboxes" ) {
if ( !ParseBBoxes( src ) ) { return false; }
}
else if ( token == "usePatches" ) {
if ( !ParseBool( src, usePatches ) ) { return false; }
}
else if ( token == "writeBrushMap" ) {
if ( !ParseBool( src, writeBrushMap ) ) { return false; }
}
else if ( token == "playerFlood" ) {
if ( !ParseBool( src, playerFlood ) ) { return false; }
}
else if ( token == "allowSwimReachabilities" ) {
if ( !ParseBool( src, allowSwimReachabilities ) ) { return false; }
}
else if ( token == "allowFlyReachabilities" ) {
if ( !ParseBool( src, allowFlyReachabilities ) ) { return false; }
}
else if ( token == "fileExtension" ) {
src.ExpectTokenString( "=" );
src.ExpectTokenType( TT_STRING, 0, &token );
fileExtension = token;
}
else if ( token == "gravity" ) {
ParseVector( src, gravity );
gravityDir = gravity;
gravityValue = gravityDir.Normalize();
invGravityDir = -gravityDir;
}
else if ( token == "maxStepHeight" ) {
if ( !ParseFloat( src, maxStepHeight ) ) { return false; }
}
else if ( token == "maxBarrierHeight" ) {
if ( !ParseFloat( src, maxBarrierHeight ) ) { return false; }
}
else if ( token == "maxWaterJumpHeight" ) {
if ( !ParseFloat( src, maxWaterJumpHeight ) ) { return false; }
}
else if ( token == "maxFallHeight" ) {
if ( !ParseFloat( src, maxFallHeight ) ) { return false; }
}
else if ( token == "minFloorCos" ) {
if ( !ParseFloat( src, minFloorCos ) ) { return false; }
}
else if ( token == "tt_barrierJump" ) {
if ( !ParseInt( src, tt_barrierJump ) ) { return false; }
}
else if ( token == "tt_startCrouching" ) {
if ( !ParseInt( src, tt_startCrouching ) ) { return false; }
}
else if ( token == "tt_waterJump" ) {
if ( !ParseInt( src, tt_waterJump ) ) { return false; }
}
else if ( token == "tt_startWalkOffLedge" ) {
if ( !ParseInt( src, tt_startWalkOffLedge ) ) { return false; }
}
else {
src.Error( "invalid token '%s'", token.c_str() );
}
}
if ( numBoundingBoxes <= 0 ) {
src.Error( "no valid bounding box" );
}
return true;
}
/*
============
idAASSettings::FromFile
============
*/
bool idAASSettings::FromFile( const idStr &fileName ) {
idLexer src( LEXFL_ALLOWPATHNAMES | LEXFL_NOSTRINGESCAPECHARS | LEXFL_NOSTRINGCONCAT );
idStr name;
name = fileName;
common->Printf( "loading %s\n", name.c_str() );
if ( !src.LoadFile( name ) ) {
common->Error( "WARNING: couldn't load %s\n", name.c_str() );
return false;
}
if ( !src.ExpectTokenString( "settings" ) ) {
common->Error( "%s is not a settings file", name.c_str() );
return false;
}
if ( !FromParser( src ) ) {
common->Error( "failed to parse %s", name.c_str() );
return false;
}
return true;
}
/*
============
idAASSettings::FromDict
============
*/
bool idAASSettings::FromDict( const char *name, const idDict *dict ) {
idBounds bounds;
if ( !dict->GetVector( "mins", "0 0 0", bounds[ 0 ] ) ) {
common->Error( "Missing 'mins' in entityDef '%s'", name );
}
if ( !dict->GetVector( "maxs", "0 0 0", bounds[ 1 ] ) ) {
common->Error( "Missing 'maxs' in entityDef '%s'", name );
}
numBoundingBoxes = 1;
boundingBoxes[0] = bounds;
if ( !dict->GetBool( "usePatches", "0", usePatches ) ) {
common->Error( "Missing 'usePatches' in entityDef '%s'", name );
}
if ( !dict->GetBool( "writeBrushMap", "0", writeBrushMap ) ) {
common->Error( "Missing 'writeBrushMap' in entityDef '%s'", name );
}
if ( !dict->GetBool( "playerFlood", "0", playerFlood ) ) {
common->Error( "Missing 'playerFlood' in entityDef '%s'", name );
}
if ( !dict->GetBool( "allowSwimReachabilities", "0", allowSwimReachabilities ) ) {
common->Error( "Missing 'allowSwimReachabilities' in entityDef '%s'", name );
}
if ( !dict->GetBool( "allowFlyReachabilities", "0", allowFlyReachabilities ) ) {
common->Error( "Missing 'allowFlyReachabilities' in entityDef '%s'", name );
}
if ( !dict->GetString( "fileExtension", "", fileExtension ) ) {
common->Error( "Missing 'fileExtension' in entityDef '%s'", name );
}
if ( !dict->GetVector( "gravity", "0 0 -1066", gravity ) ) {
common->Error( "Missing 'gravity' in entityDef '%s'", name );
}
gravityDir = gravity;
gravityValue = gravityDir.Normalize();
invGravityDir = -gravityDir;
if ( !dict->GetFloat( "maxStepHeight", "0", maxStepHeight ) ) {
common->Error( "Missing 'maxStepHeight' in entityDef '%s'", name );
}
if ( !dict->GetFloat( "maxBarrierHeight", "0", maxBarrierHeight ) ) {
common->Error( "Missing 'maxBarrierHeight' in entityDef '%s'", name );
}
if ( !dict->GetFloat( "maxWaterJumpHeight", "0", maxWaterJumpHeight ) ) {
common->Error( "Missing 'maxWaterJumpHeight' in entityDef '%s'", name );
}
if ( !dict->GetFloat( "maxFallHeight", "0", maxFallHeight ) ) {
common->Error( "Missing 'maxFallHeight' in entityDef '%s'", name );
}
if ( !dict->GetFloat( "minFloorCos", "0", minFloorCos ) ) {
common->Error( "Missing 'minFloorCos' in entityDef '%s'", name );
}
if ( !dict->GetInt( "tt_barrierJump", "0", tt_barrierJump ) ) {
common->Error( "Missing 'tt_barrierJump' in entityDef '%s'", name );
}
if ( !dict->GetInt( "tt_startCrouching", "0", tt_startCrouching ) ) {
common->Error( "Missing 'tt_startCrouching' in entityDef '%s'", name );
}
if ( !dict->GetInt( "tt_waterJump", "0", tt_waterJump ) ) {
common->Error( "Missing 'tt_waterJump' in entityDef '%s'", name );
}
if ( !dict->GetInt( "tt_startWalkOffLedge", "0", tt_startWalkOffLedge ) ) {
common->Error( "Missing 'tt_startWalkOffLedge' in entityDef '%s'", name );
}
return true;
}
/*
============
idAASSettings::WriteToFile
============
*/
bool idAASSettings::WriteToFile( idFile *fp ) const {
int i;
fp->WriteFloatString( "{\n" );
fp->WriteFloatString( "\tbboxes\n\t{\n" );
for ( i = 0; i < numBoundingBoxes; i++ ) {
fp->WriteFloatString( "\t\t(%f %f %f)-(%f %f %f)\n", boundingBoxes[i][0].x, boundingBoxes[i][0].y,
boundingBoxes[i][0].z, boundingBoxes[i][1].x, boundingBoxes[i][1].y, boundingBoxes[i][1].z );
}
fp->WriteFloatString( "\t}\n" );
fp->WriteFloatString( "\tusePatches = %d\n", usePatches );
fp->WriteFloatString( "\twriteBrushMap = %d\n", writeBrushMap );
fp->WriteFloatString( "\tplayerFlood = %d\n", playerFlood );
fp->WriteFloatString( "\tallowSwimReachabilities = %d\n", allowSwimReachabilities );
fp->WriteFloatString( "\tallowFlyReachabilities = %d\n", allowFlyReachabilities );
fp->WriteFloatString( "\tfileExtension = \"%s\"\n", fileExtension.c_str() );
fp->WriteFloatString( "\tgravity = (%f %f %f)\n", gravity.x, gravity.y, gravity.z );
fp->WriteFloatString( "\tmaxStepHeight = %f\n", maxStepHeight );
fp->WriteFloatString( "\tmaxBarrierHeight = %f\n", maxBarrierHeight );
fp->WriteFloatString( "\tmaxWaterJumpHeight = %f\n", maxWaterJumpHeight );
fp->WriteFloatString( "\tmaxFallHeight = %f\n", maxFallHeight );
fp->WriteFloatString( "\tminFloorCos = %f\n", minFloorCos );
fp->WriteFloatString( "\ttt_barrierJump = %d\n", tt_barrierJump );
fp->WriteFloatString( "\ttt_startCrouching = %d\n", tt_startCrouching );
fp->WriteFloatString( "\ttt_waterJump = %d\n", tt_waterJump );
fp->WriteFloatString( "\ttt_startWalkOffLedge = %d\n", tt_startWalkOffLedge );
fp->WriteFloatString( "}\n" );
return true;
}
/*
============
idAASSettings::ValidForBounds
============
*/
bool idAASSettings::ValidForBounds( const idBounds &bounds ) const {
int i;
for ( i = 0; i < 3; i++ ) {
if ( bounds[0][i] < boundingBoxes[0][0][i] ) {
return false;
}
if ( bounds[1][i] > boundingBoxes[0][1][i] ) {
return false;
}
}
return true;
}
/*
============
idAASSettings::ValidEntity
============
*/
bool idAASSettings::ValidEntity( const char *classname ) const {
idStr use_aas;
idVec3 size;
idBounds bounds;
if ( playerFlood ) {
if ( !strcmp( classname, "info_player_start" ) || !strcmp( classname , "info_player_deathmatch" ) || !strcmp( classname, "func_teleporter" ) ) {
return true;
}
}
const idDeclEntityDef *decl = static_cast<const idDeclEntityDef *>( declManager->FindType( DECL_ENTITYDEF, classname, false ) );
if ( decl && decl->dict.GetString( "use_aas", NULL, use_aas ) && !fileExtension.Icmp( use_aas ) ) {
if ( decl->dict.GetVector( "mins", NULL, bounds[0] ) ) {
decl->dict.GetVector( "maxs", NULL, bounds[1] );
} else if ( decl->dict.GetVector( "size", NULL, size ) ) {
bounds[ 0 ].Set( size.x * -0.5f, size.y * -0.5f, 0.0f );
bounds[ 1 ].Set( size.x * 0.5f, size.y * 0.5f, size.z );
}
if ( !ValidForBounds( bounds ) ) {
common->Error( "%s cannot use %s\n", classname, fileExtension.c_str() );
}
return true;
}
return false;
}
/*
===============================================================================
idAASFileLocal
===============================================================================
*/
#define AAS_LIST_GRANULARITY 1024
#define AAS_INDEX_GRANULARITY 4096
#define AAS_PLANE_GRANULARITY 4096
#define AAS_VERTEX_GRANULARITY 4096
#define AAS_EDGE_GRANULARITY 4096
/*
================
idAASFileLocal::idAASFileLocal
================
*/
idAASFileLocal::idAASFileLocal( void ) {
planeList.SetGranularity( AAS_PLANE_GRANULARITY );
vertices.SetGranularity( AAS_VERTEX_GRANULARITY );
edges.SetGranularity( AAS_EDGE_GRANULARITY );
edgeIndex.SetGranularity( AAS_INDEX_GRANULARITY );
faces.SetGranularity( AAS_LIST_GRANULARITY );
faceIndex.SetGranularity( AAS_INDEX_GRANULARITY );
areas.SetGranularity( AAS_LIST_GRANULARITY );
nodes.SetGranularity( AAS_LIST_GRANULARITY );
portals.SetGranularity( AAS_LIST_GRANULARITY );
portalIndex.SetGranularity( AAS_INDEX_GRANULARITY );
clusters.SetGranularity( AAS_LIST_GRANULARITY );
}
/*
================
idAASFileLocal::~idAASFileLocal
================
*/
idAASFileLocal::~idAASFileLocal( void ) {
int i;
idReachability *reach, *next;
for ( i = 0; i < areas.Num(); i++ ) {
for ( reach = areas[i].reach; reach; reach = next ) {
next = reach->next;
delete reach;
}
}
}
/*
================
idAASFileLocal::Clear
================
*/
void idAASFileLocal::Clear( void ) {
planeList.Clear();
vertices.Clear();
edges.Clear();
edgeIndex.Clear();
faces.Clear();
faceIndex.Clear();
areas.Clear();
nodes.Clear();
portals.Clear();
portalIndex.Clear();
clusters.Clear();
}
/*
================
idAASFileLocal::Write
================
*/
bool idAASFileLocal::Write( const idStr &fileName, unsigned int mapFileCRC ) {
int i, num;
idFile *aasFile;
idReachability *reach;
common->Printf( "[Write AAS]\n" );
common->Printf( "writing %s\n", fileName.c_str() );
name = fileName;
crc = mapFileCRC;
aasFile = fileSystem->OpenFileWrite( fileName, "fs_devpath" );
if ( !aasFile ) {
common->Error( "Error opening %s", fileName.c_str() );
return false;
}
aasFile->WriteFloatString( "%s \"%s\"\n\n", AAS_FILEID, AAS_FILEVERSION );
aasFile->WriteFloatString( "%u\n\n", mapFileCRC );
// write out the settings
aasFile->WriteFloatString( "settings\n" );
settings.WriteToFile( aasFile );
// write out planes
aasFile->WriteFloatString( "planes %d {\n", planeList.Num() );
for ( i = 0; i < planeList.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %f %f %f %f )\n", i,
planeList[i].Normal().x, planeList[i].Normal().y, planeList[i].Normal().z, planeList[i].Dist() );
}
aasFile->WriteFloatString( "}\n" );
// write out vertices
aasFile->WriteFloatString( "vertices %d {\n", vertices.Num() );
for ( i = 0; i < vertices.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %f %f %f )\n", i, vertices[i].x, vertices[i].y, vertices[i].z );
}
aasFile->WriteFloatString( "}\n" );
// write out edges
aasFile->WriteFloatString( "edges %d {\n", edges.Num() );
for ( i = 0; i < edges.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d %d )\n", i, edges[i].vertexNum[0], edges[i].vertexNum[1] );
}
aasFile->WriteFloatString( "}\n" );
// write out edgeIndex
aasFile->WriteFloatString( "edgeIndex %d {\n", edgeIndex.Num() );
for ( i = 0; i < edgeIndex.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d )\n", i, edgeIndex[i] );
}
aasFile->WriteFloatString( "}\n" );
// write out faces
aasFile->WriteFloatString( "faces %d {\n", faces.Num() );
for ( i = 0; i < faces.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d %d %d %d %d %d )\n", i, faces[i].planeNum, faces[i].flags,
faces[i].areas[0], faces[i].areas[1], faces[i].firstEdge, faces[i].numEdges );
}
aasFile->WriteFloatString( "}\n" );
// write out faceIndex
aasFile->WriteFloatString( "faceIndex %d {\n", faceIndex.Num() );
for ( i = 0; i < faceIndex.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d )\n", i, faceIndex[i] );
}
aasFile->WriteFloatString( "}\n" );
// write out areas
aasFile->WriteFloatString( "areas %d {\n", areas.Num() );
for ( i = 0; i < areas.Num(); i++ ) {
for ( num = 0, reach = areas[i].reach; reach; reach = reach->next ) {
num++;
}
aasFile->WriteFloatString( "\t%d ( %d %d %d %d %d %d ) %d {\n", i, areas[i].flags, areas[i].contents,
areas[i].firstFace, areas[i].numFaces, areas[i].cluster, areas[i].clusterAreaNum, num );
for ( reach = areas[i].reach; reach; reach = reach->next ) {
Reachability_Write( aasFile, reach );
switch( reach->travelType ) {
case TFL_SPECIAL:
Reachability_Special_Write( aasFile, static_cast<idReachability_Special *>(reach) );
break;
}
aasFile->WriteFloatString( "\n" );
}
aasFile->WriteFloatString( "\t}\n" );
}
aasFile->WriteFloatString( "}\n" );
// write out nodes
aasFile->WriteFloatString( "nodes %d {\n", nodes.Num() );
for ( i = 0; i < nodes.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d %d %d )\n", i, nodes[i].planeNum, nodes[i].children[0], nodes[i].children[1] );
}
aasFile->WriteFloatString( "}\n" );
// write out portals
aasFile->WriteFloatString( "portals %d {\n", portals.Num() );
for ( i = 0; i < portals.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d %d %d %d %d )\n", i, portals[i].areaNum, portals[i].clusters[0],
portals[i].clusters[1], portals[i].clusterAreaNum[0], portals[i].clusterAreaNum[1] );
}
aasFile->WriteFloatString( "}\n" );
// write out portalIndex
aasFile->WriteFloatString( "portalIndex %d {\n", portalIndex.Num() );
for ( i = 0; i < portalIndex.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d )\n", i, portalIndex[i] );
}
aasFile->WriteFloatString( "}\n" );
// write out clusters
aasFile->WriteFloatString( "clusters %d {\n", clusters.Num() );
for ( i = 0; i < clusters.Num(); i++ ) {
aasFile->WriteFloatString( "\t%d ( %d %d %d %d )\n", i, clusters[i].numAreas, clusters[i].numReachableAreas,
clusters[i].firstPortal, clusters[i].numPortals );
}
aasFile->WriteFloatString( "}\n" );
// close file
fileSystem->CloseFile( aasFile );
common->Printf( "done.\n" );
return true;
}
/*
================
idAASFileLocal::ParseIndex
================
*/
bool idAASFileLocal::ParseIndex( idLexer &src, idList<aasIndex_t> &indexes ) {
int numIndexes, i;
aasIndex_t index;
numIndexes = src.ParseInt();
indexes.Resize( numIndexes );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numIndexes; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
index = src.ParseInt();
src.ExpectTokenString( ")" );
indexes.Append( index );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParsePlanes
================
*/
bool idAASFileLocal::ParsePlanes( idLexer &src ) {
int numPlanes, i;
idPlane plane;
idVec4 vec;
numPlanes = src.ParseInt();
planeList.Resize( numPlanes );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numPlanes; i++ ) {
src.ParseInt();
if ( !src.Parse1DMatrix( 4, vec.ToFloatPtr() ) ) {
return false;
}
plane.SetNormal( vec.ToVec3() );
plane.SetDist( vec[3] );
planeList.Append( plane );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParseVertices
================
*/
bool idAASFileLocal::ParseVertices( idLexer &src ) {
int numVertices, i;
idVec3 vec;
numVertices = src.ParseInt();
vertices.Resize( numVertices );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numVertices; i++ ) {
src.ParseInt();
if ( !src.Parse1DMatrix( 3, vec.ToFloatPtr() ) ) {
return false;
}
vertices.Append( vec );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParseEdges
================
*/
bool idAASFileLocal::ParseEdges( idLexer &src ) {
int numEdges, i;
aasEdge_t edge;
numEdges = src.ParseInt();
edges.Resize( numEdges );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numEdges; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
edge.vertexNum[0] = src.ParseInt();
edge.vertexNum[1] = src.ParseInt();
src.ExpectTokenString( ")" );
edges.Append( edge );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParseFaces
================
*/
bool idAASFileLocal::ParseFaces( idLexer &src ) {
int numFaces, i;
aasFace_t face;
numFaces = src.ParseInt();
faces.Resize( numFaces );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numFaces; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
face.planeNum = src.ParseInt();
face.flags = src.ParseInt();
face.areas[0] = src.ParseInt();
face.areas[1] = src.ParseInt();
face.firstEdge = src.ParseInt();
face.numEdges = src.ParseInt();
src.ExpectTokenString( ")" );
faces.Append( face );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParseReachabilities
================
*/
bool idAASFileLocal::ParseReachabilities( idLexer &src, int areaNum ) {
int num, j;
aasArea_t *area;
idReachability reach, *newReach;
idReachability_Special *special;
area = &areas[areaNum];
num = src.ParseInt();
src.ExpectTokenString( "{" );
area->reach = NULL;
area->rev_reach = NULL;
area->travelFlags = AreaContentsTravelFlags( areaNum );
for ( j = 0; j < num; j++ ) {
Reachability_Read( src, &reach );
switch( reach.travelType ) {
case TFL_SPECIAL:
newReach = special = new idReachability_Special();
Reachability_Special_Read( src, special );
break;
default:
newReach = new idReachability();
break;
}
newReach->CopyBase( reach );
newReach->fromAreaNum = areaNum;
newReach->next = area->reach;
area->reach = newReach;
}
src.ExpectTokenString( "}" );
return true;
}
/*
================
idAASFileLocal::LinkReversedReachability
================
*/
void idAASFileLocal::LinkReversedReachability( void ) {
int i;
idReachability *reach;
// link reversed reachabilities
for ( i = 0; i < areas.Num(); i++ ) {
for ( reach = areas[i].reach; reach; reach = reach->next ) {
reach->rev_next = areas[reach->toAreaNum].rev_reach;
areas[reach->toAreaNum].rev_reach = reach;
}
}
}
/*
================
idAASFileLocal::ParseAreas
================
*/
bool idAASFileLocal::ParseAreas( idLexer &src ) {
int numAreas, i;
aasArea_t area;
numAreas = src.ParseInt();
areas.Resize( numAreas );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numAreas; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
area.flags = src.ParseInt();
area.contents = src.ParseInt();
area.firstFace = src.ParseInt();
area.numFaces = src.ParseInt();
area.cluster = src.ParseInt();
area.clusterAreaNum = src.ParseInt();
src.ExpectTokenString( ")" );
areas.Append( area );
ParseReachabilities( src, i );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
LinkReversedReachability();
return true;
}
/*
================
idAASFileLocal::ParseNodes
================
*/
bool idAASFileLocal::ParseNodes( idLexer &src ) {
int numNodes, i;
aasNode_t node;
numNodes = src.ParseInt();
nodes.Resize( numNodes );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numNodes; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
node.planeNum = src.ParseInt();
node.children[0] = src.ParseInt();
node.children[1] = src.ParseInt();
src.ExpectTokenString( ")" );
nodes.Append( node );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParsePortals
================
*/
bool idAASFileLocal::ParsePortals( idLexer &src ) {
int numPortals, i;
aasPortal_t portal;
numPortals = src.ParseInt();
portals.Resize( numPortals );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numPortals; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
portal.areaNum = src.ParseInt();
portal.clusters[0] = src.ParseInt();
portal.clusters[1] = src.ParseInt();
portal.clusterAreaNum[0] = src.ParseInt();
portal.clusterAreaNum[1] = src.ParseInt();
src.ExpectTokenString( ")" );
portals.Append( portal );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::ParseClusters
================
*/
bool idAASFileLocal::ParseClusters( idLexer &src ) {
int numClusters, i;
aasCluster_t cluster;
numClusters = src.ParseInt();
clusters.Resize( numClusters );
if ( !src.ExpectTokenString( "{" ) ) {
return false;
}
for ( i = 0; i < numClusters; i++ ) {
src.ParseInt();
src.ExpectTokenString( "(" );
cluster.numAreas = src.ParseInt();
cluster.numReachableAreas = src.ParseInt();
cluster.firstPortal = src.ParseInt();
cluster.numPortals = src.ParseInt();
src.ExpectTokenString( ")" );
clusters.Append( cluster );
}
if ( !src.ExpectTokenString( "}" ) ) {
return false;
}
return true;
}
/*
================
idAASFileLocal::FinishAreas
================
*/
void idAASFileLocal::FinishAreas( void ) {
int i;
for ( i = 0; i < areas.Num(); i++ ) {
areas[i].center = AreaReachableGoal( i );
areas[i].bounds = AreaBounds( i );
}
}
/*
================
idAASFileLocal::Load
================
*/
bool idAASFileLocal::Load( const idStr &fileName, unsigned int mapFileCRC ) {
idLexer src( LEXFL_NOFATALERRORS | LEXFL_NOSTRINGESCAPECHARS | LEXFL_NOSTRINGCONCAT | LEXFL_ALLOWPATHNAMES );
idToken token;
int depth;
unsigned int c;
name = fileName;
crc = mapFileCRC;
common->Printf( "[Load AAS]\n" );
common->Printf( "loading %s\n", name.c_str() );
if ( !src.LoadFile( name ) ) {
return false;
}
if ( !src.ExpectTokenString( AAS_FILEID ) ) {
common->Warning( "Not an AAS file: '%s'", name.c_str() );
return false;
}
if ( !src.ReadToken( &token ) || token != AAS_FILEVERSION ) {
common->Warning( "AAS file '%s' has version %s instead of %s", name.c_str(), token.c_str(), AAS_FILEVERSION );
return false;
}
if ( !src.ExpectTokenType( TT_NUMBER, TT_INTEGER, &token ) ) {
common->Warning( "AAS file '%s' has no map file CRC", name.c_str() );
return false;
}
c = token.GetUnsignedLongValue();
if ( mapFileCRC && c != mapFileCRC ) {
common->Warning( "AAS file '%s' is out of date", name.c_str() );
return false;
}
// clear the file in memory
Clear();
// parse the file
while ( 1 ) {
if ( !src.ReadToken( &token ) ) {
break;
}
if ( token == "settings" ) {
if ( !settings.FromParser( src ) ) { return false; }
}
else if ( token == "planes" ) {
if ( !ParsePlanes( src ) ) { return false; }
}
else if ( token == "vertices" ) {
if ( !ParseVertices( src ) ) { return false; }
}
else if ( token == "edges" ) {
if ( !ParseEdges( src ) ) { return false; }
}
else if ( token == "edgeIndex" ) {
if ( !ParseIndex( src, edgeIndex ) ) { return false; }
}
else if ( token == "faces" ) {
if ( !ParseFaces( src ) ) { return false; }
}
else if ( token == "faceIndex" ) {
if ( !ParseIndex( src, faceIndex ) ) { return false; }
}
else if ( token == "areas" ) {
if ( !ParseAreas( src ) ) { return false; }
}
else if ( token == "nodes" ) {
if ( !ParseNodes( src ) ) { return false; }
}
else if ( token == "portals" ) {
if ( !ParsePortals( src ) ) { return false; }
}
else if ( token == "portalIndex" ) {
if ( !ParseIndex( src, portalIndex ) ) { return false; }
}
else if ( token == "clusters" ) {
if ( !ParseClusters( src ) ) { return false; }
}
else {
src.Error( "idAASFileLocal::Load: bad token \"%s\"", token.c_str() );
return false;
}
}
FinishAreas();
depth = MaxTreeDepth();
if ( depth > MAX_AAS_TREE_DEPTH ) {
src.Error( "idAASFileLocal::Load: tree depth = %d", depth );
}
common->Printf( "done.\n" );
return true;
}
/*
================
idAASFileLocal::MemorySize
================
*/
int idAASFileLocal::MemorySize( void ) const {
int size;
size = planeList.Size();
size += vertices.Size();
size += edges.Size();
size += edgeIndex.Size();
size += faces.Size();
size += faceIndex.Size();
size += areas.Size();
size += nodes.Size();
size += portals.Size();
size += portalIndex.Size();
size += clusters.Size();
size += sizeof( idReachability_Walk ) * NumReachabilities();
return size;
}
/*
================
idAASFileLocal::PrintInfo
================
*/
void idAASFileLocal::PrintInfo( void ) const {
common->Printf( "%6d KB file size\n", MemorySize() >> 10 );
common->Printf( "%6d areas\n", areas.Num() );
common->Printf( "%6d max tree depth\n", MaxTreeDepth() );
ReportRoutingEfficiency();
}
/*
================
idAASFileLocal::NumReachabilities
================
*/
int idAASFileLocal::NumReachabilities( void ) const {
int i, num;
idReachability *reach;
num = 0;
for ( i = 0; i < areas.Num(); i++ ) {
for ( reach = areas[i].reach; reach; reach = reach->next ) {
num++;
}
}
return num;
}
/*
================
idAASFileLocal::ReportRoutingEfficiency
================
*/
void idAASFileLocal::ReportRoutingEfficiency( void ) const {
int numReachableAreas, total, i, n;
numReachableAreas = 0;
total = 0;
for ( i = 0; i < clusters.Num(); i++ ) {
n = clusters[i].numReachableAreas;
numReachableAreas += n;
total += n * n;
}
total += numReachableAreas * portals.Num();
common->Printf( "%6d reachable areas\n", numReachableAreas );
common->Printf( "%6d reachabilities\n", NumReachabilities() );
common->Printf( "%6d KB max routing cache\n", ( total * 3 ) >> 10 );
}
/*
================
idAASFileLocal::DeleteReachabilities
================
*/
void idAASFileLocal::DeleteReachabilities( void ) {
int i;
idReachability *reach, *nextReach;
for ( i = 0; i < areas.Num(); i++ ) {
for ( reach = areas[i].reach; reach; reach = nextReach ) {
nextReach = reach->next;
delete reach;
}
areas[i].reach = NULL;
areas[i].rev_reach = NULL;
}
}
/*
================
idAASFileLocal::DeleteClusters
================
*/
void idAASFileLocal::DeleteClusters( void ) {
aasPortal_t portal;
aasCluster_t cluster;
portals.Clear();
portalIndex.Clear();
clusters.Clear();
// first portal is a dummy
memset( &portal, 0, sizeof( portal ) );
portals.Append( portal );
// first cluster is a dummy
memset( &cluster, 0, sizeof( portal ) );
clusters.Append( cluster );
}
| [
"[email protected]"
]
| |
30e1f10ac90fd2494dfc4eeb9fb5b3b9d9ed92ce | 7cfffbd47b6bba86f0049ab30718cf9bc51f3d92 | /Calculating/ch5-1/main.cpp | b7993311d09b1a012ba1ab7b40570a711f34ce3c | []
| no_license | LostMoonkin/HomeWork | bd81911e2d62b5c47cb7e3d5d06401078436fd4c | f7ea9c1c1e90b6dd7f1ace274f595a18d08a2dc4 | refs/heads/master | 2020-12-24T09:44:24.323698 | 2017-02-15T06:37:58 | 2017-02-15T06:37:58 | 73,272,769 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,024 | cpp | #include <iostream>
#include <math.h>
using namespace std;
const double eps = 1e-6;
const int inf = 0x3f3f3f3f;
int order = 2; // 设定曲线阶数为2
/*
* 使用高斯消元求矩阵解
*/
int
gauss_pivot(double ** matrix, int n, int m) {
for (int k = 0; k < n; k++) {
double max_f = -inf + 0.0;
int i_max = 0;
for (int i = k; i < n; i++) {
if (fabs(matrix[i][k]) > max_f) {
max_f = fabs(matrix[i][k]);
i_max = i;
}
}
if (fabs(matrix[i_max][k]) < eps) {
cout << "Error: matrix is singular!" << endl;
return -1;
}
double *tmp = matrix[k];
matrix[k] = matrix[i_max];
matrix[i_max] = tmp;
for (int i = k + 1; i < n; i++) {
double coef = matrix[i][k] / matrix[k][k];
for (int j = k; j < m; j++) {
matrix[i][j] -= coef * matrix[k][j];
}
}
}
return 0;
}
void
back_sub(double ** matrix, double * result, int n, int m) {
for (int i = n - 1; i >= 0; i--) {
result[i] = matrix[i][m - 1];
for (int j = i + 1; j < n; j++) {
result[i] -= matrix[i][j] * result[j];
}
result[i] /= matrix[i][i];
}
}
void create_mat(double ** mat, double * x, double * y, int n) {
for (int i = 0; i <= order; i++) {
for (int j = 0; j <= order; j++) {
double tx = 0;
for (int k = 0; k < n; k++) {
double dx = 1;
for (int l = 0; l < j + i; l++) {
dx *= x[k];
}
tx += dx;
}
mat[i][j] = tx;
}
}
for (int i = 0; i <= order; i++) {
double ty = 0;
for (int k = 0; k < n; k++) {
double dy = 1.0;
for (int l = 0; l < i; l ++) {
dy *= x[k];
}
ty += y[k] * dy;
}
mat[i][order + 1] = ty;
}
}
int
main() {
double x[3][5] = {
1, 1.5, 2, 2.5, 3,
3.5, 4, 4.5, 5, 5.5,
6, 6.5, 7, 7.5, 8
};
double y[3][5] = {
33.4, 79.5, 122.65, 159.05, 189.15,
214.15, 238.65, 252.50, 267.55, 280.50,
296.65, 301.40, 310.40, 318.15, 325.15,
};
double ** mat, * res;
int n = 5;
mat = (double **) calloc(order + 1, sizeof(double));
res = (double *) calloc(order + 1, sizeof(double));
for (int i = 0; i <= order; i++) {
mat[i] = (double *) calloc(order + 2, sizeof(double));
}
cout << "y = a * x^2 + bx + c" << endl;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < order + 1; j++) {
memset(mat[j], 0, sizeof(double) * (order + 1));
}
create_mat(mat, x[i], y[i], n);
// for (int j = 0; j <= order; j++) {
// for (int k = 0; k <= order + 1; k++) {
// cout << mat[j][k] << " ";
// }
// cout << endl;
// }
// //debug
gauss_pivot(mat, order + 1, order + 2);
back_sub(mat, res, order + 1, order + 2);
cout << "group[" << i + 1 << "]:" << endl;
for (int j = 0; j < order + 1; j++) {
cout << res[j] << " ";
}
cout << endl;
}
cout << "y = a * e ^(k * x)" << endl;
order = 1;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 5; j++) {
y[i][j] = log(y[i][j]);
}
}
for (int i = 0; i < 3; i++) {
for (int j = 0; j < order + 1; j++) {
memset(mat[j], 0, sizeof(double) * (order + 1));
}
create_mat(mat, x[i], y[i], n);
gauss_pivot(mat, order + 1, order + 2);
back_sub(mat, res, order + 1, order + 2);
cout << "group[" << i + 1 << "]:" << endl;
res[0] = exp(res[0]);
for (int j = 0; j < order + 1; j++) {
cout << res[j] << " ";
}
cout << endl;
}
return 0;
} | [
"[email protected]"
]
| |
480c87cab3d243616cd42f97d7c561635fd1bc65 | 06b224fb7b28cabd1137f17cb85370d9e3b4c633 | /Classes/Func.cpp | 0fc78232c0c155956ca485305ace6a7e8338f5fb | []
| no_license | beatheat/Dolpha | 9713558877042c68e97344eb3401c57c4af352ba | 245e19c5c0f56680ffb53f47d39d8f5bdaa15b3a | refs/heads/master | 2022-07-18T06:24:00.269309 | 2018-06-17T21:01:06 | 2018-06-17T21:01:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,777 | cpp | #include"Func.h"
#include<math.h>
double Math::sinTable[3600];
double Math::cosTable[3600];
double Math::tanTable[3600];
void Math::CreateTable()
{
for (int i = 0; i < 3600; i++) {
float x = (float)i * M_PI / 1800.f;
sinTable[i] = sin(x);
cosTable[i] = cos(x);
tanTable[i] = tan(x);
}
}
double Math::Sin(float value)
{
if (value == 0) return 0;
int idx = (int)(value * 10) % 3600;
int sign = (0xa0000000 & idx) >> 31;
idx = 3600 * sign + idx;
return sinTable[idx];
}
double Math::Cos(float value)
{
if (value == 0) return 1;
int idx = (int)(value * 10) % 3600;
int sign = (0xa0000000 & idx) >> 31;
idx = 3600 * sign + idx;
return cosTable[idx];
}
inline double Math::Tan(float value)
{
if (value == 0) return 0;
int idx = (int)(value * 10) % 3600;
int sign = (0xa0000000 & idx) >> 31;
idx = 3600 * sign + idx;
return tanTable[idx];
}
float Math::PointToDistance(float x1, float y1, float x2, float y2)
{
return sqrt((x2 - x1)*(x2 - x1) + (y2 - y1)*(y2 - y1));
}
float Math::PointToDirection(float x1, float y1, float x2, float y2)
{
return atan2(y2 - y1, x2 - x1) * 180 / M_PI;
}
float Math::FastInvSqrt(float value)
{
float Half = 0.5f * value;
int i = *(int *)&value;
i = 0x5f3759df - (i >> 1);// This line hides a LOT of math!
value = *(float *)&i;
value = value * (1.5f - Half*value*value);// repeat this statement for a better approximation
return value;
}
template<typename Out>
void __split(const std::string &s, char delim, Out result) {
std::stringstream ss(s);
std::string item;
while (std::getline(ss, item, delim)) {
*(result++) = item;
}
}
std::vector<std::string> StringSplit(const std::string &s, char delim) {
std::vector<std::string> elems;
__split(s, delim, std::back_inserter(elems));
return elems;
}
| [
"[email protected]"
]
| |
d32927c6c54b328f000f78fa9b905137733830a2 | 925f0c5fb169d84d46983fe437d8578e6024cf7f | /console.h | 0ea35d05e0e29b4111f9e59822708429bd3c2a03 | [
"MIT"
]
| permissive | doj/few | d1e2def7ec5c6220045a959c6af9aad9fea38265 | eb1d36694817aa4c89ba3dbfcf849a59fac99312 | refs/heads/master | 2022-09-26T02:10:57.552528 | 2022-09-02T08:25:58 | 2022-09-02T08:25:58 | 28,159,137 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | h | /* -*- mode: C++; c-basic-offset: 4; tab-width: 8; -*-
* vi: set shiftwidth=4 tabstop=8:
* :indentSize=4:tabSize=8:
*/
#pragma once
/**
* open the console/tty device as STDIN (file descriptor 0).
* @return true upon success.
*/
bool open_tty_as_stdin();
| [
"[email protected]"
]
| |
1f8f21684d9beb6d8c93fed297734b32f355681a | 63c71060f36866bca4ac27304cef6d5755fdc35c | /src/GICs/GicImgrolling.h | fce671703bf8b57950c4bb43543ada21946d03cf | []
| no_license | 15831944/barry_dev | bc8441cbfbd4b62fbb42bee3dcb79ff7f5fcaf8a | d4a83421458aa28ca293caa7a5567433e9358596 | refs/heads/master | 2022-03-24T07:00:26.810732 | 2015-12-22T07:19:58 | 2015-12-22T07:19:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,025 | h | ////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2005
// Packet Engineering, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification is not permitted unless authorized in writing by a duly
// appointed officer of Packet Engineering, Inc. or its derivatives
//
// Description:
//
//
// Modification History:
// 07/15/2010: Created by Jozhi Peng
////////////////////////////////////////////////////////////////////////////
#ifndef Aos_GICs_GicImgrolling_h
#define Aos_GICs_GicImgrolling_h
#include "GICs/GIC.h"
#include "SEUtil/Ptrs.h"
#include "Util/RCObject.h"
#include "Util/RCObjImp.h"
#include "Util/String.h"
class AosGicImgrolling : public AosGic
{
public:
AosGicImgrolling(const bool flag);
~AosGicImgrolling();
virtual bool
generateCode(
const AosHtmlReqProcPtr &htmlPtr,
AosXmlTagPtr &vpd,
const AosXmlTagPtr &obj,
const OmnString & parentId,
AosHtmlCode &code
);
private:
};
#endif
| [
"[email protected]"
]
| |
f30d916dbc0d991495ffe112ab2c05d62186a255 | 46d4712c82816290417d611a75b604d51b046ecc | /Samples/Win7Samples/multimedia/directshow/filters/gargle/gargprop.cpp | 6c302b0ca095af33cd0440e11ef226b9dc666a71 | [
"MIT"
]
| permissive | ennoherr/Windows-classic-samples | 00edd65e4808c21ca73def0a9bb2af9fa78b4f77 | a26f029a1385c7bea1c500b7f182d41fb6bcf571 | refs/heads/master | 2022-12-09T20:11:56.456977 | 2022-12-04T16:46:55 | 2022-12-04T16:46:55 | 156,835,248 | 1 | 0 | NOASSERTION | 2022-12-04T16:46:55 | 2018-11-09T08:50:41 | null | UTF-8 | C++ | false | false | 10,150 | cpp | //------------------------------------------------------------------------------
// File: GargProp.cpp
//
// Desc: DirectShow sample code - implementation of CGargleProperties class.
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------
#include <streams.h>
// Eliminate two expected level 4 warnings from the Microsoft compiler.
// The class does not have an assignment or copy operator, and so cannot
// be passed by value. This is normal. This file compiles clean at the
// highest (most thorough) warning level (-W4).
#pragma warning(disable: 4511 4512)
#include <commctrl.h>
#include <olectl.h>
#include <memory.h>
#include <math.h>
#include "resource.h"
#include "igargle.h"
#include "gargprop.h"
//
// CreateInstance
//
// Override CClassFactory method.
// Set lpUnk to point to an IUnknown interface on a new CGargleProperties object
//
CUnknown * WINAPI CGargleProperties::CreateInstance(LPUNKNOWN lpunk, HRESULT *phr)
{
ASSERT(phr);
CUnknown *punk = new CGargleProperties(lpunk, phr);
if (punk == NULL) {
if (phr)
*phr = E_OUTOFMEMORY;
}
return punk;
} // CreateInstance
//
// CGargleProperties constructor
//
// initialise a CGargleProperties object.
//
CGargleProperties::CGargleProperties(LPUNKNOWN lpunk, HRESULT *phr)
: CBasePropertyPage(NAME("Gargle Property Page"), lpunk,
IDD_GARGPROP, IDS_NAME)
, m_pGargle(NULL)
{
} // (constructor)
//
// SetButtonText
//
// Utility function to set the text of the button to reflect the curent
// waveform being used
//
void SetButtonText(HWND hwnd, int iShape)
{
if (iShape==0)
SetDlgItemText(hwnd, IDB_SQUARE_TRIANGLE, TEXT("Triangle wave->square"));
else
SetDlgItemText(hwnd, IDB_SQUARE_TRIANGLE, TEXT("Square wave->triangle"));
} // SetButtonText
//
// ConvertToPosition
//
// Convert a frequency f (which is the gargle rate) to a slider position.
// f runs from 1 to 1000.
// p runs from 0 to 300.
// f = 10**(p/100)
// p = 100*log10(f)
//
int ConvertToPosition(int f)
{
// protect against unexpected input
if (f < 1) f = 1;
if (f > 1000) f = 1000;
double x = f;
x = 100.0 * log10(x);
// protect against rounding at the ends
int p = (int)x;
if (p < 0) p = 0;
if (p > 300) p = 300;
return p;
} // ConvertToPosition
//
// ConvertToFrequency
//
// Convert a slider position p to a frequency (gargle rate).
// f runs from 1 to 1000.
// p runs from 0 to 300.
// f = 10**(p/100)
// p = 100*log10(f)
//
int ConvertToFrequency(int p)
{
// protect against unexpected input
if (p < 0) p = 0;
if (p > 300) p = 300;
double x = p;
x = pow(10.0, x/100.0);
// protect against rounding at the ends
int f = (int)x;
if (f < 1) f = 1;
if (f > 1000) f = 1000;
return f;
} // ConvertToFrequency
//
// OnReceiveMessage
//
// Override CBasePropertyPage method.
// Handle windows messages for the dialog of the property sheet.
//
INT_PTR CGargleProperties::OnReceiveMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
switch (uMsg)
{
case WM_INITDIALOG:
m_hwndSlider = CreateSlider(hwnd);
SetButtonText(hwnd, m_iGargleShape);
ASSERT(m_hwndSlider);
return TRUE; // I don't call setfocus...
case WM_VSCROLL:
ASSERT(m_hwndSlider);
OnSliderNotification(wParam);
return TRUE;
case WM_COMMAND:
if (LOWORD(wParam) == IDB_SQUARE_TRIANGLE)
{
// Cycle through shapes. See note below.
//
int iShape;
m_pGargle->get_GargleShape(&iShape); // find what we now have
iShape = 1-iShape; // change shapes
m_pGargle->put_GargleShape(iShape); // put it back
SetButtonText(hwnd, iShape); // reflect in dialog
}
else if (LOWORD(wParam) == IDB_DEFAULT)
{
// Restore the default settings.
// Set the filter.
//
m_pGargle->put_DefaultGargleRate();
m_pGargle->put_GargleShape(0);
// Set the slider position on the screen to match.
//
int iPos;
m_pGargle->get_GargleRate(&iPos);
iPos = ConvertToPosition(iPos);
SendMessage(m_hwndSlider, TBM_SETPOS, TRUE, iPos);
// Set the button text to match.
//
int iShape;
m_pGargle->get_GargleShape(&iShape); // find out what we now have
SetButtonText(hwnd, iShape);
} else
{
// Should not occur - debug!
//
TCHAR Buff[100];
(void)StringCchPrintf(Buff, NUMELMS(Buff), TEXT("wParam=%08x\0"), wParam);
#ifdef DEBUG
DbgBreakPoint( Buff, TEXT(__FILE__), __LINE__ );
#else
ASSERT(!"Should not occur - debug!");
#endif
}
return TRUE;
case WM_DESTROY:
DestroyWindow(m_hwndSlider);
return TRUE;
default:
return FALSE;
} // switch
} // OnReceiveMessage
//
// OnConnect
//
// Override CBasePropertyPage method.
// Get the interface to the filter.
// Set the member variables m_iGargleRate and m_iGargleShape.
//
HRESULT CGargleProperties::OnConnect(IUnknown * punk)
{
// Get IGargle interface
//
if (punk == NULL) {
DbgBreak("You can't call OnConnect with a NULL pointer!!");
return(E_POINTER);
}
ASSERT(m_pGargle == NULL);
HRESULT hr = punk->QueryInterface(IID_IGargle, (void **) &m_pGargle);
if (FAILED(hr)) {
DbgBreak("Can't get IGargle interface!");
return E_NOINTERFACE;
}
CheckPointer(m_pGargle,E_FAIL);
m_pGargle->get_GargleRate(&m_iGargleRate);
m_pGargle->get_GargleShape(&m_iGargleShape);
return NOERROR;
} // OnConnect
//
// OnDisconnect
//
// Override CBasePropertyPage method.
// Release the private interface.
//
HRESULT CGargleProperties::OnDisconnect()
{
//
// Release the interface
//
if (!m_pGargle)
return E_UNEXPECTED;
m_pGargle->Release();
m_pGargle = NULL;
return(NOERROR);
} // OnDisconnect
//
// OnDeactivate
//
// Destroy the dialog.
//
HRESULT CGargleProperties::OnDeactivate(void)
{
ASSERT(m_pGargle);
//
// Remember the Gargle Rate and shape for the next Activate() call
//
m_pGargle->get_GargleRate(&m_iGargleRate);
m_pGargle->get_GargleShape(&m_iGargleShape);
return NOERROR;
} // OnDeactivate
//
// CreateSlider
//
// Create the slider (common control) to allow the user to
// adjust the gargling rate.
//
HWND CGargleProperties::CreateSlider(HWND hwndParent)
{
// Find how to convert dialog units to screen units
//
LONG XUnit = GetDialogBaseUnits();
LONG YUnit = XUnit>>16;
XUnit = XUnit & 0x0000ffff;
// Create the slider child window at a position which fits the dialog
//
HWND hwndSlider = CreateWindow( TRACKBAR_CLASS
, TEXT("")
, WS_CHILD | WS_VISIBLE | TBS_VERT | TBS_BOTH
, 15*XUnit // x
, 0 // y
, 5*XUnit // width
, 5*YUnit // Height
, hwndParent
, NULL // menu
, g_hInst
, NULL // CLIENTCREATESTRUCT
);
if (hwndSlider == NULL) {
DbgLog((LOG_ERROR, 1,
TEXT("Could not create window. error code: 0x%x"), GetLastError()));
return NULL;
}
// Set the range to 0..300 which is converted into Hz as 10**(p/100)
// where p is the slider position. SeeConvertToFrequency() above.
//
SendMessage(hwndSlider, TBM_SETRANGE, TRUE, MAKELONG(0, 300) );
// Set a tick at the default of 10Hz which is 100 on the log scale.
// Put another one at 100Hz which corresponds to 200 on the log scale.
//
SendMessage(hwndSlider, TBM_SETTIC, 0, 100L);
SendMessage(hwndSlider, TBM_SETTIC, 0, 200L);
// Set the slider position according to the value we obtain from
// initialisation or from the last Deactivate() call.
//
int iPos = ConvertToPosition(m_iGargleRate);
SendMessage(hwndSlider, TBM_SETPOS, TRUE, iPos);
return hwndSlider;
} // CreateSlider
//
// OnSliderNotification
//
// Handle the notification meesages from the slider control
//
void CGargleProperties::OnSliderNotification(WPARAM wParam)
{
int iPos;
switch (wParam)
{
case TB_BOTTOM:
iPos = ConvertToPosition(MinGargleRate);
SendMessage(m_hwndSlider, TBM_SETPOS, TRUE, (LPARAM) iPos);
break;
case TB_TOP:
iPos = ConvertToPosition(MaxGargleRate);
SendMessage(m_hwndSlider, TBM_SETPOS, TRUE, (LPARAM) iPos);
break;
case TB_PAGEDOWN:
case TB_PAGEUP:
break;
case TB_THUMBPOSITION:
case TB_ENDTRACK:
{
int iRate = (int) SendMessage(m_hwndSlider, TBM_GETPOS, 0, 0L);
iRate = ConvertToFrequency(iRate);
m_pGargle->put_GargleRate(iRate);
break;
}
case TB_THUMBTRACK: // default handling of these messages is ok.
case TB_LINEDOWN:
case TB_LINEUP:
break;
}
} // OnSliderNotification
#pragma warning(disable: 4514) // "unreferenced inline function has been removed"
| [
"[email protected]"
]
| |
65845e3eaebb2c1ab60a8677991dbcaed00985e4 | e7be2ee48f952308f5672240c2c833d718d9d431 | /Juliet_Test_Suite_v1.3_for_C_Cpp/C/testcases/CWE789_Uncontrolled_Mem_Alloc/s02/CWE789_Uncontrolled_Mem_Alloc__new_wchar_t_connect_socket_65a.cpp | f9c4f0774c5de08f187f39d18d6693c804678276 | []
| no_license | buihuynhduc/tooltest | 5146c44cd1b7bc36b3b2912232ff8a881269f998 | b3bb7a6436b3ab7170078860d6bcb7d386762b5e | refs/heads/master | 2020-08-27T20:46:53.725182 | 2019-10-25T05:42:36 | 2019-10-25T05:42:36 | 217,485,049 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,795 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE789_Uncontrolled_Mem_Alloc__new_wchar_t_connect_socket_65a.cpp
Label Definition File: CWE789_Uncontrolled_Mem_Alloc__new.label.xml
Template File: sources-sinks-65a.tmpl.cpp
*/
/*
* @description
* CWE: 789 Uncontrolled Memory Allocation
* BadSource: connect_socket Read data using a connect socket (client side)
* GoodSource: Small number greater than zero
* Sinks:
* GoodSink: Allocate memory with new [] and check the size of the memory to be allocated
* BadSink : Allocate memory with new [], but incorrectly check the size of the memory to be allocated
* Flow Variant: 65 Data/control flow: data passed as an argument from one function to a function in a different source file called via a function pointer
*
* */
#include "std_testcase.h"
#ifndef _WIN32
#include <wchar.h>
#endif
#ifdef _WIN32
#include <winsock2.h>
#include <windows.h>
#include <direct.h>
#pragma comment(lib, "ws2_32") /* include ws2_32.lib when linking */
#define CLOSE_SOCKET closesocket
#else /* NOT _WIN32 */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define CLOSE_SOCKET close
#define SOCKET int
#endif
#define TCP_PORT 27015
#define IP_ADDRESS "127.0.0.1"
#define CHAR_ARRAY_SIZE (3 * sizeof(data) + 2)
#define HELLO_STRING L"hello"
namespace CWE789_Uncontrolled_Mem_Alloc__new_wchar_t_connect_socket_65
{
#ifndef OMITBAD
/* bad function declaration */
void badSink(size_t data);
void bad()
{
size_t data;
/* define a function pointer */
void (*funcPtr) (size_t) = badSink;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET connectSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a connect socket */
connectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (connectSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = inet_addr(IP_ADDRESS);
service.sin_port = htons(TCP_PORT);
if (connect(connectSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed, make sure to recv one
* less char than is in the recv_buf in order to append a terminator */
recvResult = recv(connectSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to unsigned int */
data = strtoul(inputBuffer, NULL, 0);
}
while (0);
if (connectSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(connectSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
/* use the function pointer */
funcPtr(data);
}
#endif /* OMITBAD */
#ifndef OMITGOOD
/* goodG2B uses the GoodSource with the BadSink */
void goodG2BSink(size_t data);
static void goodG2B()
{
size_t data;
void (*funcPtr) (size_t) = goodG2BSink;
/* Initialize data */
data = 0;
/* FIX: Use a relatively small number for memory allocation */
data = 20;
funcPtr(data);
}
/* goodB2G uses the BadSource with the GoodSink */
void goodB2GSink(size_t data);
static void goodB2G()
{
size_t data;
void (*funcPtr) (size_t) = goodB2GSink;
/* Initialize data */
data = 0;
{
#ifdef _WIN32
WSADATA wsaData;
int wsaDataInit = 0;
#endif
int recvResult;
struct sockaddr_in service;
SOCKET connectSocket = INVALID_SOCKET;
char inputBuffer[CHAR_ARRAY_SIZE];
do
{
#ifdef _WIN32
if (WSAStartup(MAKEWORD(2,2), &wsaData) != NO_ERROR)
{
break;
}
wsaDataInit = 1;
#endif
/* POTENTIAL FLAW: Read data using a connect socket */
connectSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (connectSocket == INVALID_SOCKET)
{
break;
}
memset(&service, 0, sizeof(service));
service.sin_family = AF_INET;
service.sin_addr.s_addr = inet_addr(IP_ADDRESS);
service.sin_port = htons(TCP_PORT);
if (connect(connectSocket, (struct sockaddr*)&service, sizeof(service)) == SOCKET_ERROR)
{
break;
}
/* Abort on error or the connection was closed, make sure to recv one
* less char than is in the recv_buf in order to append a terminator */
recvResult = recv(connectSocket, inputBuffer, CHAR_ARRAY_SIZE - 1, 0);
if (recvResult == SOCKET_ERROR || recvResult == 0)
{
break;
}
/* NUL-terminate the string */
inputBuffer[recvResult] = '\0';
/* Convert to unsigned int */
data = strtoul(inputBuffer, NULL, 0);
}
while (0);
if (connectSocket != INVALID_SOCKET)
{
CLOSE_SOCKET(connectSocket);
}
#ifdef _WIN32
if (wsaDataInit)
{
WSACleanup();
}
#endif
}
funcPtr(data);
}
void good()
{
goodG2B();
goodB2G();
}
#endif /* OMITGOOD */
} /* close namespace */
/* Below is the main(). It is only used when building this testcase on
its own for testing or for building a binary to use in testing binary
analysis tools. It is not used when compiling all the testcases as one
application, which is how source code analysis tools are tested. */
#ifdef INCLUDEMAIN
using namespace CWE789_Uncontrolled_Mem_Alloc__new_wchar_t_connect_socket_65; /* so that we can use good and bad easily */
int main(int argc, char * argv[])
{
/* seed randomness */
srand( (unsigned)time(NULL) );
#ifndef OMITGOOD
printLine("Calling good()...");
good();
printLine("Finished good()");
#endif /* OMITGOOD */
#ifndef OMITBAD
printLine("Calling bad()...");
bad();
printLine("Finished bad()");
#endif /* OMITBAD */
return 0;
}
#endif
| [
"[email protected]"
]
| |
2e94df13f2971d31236d356b179079de5ab94f36 | d1a3800ce7e2f1ea6be524b9040b9ae98f834e55 | /graph algo/topological_sort.cpp | 5cc3329bd731153be8211f49de3073b50974a788 | []
| no_license | souraavv/Algorithms | e878f8271f864dbed7eb16025ecfbb4622ffc7fd | affff50c8a91337c6e2a12ce8a72b988b1bd3744 | refs/heads/master | 2022-03-16T19:42:42.438495 | 2019-10-17T09:13:14 | 2019-10-17T09:13:14 | 221,678,810 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,067 | cpp | #include <bits/stdc++.h>
using namespace std;
int nodes, edges;
stack<int> s;
bool dfs(vector<int> g[], int rt , int vis[]){
if(vis[rt]==1) return true; // back edge
if(vis[rt]==2) return false; // cross edge
vis[rt] = 1; // preorder
for(int i =0;i<g[rt].size();i++){
if(dfs(g , g[rt][i], vis))return true;
}
vis[rt] = 2; // postorder
s.push(rt);
return false;
}
bool toposort(vector<int> g[]){
int vis[nodes];
bool t = false;
memset(vis, 0 , sizeof(vis));
for(int i=0;i<nodes;i++){
t = dfs(g , i , vis);
if(t) break;
}
return t;
}
int main(){
cin>> nodes >> edges;
vector<int> g[nodes];
for(int i =0;i<edges;i++){
int u , v;
cin>> u>> v;
u--;v--;
g[u].push_back(v);
}
bool t = toposort(g);
if(t) cout << " not a DAG\n";
else {
//cout << s.size() << " ";
while(!s.empty()){
cout << s.top()+1<< " ";
s.pop();
}
}
}
| [
"[email protected]"
]
| |
bd18aa332533662f6dffd34a2ca540e4dc915f0e | 8d94a3fb55590e96567af860249a2b44cae44312 | /Arduino/Razor_AHRS_Scott/Output.ino | e9527f541991941cb6faede16656ab2e99525623 | []
| no_license | rscarson14/Active_MotCap_System | 9186953d8bb83d97c2f0652fd28aedfaa98a084a | c0e16de258a37d430089e0726822741b467b95fe | refs/heads/master | 2020-04-17T22:54:05.927008 | 2014-04-17T03:14:41 | 2014-04-17T03:14:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,957 | ino | /* This file is part of the Razor AHRS Firmware */
// Output angles: yaw, pitch, roll
void output_angles()
{
if (output_format == OUTPUT__FORMAT_BINARY)
{
float ypr[3];
ypr[0] = TO_DEG(yaw);
ypr[1] = TO_DEG(pitch);
ypr[2] = TO_DEG(roll);
Serial.write((byte*) ypr, 12); // No new-line
}
else if (output_format == OUTPUT__FORMAT_TEXT)
{
//Serial.print("#YPR=");
Serial.print(TO_DEG(yaw)); Serial.print(",");
Serial.print(TO_DEG(pitch)); Serial.print(",");
Serial.print(TO_DEG(roll)); Serial.println();
}
}
void output_calibration(int calibration_sensor)
{
if (calibration_sensor == 0) // Accelerometer
{
// Output MIN/MAX values
Serial.print("accel x,y,z (min/max) = ");
for (int i = 0; i < 3; i++) {
if (accel[i] < accel_min[i]) accel_min[i] = accel[i];
if (accel[i] > accel_max[i]) accel_max[i] = accel[i];
Serial.print(accel_min[i]);
Serial.print("/");
Serial.print(accel_max[i]);
if (i < 2) Serial.print(" ");
else Serial.println();
}
}
else if (calibration_sensor == 1) // Magnetometer
{
// Output MIN/MAX values
Serial.print("magn x,y,z (min/max) = ");
for (int i = 0; i < 3; i++) {
if (magnetom[i] < magnetom_min[i]) magnetom_min[i] = magnetom[i];
if (magnetom[i] > magnetom_max[i]) magnetom_max[i] = magnetom[i];
Serial.print(magnetom_min[i]);
Serial.print("/");
Serial.print(magnetom_max[i]);
if (i < 2) Serial.print(" ");
else Serial.println();
}
}
else if (calibration_sensor == 2) // Gyroscope
{
// Average gyro values
for (int i = 0; i < 3; i++)
gyro_average[i] += gyro[i];
gyro_num_samples++;
// Output current and averaged gyroscope values
Serial.print("gyro x,y,z (current/average) = ");
for (int i = 0; i < 3; i++) {
Serial.print(gyro[i]);
Serial.print("/");
Serial.print(gyro_average[i] / (float) gyro_num_samples);
if (i < 2) Serial.print(" ");
else Serial.println();
}
}
}
void output_sensors_text(char raw_or_calibrated)
{
#if MASTER == true
Serial.print("1");
#else
Serial.print("0");
#endif
//Serial.print("#A-"); Serial.print(raw_or_calibrated); Serial.print('=');
Serial.print(accel[0]); Serial.print(",");
Serial.print(accel[1]); Serial.print(",");
Serial.print(accel[2]); Serial.print(",");
//Serial.print("#M-"); Serial.print(raw_or_calibrated); Serial.print('=');
//Serial.print(magnetom[0]); Serial.print(",");
//Serial.print(magnetom[1]); Serial.print(",");
//Serial.print(magnetom[2]); Serial.println();
//Serial.print("#G-"); Serial.print(raw_or_calibrated); Serial.print('=');
Serial.print(gyro[0]); Serial.print(",");
Serial.print(gyro[1]); Serial.print(",");
Serial.print(gyro[2]); Serial.println();
}
void output_ski_boot(){
Serial.print("poop");
}
void output_sensors_binary()
{
Serial.write((byte*) accel, 12);
Serial.write((byte*) magnetom, 12);
Serial.write((byte*) gyro, 12);
}
void output_sensors()
{
if (output_mode == OUTPUT__MODE_SENSORS_RAW)
{
if (output_format == OUTPUT__FORMAT_BINARY)
output_sensors_binary();
else if (output_format == OUTPUT__FORMAT_TEXT)
output_sensors_text('R');
}
else if (output_mode == OUTPUT__MODE_SENSORS_CALIB)
{
// Apply sensor calibration
compensate_sensor_errors();
if (output_format == OUTPUT__FORMAT_BINARY)
output_sensors_binary();
else if (output_format == OUTPUT__FORMAT_TEXT)
output_sensors_text('C');
}
else if (output_mode == OUTPUT__MODE_SENSORS_BOTH)
{
if (output_format == OUTPUT__FORMAT_BINARY)
{
output_sensors_binary();
compensate_sensor_errors();
output_sensors_binary();
}
else if (output_format == OUTPUT__FORMAT_TEXT)
{
output_sensors_text('R');
compensate_sensor_errors();
output_sensors_text('C');
}
}
}
| [
"[email protected]"
]
| |
87010e1cf5a5dfee8d0f5732b54f29aeab4f5ca2 | f14626611951a4f11a84cd71f5a2161cd144a53a | /Server/BounsServer/App/GetBounsInfoOper.h | e495f71ad371c083fd630cc47396b5dacdaf1402 | []
| no_license | Deadmanovi4/mmo-resourse | 045616f9be76f3b9cd4a39605accd2afa8099297 | 1c310e15147ae775a59626aa5b5587c6895014de | refs/heads/master | 2021-05-29T06:14:28.650762 | 2015-06-18T01:16:43 | 2015-06-18T01:16:43 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 699 | h | #pragma once
#include "BounsOper.h"
#include "../DB/RsBouns.h"
class CGetBounsInfoOper :
public CBounsOper
{
private:
string m_strAccount; // 玩家账号
DWORD m_dwAreaServerID; // 区服ID
list<tagBounsInfo*> m_listBounsInfo;
public:
CGetBounsInfoOper(eOperType eOt);
virtual ~CGetBounsInfoOper(void);
void SetAccount(const char* strAccount) { m_strAccount = strAccount; }
const char* GetAccount() { return m_strAccount.c_str(); }
void SetAreaServerID(DWORD dwID) { m_dwAreaServerID = dwID; }
DWORD GetAreaServerID() { return m_dwAreaServerID; }
virtual BOOL DoOperator();
// 检测奖励信息是否完整
void CheckBounsDes();
};
| [
"[email protected]"
]
| |
01d1dbdc17ac824a771d8a0ff17d90020ec0b21e | d0dac1f8cc053e5d3fb3949e537ef3682b6ad1c0 | /system/Mouse.h | 26393ce4e7343f28edbc2f0e03d55e9f923b6258 | []
| no_license | Vodurden/GridFight | dde99d52895b71fc22890174d127db3710baff54 | 88831e6c0c74f9a56af562b6dcfb50a7a1fa98b8 | refs/heads/master | 2021-01-23T11:07:26.601086 | 2010-04-21T01:13:10 | 2010-04-21T01:13:10 | 577,184 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 267 | h | #ifndef GRIDFIGHT_SYSTEM_MOUSE_H
#define GRIDFIGHT_SYSTEM_MOUSE_H
//Lifted from SFML, I did not write this
//See: www.sfml-dev.org
namespace System
{
namespace Mouse
{
enum Button
{
Left,
Right,
Middle,
XButton1,
XButton2
};
}
}
#endif
| [
"[email protected]"
]
| |
3f578a1fb8e352b1c6c87cb64a6e97b25eb03058 | 9b55138348243f19465799bcf39520f25c28fde7 | /ATK/Core/ComplexConvertFilter.cpp | 65044a1bbbb9fcd47628218c6578322c76ca5d19 | [
"BSD-3-Clause"
]
| permissive | bhaskar-c/AudioTK | 117f47b99ffdcbf9f580286cb93f186664316ddb | ec0c37c4693655a001fc124b1438c9c813c8c004 | refs/heads/master | 2021-03-20T03:18:06.516014 | 2019-02-05T13:18:59 | 2019-02-05T13:18:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,023 | cpp | /**
* \file ComplexConvertFilter.cpp
*/
#include <ATK/Core/ComplexConvertFilter.h>
#include <cassert>
#include <cmath>
#include <complex>
#include <cstdint>
namespace ATK
{
template<typename DataType_>
RealToComplexFilter<DataType_>::RealToComplexFilter(gsl::index nb_channels)
:Parent(2 * nb_channels, nb_channels)
{
}
template<typename DataType_>
RealToComplexFilter<DataType_>::~RealToComplexFilter()
{
}
template<typename DataType_>
void RealToComplexFilter<DataType_>::process_impl(gsl::index size) const
{
assert(nb_input_ports == 2*nb_output_ports);
for(gsl::index channel = 0; channel < nb_output_ports; ++channel)
{
const auto* ATK_RESTRICT input1 = converted_inputs[2 * channel];
const auto* ATK_RESTRICT input2 = converted_inputs[2 * channel + 1];
auto* ATK_RESTRICT output = outputs[channel];
for(gsl::index i = 0; i < size; ++i)
{
output[i] = std::complex<DataType_>(input1[i], input2[i]);
}
}
}
template<typename DataType_>
ComplexToRealFilter<DataType_>::ComplexToRealFilter(gsl::index nb_channels)
:Parent(nb_channels, 2 * nb_channels)
{
}
template<typename DataType_>
ComplexToRealFilter<DataType_>::~ComplexToRealFilter()
{
}
template<typename DataType_>
void ComplexToRealFilter<DataType_>::process_impl(gsl::index size) const
{
assert(2* nb_input_ports == nb_output_ports);
for (gsl::index channel = 0; channel < nb_input_ports; ++channel)
{
const auto* ATK_RESTRICT input = converted_inputs[channel];
auto* ATK_RESTRICT output1 = outputs[2 * channel];
auto* ATK_RESTRICT output2 = outputs[2 * channel + 1];
for (gsl::index i = 0; i < size; ++i)
{
output1[i] = std::real(input[i]);
output2[i] = std::imag(input[i]);
}
}
}
template class RealToComplexFilter<float>;
template class RealToComplexFilter<double>;
template class ComplexToRealFilter<float>;
template class ComplexToRealFilter<double>;
}
| [
"[email protected]"
]
| |
6d48956d318ad1eb9be3967372392f047dd888ba | c9ebb47d98c9fb1cab8e5fc771541aed73e6a836 | /SimplSample015/BaseCrossDx11/Common/Rigidbody.cpp | bba3cedab356fa1fc89adf5aa56e2e0e5755712a | []
| no_license | abeDaisuke/TeamC_Kouki | 80a3257da53828dcd4cad82b4421df5a297c6736 | ca76116b81d566b45915eed08795776e115db1e1 | refs/heads/master | 2021-05-04T07:07:19.852874 | 2016-10-11T06:22:19 | 2016-10-11T06:22:19 | 70,562,241 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 30,962 | cpp | /*!
@file Rigidbody.h
@brief 物理計算コンポーネント実体
*/
#include "stdafx.h"
namespace basecross {
//--------------------------------------------------------------------------------------
// struct SteeringComponent::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct SteeringComponent::Impl {
float m_Weight;
Impl() :
m_Weight(1.0f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class SteeringComponent : public Component ;
// 用途: 操舵コンポーネントの親クラス
//--------------------------------------------------------------------------------------
SteeringComponent::SteeringComponent(const shared_ptr<GameObject>& GameObjectPtr) :
Component(GameObjectPtr),
pImpl(new Impl())
{}
SteeringComponent::~SteeringComponent() {}
float SteeringComponent::GetWeight() const { return pImpl->m_Weight; }
void SteeringComponent::SetWeight(float f) { pImpl->m_Weight = f; }
//--------------------------------------------------------------------------------------
// struct SeekSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct SeekSteering::Impl {
Vector3 m_TargetPosition;
Impl() :
m_TargetPosition(0, 0, 0)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class SeekSteering : public SteeringComponent;
// 用途: Seek操舵
//--------------------------------------------------------------------------------------
SeekSteering::SeekSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{
auto PtrT = GetGameObject()->GetComponent<Transform>();
if (PtrT) {
//所持オブジェクトがあればその位置に初期化
pImpl->m_TargetPosition = PtrT->GetPosition();
}
}
SeekSteering::~SeekSteering() {}
//アクセサ
const Vector3& SeekSteering::GetTargetPosition() const {
return pImpl->m_TargetPosition;
}
void SeekSteering::SetTargetPosition(const Vector3& Vec) {
pImpl->m_TargetPosition = Vec;
}
void SeekSteering::SetTargetPosition(float x, float y, float z) {
pImpl->m_TargetPosition = Vector3(x, y, z);
}
//操作
void SeekSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Seek(RigidPtr->GetVelocity(), pImpl->m_TargetPosition,
TransPtr->GetPosition(), RigidPtr->GetMaxSpeed()) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct ArriveSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct ArriveSteering::Impl {
Vector3 m_TargetPosition;
float m_Decl;
Impl() :
m_TargetPosition(0, 0, 0),
m_Decl(3.0f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class ArriveSteering : public SteeringComponent;
// 用途: Arrive操舵
//--------------------------------------------------------------------------------------
ArriveSteering::ArriveSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
ArriveSteering::~ArriveSteering() {}
//アクセサ
const Vector3& ArriveSteering::GetTargetPosition() const {
return pImpl->m_TargetPosition;
}
void ArriveSteering::SetTargetPosition(const Vector3& Vec) {
pImpl->m_TargetPosition = Vec;
}
void ArriveSteering::SetTargetPosition(float x, float y, float z) {
pImpl->m_TargetPosition = Vector3(x, y, z);
}
float ArriveSteering::GetDecl() const { return pImpl->m_Decl; }
void ArriveSteering::SetDecl(float f) { pImpl->m_Decl = f; }
//操作
void ArriveSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Arrive(RigidPtr->GetVelocity(), pImpl->m_TargetPosition,
TransPtr->GetPosition(), RigidPtr->GetMaxSpeed(), pImpl->m_Decl) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct PursuitSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct PursuitSteering::Impl {
Vector3 m_TargetPosition; //目標の位置
Quaternion m_TargetQuaternion; //目標の向き
Vector3 m_TargetVelocity; //目標の速度
Impl() :
m_TargetPosition(0, 0, 0),
m_TargetQuaternion(),
m_TargetVelocity(0, 0, 0)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class PursuitSteering : public SteeringComponent;
// 用途: Pursuit操舵
//--------------------------------------------------------------------------------------
PursuitSteering::PursuitSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
PursuitSteering::~PursuitSteering() {}
//アクセサ
const Vector3& PursuitSteering::GetTargetPosition() const {
return pImpl->m_TargetPosition;
}
void PursuitSteering::SetTargetPosition(const Vector3& Vec) {
pImpl->m_TargetPosition = Vec;
}
void PursuitSteering::SetTargetPosition(float x, float y, float z) {
pImpl->m_TargetPosition = Vector3(x, y, z);
}
const Quaternion& PursuitSteering::GetTargetQuaternion() const {
return pImpl->m_TargetQuaternion;
}
void PursuitSteering::SetTargetQuaternion(const Quaternion& Qt) {
pImpl->m_TargetQuaternion = Qt;
}
void PursuitSteering::SetTargetRotation(const Vector3& rotation) {
pImpl->m_TargetQuaternion.RotationRollPitchYawFromVector(rotation);
}
void PursuitSteering::SetTargetRotation(float x, float y, float z) {
SetTargetRotation(Vector3(x, y, z));
}
const Vector3& PursuitSteering::GetTargetVelocity() const {
return pImpl->m_TargetVelocity;
}
void PursuitSteering::SetTargetVelocity(const Vector3& velocity) {
pImpl->m_TargetVelocity = velocity;
}
void PursuitSteering::SetTargetVelocity(float x, float y, float z) {
SetTargetVelocity(Vector3(x, y, z));
}
//操作
void PursuitSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Pursuit(RigidPtr->GetVelocity(), TransPtr->GetPosition(), TransPtr->GetRotation(), RigidPtr->GetMaxSpeed(),
pImpl->m_TargetVelocity, pImpl->m_TargetPosition, pImpl->m_TargetQuaternion.GetRotation()) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct WanderSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct WanderSteering::Impl {
Vector3 m_WanderTarget; //徘徊目標の回転係数(操舵によって書き換えられる)
float m_WanderRadius; //徘徊半径
float m_WanderDistance; //徘徊円までの距離
float m_WanderJitter; //ランダム変異の最大値
Impl() :
m_WanderTarget(0, 0, 0),
m_WanderRadius(1.5f),
m_WanderDistance(1.0f),
m_WanderJitter(0.5f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class WanderSteering : public SteeringComponent;
// 用途: Wander操舵
//--------------------------------------------------------------------------------------
WanderSteering::WanderSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
WanderSteering::~WanderSteering() {}
//アクセサ
const Vector3& WanderSteering::GetWanderTarget() const {
return pImpl->m_WanderTarget;
}
void WanderSteering::SetWanderTarget(const Vector3& target) {
pImpl->m_WanderTarget = target;
}
float WanderSteering::GetWanderRadius() const {
return pImpl->m_WanderRadius;
}
void WanderSteering::SetWanderRadius(float f) {
pImpl->m_WanderRadius = f;
}
float WanderSteering::GetWanderDistance() const {
return pImpl->m_WanderDistance;
}
void WanderSteering::SetWanderDistance(float f) {
pImpl->m_WanderDistance = f;
}
float WanderSteering::GetWanderJitter() const {
return pImpl->m_WanderJitter;
}
void WanderSteering::SetWanderJitter(float f) {
pImpl->m_WanderJitter = f;
}
void WanderSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Wander(TransPtr->GetWorldMatrix(),
pImpl->m_WanderRadius, pImpl->m_WanderDistance, pImpl->m_WanderJitter, pImpl->m_WanderTarget) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct WallAvoidanceSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct WallAvoidanceSteering::Impl {
vector<PLANE> m_PlaneVec;//回避すべき面の配列
bool m_WallArrived; //壁と衝突したか
Impl() :
m_WallArrived(false)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class WallAvoidanceSteering : public SteeringComponent;
// 用途: WallAvoidance操舵(壁回避)
//--------------------------------------------------------------------------------------
WallAvoidanceSteering::WallAvoidanceSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
WallAvoidanceSteering::~WallAvoidanceSteering() {}
//アクセサ
vector<PLANE>& WallAvoidanceSteering::GetPlaneVec() const {
return pImpl->m_PlaneVec;
}
void WallAvoidanceSteering::SetPlaneVec(const vector<PLANE>& planevec) {
//必ずクリアする
pImpl->m_PlaneVec.clear();
for (auto v : planevec) {
pImpl->m_PlaneVec.push_back(v);
}
}
void WallAvoidanceSteering::SetPlaneVec(const vector<Plane>& planevec) {
//必ずクリアする
pImpl->m_PlaneVec.clear();
for (auto v : planevec) {
PLANE p(v);
pImpl->m_PlaneVec.push_back(p);
}
}
//壁と衝突しているか
bool WallAvoidanceSteering::IsWallArribed() const {
return pImpl->m_WallArrived;
}
//操作
void WallAvoidanceSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
pImpl->m_WallArrived = false;
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce(0, 0, 0);
WorkForce = Steering::WallAvoidance(TransPtr->GetWorldMatrix(),
RigidPtr->GetVelocity(), RigidPtr->GetMaxSpeed(), pImpl->m_PlaneVec) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
if (WorkForce.Length() > 0.0f) {
//壁に衝突している
pImpl->m_WallArrived = true;
}
}
}
//--------------------------------------------------------------------------------------
// struct ObstacleAvoidanceSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct ObstacleAvoidanceSteering::Impl {
vector<SPHERE> m_ObstacleSphereVec; //回避すべき障害物のSPHERE配列
float m_RoadWidth;
float m_RoadHeight;
Impl() :
m_RoadWidth(0.5f),
m_RoadHeight(0.5f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class ObstacleAvoidanceSteering : public SteeringComponent;
// 用途: ObstacleAvoidance操舵(障害物回避)
//--------------------------------------------------------------------------------------
ObstacleAvoidanceSteering::ObstacleAvoidanceSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
ObstacleAvoidanceSteering::~ObstacleAvoidanceSteering() {}
//アクセサ
//障害物の配列
const vector<SPHERE>& ObstacleAvoidanceSteering::GetObstacleSphereVec() const {
return pImpl->m_ObstacleSphereVec;
}
void ObstacleAvoidanceSteering::SetObstacleSphereVec(const vector<SPHERE>& spherevec) {
pImpl->m_ObstacleSphereVec.clear();
for (auto sp : spherevec) {
pImpl->m_ObstacleSphereVec.push_back(sp);
}
}
//道の高さ
float ObstacleAvoidanceSteering::GetRoadWidth() const {
return pImpl->m_RoadWidth;
}
void ObstacleAvoidanceSteering::SetRoadWidth(float f) {
pImpl->m_RoadWidth = f;
}
//道幅
float ObstacleAvoidanceSteering::GetRoadHeight() const {
return pImpl->m_RoadHeight;
}
void ObstacleAvoidanceSteering::SetRoadHeight(float f) {
pImpl->m_RoadHeight = f;
}
void ObstacleAvoidanceSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce(0, 0, 0);
WorkForce = Steering::ObstacleAvoidance(TransPtr->GetWorldMatrix(),
RigidPtr->GetVelocity(), RigidPtr->GetMaxSpeed(), pImpl->m_RoadWidth, pImpl->m_RoadHeight,
pImpl->m_ObstacleSphereVec) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct FollowPathSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct FollowPathSteering::Impl {
Path m_Path; //経路をあらわすパス
float m_Decl; //減速値
float m_WaypointSpan; //経路の中心からの距離
Impl() :
m_Decl(3.0f),
m_WaypointSpan(2.0f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class FollowPathSteering : public SteeringComponent;
// 用途: FollowPath操舵(経路追従)
//--------------------------------------------------------------------------------------
FollowPathSteering::FollowPathSteering(const shared_ptr<GameObject>& GameObjectPtr) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl())
{}
FollowPathSteering::~FollowPathSteering() {}
//アクセサ
void FollowPathSteering::SetPathList(const list<Vector3>& pathlist) {
pImpl->m_Path.SetList(pathlist);
}
float FollowPathSteering::GetDecl() const {
return pImpl->m_Decl;
}
void FollowPathSteering::SetDecl(float f) {
pImpl->m_Decl = f;
}
float FollowPathSteering::GetWaypointSpan() const {
return pImpl->m_WaypointSpan;
}
void FollowPathSteering::SetWaypointSpan(float f) {
pImpl->m_WaypointSpan = f;
}
bool FollowPathSteering::GetLooped() const {
return pImpl->m_Path.GetLooped();
}
bool FollowPathSteering::IsLooped() const {
return pImpl->m_Path.GetLooped();
}
void FollowPathSteering::SetLooped(bool b) {
pImpl->m_Path.SetLooped(b);
}
bool FollowPathSteering::IsFinished() const {
return pImpl->m_Path.IsFinished();
}
//操作
void FollowPathSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (RigidPtr && TransPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce(0, 0, 0);
WorkForce = Steering::FollowPath(pImpl->m_Path,
pImpl->m_WaypointSpan,
TransPtr->GetPosition(),
RigidPtr->GetVelocity(),
RigidPtr->GetMaxSpeed(),
pImpl->m_Decl)
* GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct AlignmentSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct AlignmentSteering::Impl {
weak_ptr<GameObjectGroup> m_Group;
Impl(const shared_ptr<GameObjectGroup>& Group) :
m_Group(Group)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class AlignmentSteering : public SteeringComponent;
// 用途: Alignment操舵(整列)
//--------------------------------------------------------------------------------------
AlignmentSteering::AlignmentSteering(const shared_ptr<GameObject>& GameObjectPtr,
const shared_ptr<GameObjectGroup>& Group) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl(Group))
{}
AlignmentSteering::~AlignmentSteering() {}
//アクセサ
shared_ptr<GameObjectGroup> AlignmentSteering::GetGameObjectGroup() const {
if (pImpl->m_Group.expired()) {
throw BaseException(
L"グループは無効です",
L"グループの存在を確認して下さい",
L"AlignmentSteering::GetGameObjectGroup()"
);
}
return pImpl->m_Group.lock();
}
void AlignmentSteering::SetGameObjectGroup(const shared_ptr<GameObjectGroup>& Group) {
pImpl->m_Group = Group;
}
//操作
void AlignmentSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (TransPtr && RigidPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Alignment(GetGameObjectGroup(), GetGameObject()) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct CohesionSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct CohesionSteering::Impl {
weak_ptr<GameObjectGroup> m_Group;
Impl(const shared_ptr<GameObjectGroup>& Group) :
m_Group(Group)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class CohesionSteering : public SteeringComponent;
// 用途: Cohesion操舵(結合)
//--------------------------------------------------------------------------------------
CohesionSteering::CohesionSteering(const shared_ptr<GameObject>& GameObjectPtr,
const shared_ptr<GameObjectGroup>& Group) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl(Group))
{}
CohesionSteering::~CohesionSteering() {}
//アクセサ
shared_ptr<GameObjectGroup> CohesionSteering::GetGameObjectGroup() const {
if (pImpl->m_Group.expired()) {
throw BaseException(
L"グループは無効です",
L"グループの存在を確認して下さい",
L"CohesionSteering::GetGameObjectGroup()"
);
}
return pImpl->m_Group.lock();
}
void CohesionSteering::SetGameObjectGroup(const shared_ptr<GameObjectGroup>& Group) {
pImpl->m_Group = Group;
}
//操作
void CohesionSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (TransPtr && RigidPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Cohesion(GetGameObjectGroup(), GetGameObject(),
RigidPtr->GetVelocity(), RigidPtr->GetMaxSpeed()) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct SeparationSteering::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct SeparationSteering::Impl {
weak_ptr<GameObjectGroup> m_Group;
Impl(const shared_ptr<GameObjectGroup>& Group) :
m_Group(Group)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class SeparationSteering : public SteeringComponent;
// 用途: Separation操舵
//--------------------------------------------------------------------------------------
SeparationSteering::SeparationSteering(const shared_ptr<GameObject>& GameObjectPtr,
const shared_ptr<GameObjectGroup>& Group) :
SteeringComponent(GameObjectPtr),
pImpl(new Impl(Group))
{}
SeparationSteering::~SeparationSteering() {}
//アクセサ
shared_ptr<GameObjectGroup> SeparationSteering::GetGameObjectGroup() const {
if (pImpl->m_Group.expired()) {
throw BaseException(
L"グループは無効です",
L"グループの存在を確認して下さい",
L"SeparationSteering::GetGameObjectGroup()"
);
}
return pImpl->m_Group.lock();
}
void SeparationSteering::SetGameObjectGroup(const shared_ptr<GameObjectGroup>& Group) {
pImpl->m_Group = Group;
}
void SeparationSteering::OnUpdate() {
auto RigidPtr = GetGameObject()->GetComponent<Rigidbody>();
auto TransPtr = GetGameObject()->GetComponent<Transform>();
if (TransPtr && RigidPtr) {
Vector3 Force = RigidPtr->GetForce();
Vector3 WorkForce;
WorkForce = Steering::Separation(GetGameObjectGroup(), GetGameObject()) * GetWeight();
Steering::AccumulateForce(Force, WorkForce, RigidPtr->GetMaxForce());
RigidPtr->SetForce(Force);
}
}
//--------------------------------------------------------------------------------------
// struct Rigidbody::Impl;
// 用途: コンポーネントImplクラス
//--------------------------------------------------------------------------------------
struct Rigidbody::Impl {
Vector3 m_Velocity; //速度
float m_MaxSpeed; //最高速度
Vector3 m_MinVelocity; //最低速度(XYZを指定できる)
Vector3 m_AngularVelocity; //回転速度
float m_Mass; //質量(キログラム)
float m_Reflection; //反発係数
Vector3 m_Force; //現在のフォース(ステアリング系コンポーネントで変更される)
float m_Friction; //摩擦係数(Forceの逆向きに働く必ず0から-1.0の間)
float m_MaxForce; //最高フォース
Impl() :
m_Velocity(0, 0, 0),
m_MaxSpeed(10.0f),
m_MinVelocity(0.01f, 0.01f, 0.01f),
m_AngularVelocity(0, 0, 0),
m_Mass(1.0f),
m_Reflection(1.0f),
m_Force(0, 0, 0),
m_Friction(0),
m_MaxForce(30.0f)
{}
~Impl() {}
};
//--------------------------------------------------------------------------------------
// class Rigidbody : public Component ;
// 用途: 自動位置コントロール
//--------------------------------------------------------------------------------------
//構築と破棄
Rigidbody::Rigidbody(const shared_ptr<GameObject>& GameObjectPtr) :
Component(GameObjectPtr),
pImpl(new Impl())
{}
Rigidbody::~Rigidbody() {}
const Vector3& Rigidbody::GetVelocity() const { return pImpl->m_Velocity; }
void Rigidbody::SetVelocity(const Vector3& Velocity) {
pImpl->m_Velocity = Velocity;
pImpl->m_Velocity.ClampLength(0, pImpl->m_MaxSpeed);
if (pImpl->m_Velocity.Length() < pImpl->m_MinVelocity.Length()) {
pImpl->m_Velocity.Zero();
}
}
void Rigidbody::SetVelocity(float x, float y, float z) {
SetVelocity(Vector3(x, y, z));
}
float Rigidbody::GetMaxSpeed() const { return pImpl->m_MaxSpeed; }
void Rigidbody::SetMaxSpeed(float f) { pImpl->m_MaxSpeed = f; }
const Vector3& Rigidbody::GetMinVelocity() const {
return pImpl->m_MinVelocity;
}
void Rigidbody::SetMinVelocity(const Vector3& Velocity) {
pImpl->m_MinVelocity = Velocity;
}
void Rigidbody::SetMinVelocity(float x, float y, float z) {
SetMinVelocity(Vector3(x, y, z));
}
const Vector3& Rigidbody::GetAngularVelocity() const { return pImpl->m_AngularVelocity; }
void Rigidbody::SetAngularVelocity(const Vector3& AngularVelocity) { pImpl->m_AngularVelocity = AngularVelocity; }
void Rigidbody::SetAngularVelocity(float x, float y, float z) { pImpl->m_AngularVelocity = Vector3(x, y, z); }
float Rigidbody::GetMass() const { return pImpl->m_Mass; }
void Rigidbody::SetMass(float f) { pImpl->m_Mass = f; }
float Rigidbody::GetReflection() const {
return pImpl->m_Reflection;
}
void Rigidbody::SetReflection(float f) {
pImpl->m_Reflection = f;
}
const Vector3& Rigidbody::GetForce() const { return pImpl->m_Force; }
void Rigidbody::SetForce(const Vector3& Force) { pImpl->m_Force = Force; }
void Rigidbody::SetForce(float x, float y, float z) { pImpl->m_Force = Vector3(x, y, z); }
float Rigidbody::GetFriction() const {
return pImpl->m_Friction;
}
void Rigidbody::SetFriction(float f) {
if (f >= 0) {
pImpl->m_Friction = 0.0f;
}
else if (f <= -1.0f) {
pImpl->m_Friction = -1.0f;
}
else {
pImpl->m_Friction = f;
}
}
float Rigidbody::GetMaxForce() const { return pImpl->m_MaxForce; }
void Rigidbody::SetMaxForce(float f) { pImpl->m_MaxForce = f; }
void Rigidbody::IsHitChangeVelocity(const shared_ptr<CollisionSphere>& SrcColl, const shared_ptr<CollisionSphere>& DestColl) {
switch (SrcColl->GetIsHitAction()) {
case IsHitAction::Stop:
SetVelocity(0, 0, 0);
break;
case IsHitAction::AutoOnObjectRepel:
{
SPHERE sp = SrcColl->GetSphere();
SPHERE destsp = DestColl->GetSphere();
Vector3 Normal = destsp.m_Center - sp.m_Center;
Normal.Normalize();
auto Ref = Vector3EX::Reflect(GetVelocity(), Normal);
//反発係数
Ref *= GetReflection();
SetVelocity(Ref);
}
break;
}
}
void Rigidbody::IsHitChangeVelocity(const shared_ptr<CollisionSphere>& SrcColl, const shared_ptr<CollisionObb>& DestColl) {
switch (SrcColl->GetIsHitAction()) {
case IsHitAction::Stop:
SetVelocity(0,0,0);
break;
case IsHitAction::AutoOnObjectRepel:
{
SPHERE sp = SrcColl->GetSphere();
OBB obb = DestColl->GetObb();
Vector3 Ret;
HitTest::SPHERE_OBB(sp, obb, Ret);
Vector3 Normal = Ret - sp.m_Center;
Normal.Normalize();
auto Ref = Vector3EX::Reflect(GetVelocity(), Normal);
//反発係数
Ref *= GetReflection();
SetVelocity(Ref);
}
break;
}
}
void Rigidbody::IsHitChangeVelocity(const shared_ptr<CollisionObb>& SrcColl, const shared_ptr<CollisionSphere>& DestColl) {
switch (SrcColl->GetIsHitAction()) {
case IsHitAction::Stop:
SetVelocity(0, 0, 0);
break;
case IsHitAction::AutoOnObjectRepel:
{
OBB obb = SrcColl->GetObb();
SPHERE sp = DestColl->GetSphere();
Vector3 Ret;
HitTest::SPHERE_OBB(sp, obb, Ret);
Vector3 Normal = sp.m_Center - Ret;
Normal.Normalize();
auto Ref = Vector3EX::Reflect(GetVelocity(), Normal);
//反発係数
Ref *= GetReflection();
SetVelocity(Ref);
}
break;
}
}
void Rigidbody::IsHitChangeVelocity(const shared_ptr<CollisionObb>& SrcColl, const shared_ptr<CollisionObb>& DestColl) {
switch (SrcColl->GetIsHitAction()) {
case IsHitAction::Stop:
SetVelocity(0, 0, 0);
break;
case IsHitAction::AutoOnObjectRepel:
{
OBB SrcObb = SrcColl->GetObb();
OBB DestObb = DestColl->GetObb();
Vector3 Ret;
//SrcのOBBとDestの最近接点を得る
HitTest::ClosestPtPointOBB(SrcObb.m_Center, DestObb, Ret);
Vector3 Normal = SrcObb.m_Center - Ret;
Normal.Normalize();
auto Ref = Vector3EX::Reflect(GetVelocity(), Normal);
//反発係数
Ref *= GetReflection();
SetVelocity(Ref);
}
break;
}
}
void Rigidbody::UpdateFromTime(float CalcTime) {
auto PtrTransform = GetGameObject()->GetComponent<Transform>();
Vector3 Pos = PtrTransform->GetPosition();
Quaternion Qt = PtrTransform->GetQuaternion();
//フォースが変更されていたら
if (pImpl->m_Force.Length() > 0) {
//フォースが0以上なら
//質量を計算して加速を求める
Vector3 Accel = pImpl->m_Force / pImpl->m_Mass;
pImpl->m_Velocity += Accel * CalcTime;
}
if (pImpl->m_Velocity.Length() >= pImpl->m_MaxSpeed) {
pImpl->m_Velocity.ClampLength(0, pImpl->m_MaxSpeed);
}
//減速値を求める
auto Friction = pImpl->m_Mass * pImpl->m_Friction;
if (Friction <= -1.0f) {
Friction = -1.0f;
}
else if (Friction >= 0.0f) {
Friction = 0.0f;
}
Vector3 VFriction = pImpl->m_Velocity * Friction;
pImpl->m_Velocity += VFriction;
if (abs(pImpl->m_Velocity.x) < pImpl->m_MinVelocity.x) {
pImpl->m_Velocity.x = 0;
}
if (abs(pImpl->m_Velocity.y) < pImpl->m_MinVelocity.y) {
pImpl->m_Velocity.y = 0;
}
if (abs(pImpl->m_Velocity.z) < pImpl->m_MinVelocity.z) {
pImpl->m_Velocity.z = 0;
}
Quaternion QtSpan;
QtSpan.RotationRollPitchYawFromVector(pImpl->m_AngularVelocity * CalcTime);
Qt *= QtSpan;
Qt.Normalize();
Pos += pImpl->m_Velocity * CalcTime;
PtrTransform->SetQuaternion(Qt);
PtrTransform->SetPosition(Pos);
}
void Rigidbody::OnUpdate() {
//前回のターンからの時間
float ElapsedTime = App::GetApp()->GetElapsedTime();
UpdateFromTime(ElapsedTime);
}
}
//end basecross
| [
"[email protected]"
]
| |
41238be14b5a876b6a6c0530893b47c080ba588f | f3a5604f2a137ce8a45177410a2bc8c7fda2cb37 | /WelcomingSocket.h | 59f63d727b8d85f34c8472cf47ebf605d3876932 | []
| no_license | shakram02/ReliableUdp_Server | 2e2dcacde78661ad25fcdcd2343711cf4aa0085f | ce4f5b8f66e07617beadb7eafdea4d066ea24cc1 | refs/heads/master | 2021-01-19T21:51:03.135426 | 2017-02-19T12:14:12 | 2017-02-19T12:14:12 | 76,677,580 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,378 | h | //
// Created by ahmed on 12/17/16.
//
#ifndef ENHANCEDUDPSERVER_SOCKETSERVER_H
#define ENHANCEDUDPSERVER_SOCKETSERVER_H
#include<stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <memory.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <errno.h>
#include <cstdlib>
#include <string.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <iostream>
#include <string>
#include <array>
#include<cstdint>
#include <functional>
#include "../libs/netutils.h"
#include <RawUdpSocket.h>
using namespace std;
/**
* This class accepts any newly connected clients and redirects them to a dedicated port
* that will serve their requests
*/
class WelcomingSocket
{
public:
/**
* Creates a new instance of a UDP server, this doesn't start any networking operation
*/
WelcomingSocket(string &serverIp, unsigned short portNumber);
~WelcomingSocket();
/**
* Starts receiving clients, this should run on a separate process
* @param clientRequestHandler Event handler to receive the packets
*/
void StartReceiving();
void StopReceiving();
/**
* Tells the state of the welcoming socket
*/
bool is_receiving;
private:
unique_ptr<RawUdpSocket> CreateClientSocket(string &client_ip);
unique_ptr<RawUdpSocket> main_sock;
};
#endif //ENHANCEDUDPSERVER_SOCKETSERVER_H
| [
"[email protected]"
]
| |
136b7a201b6630422ace4f1379bc27d5b228186b | b786ead014404f38b2e69c9390c092d1d9342e05 | /2.Arrays/SimulationArray/MaxPositiveSubarray.cpp | 43a3aea20090f2d06104e5f392f6feb0388c5289 | []
| no_license | Arunm619/InterviewBit | 988adc8f9bd371efba805f1dc5ccf0c9842a8ec8 | 84c739c3c627dda38f5f2cdf9bf663e2acd15e78 | refs/heads/master | 2020-08-28T17:11:01.617777 | 2019-11-05T15:16:45 | 2019-11-05T15:16:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,933 | cpp |
vector<int> Solution::maxset(vector<int> &arr) {
vector<int> result;
vector<int> temp;
unsigned long int sum = 0, best = 0;
for (int i = 0; i < arr.size(); i++) {
int val = arr[i];
if (arr[i] >= 0) {
sum += arr[i];
temp.push_back(arr[i]);
}
if (sum > best or sum == best and temp.size() > result.size()) {
result = temp;
best = sum;
}
if (arr[i] < 0) {
temp.clear();
sum = 0;
}
}
return result;
}
/**
* Time - O(N)
* Space - O(1)
*
Given an array of integers, A of length N, find out the maximum sum sub-array of non negative numbers from A.
The sub-array should be contiguous i.e., a sub-array created by choosing the second and fourth element and skipping the third element is invalid.
Maximum sub-array is defined in terms of the sum of the elements in the sub-array.
Find and return the required subarray.
NOTE:
1. If there is a tie, then compare with segment's length and return segment which has maximum length.
2. If there is still a tie, then return the segment with minimum starting index.
Input Format:
The first and the only argument of input contains an integer array A, of length N.
Output Format:
Return an array of integers, that is a subarray of A that satisfies the given conditions.
Constraints:
1 <= N <= 1e5
1 <= A[i] <= 1e5
Examples:
Input 1:
A = [1, 2, 5, -7, 2, 3]
Output 1:
[1, 2, 5]
Explanation 1:
The two sub-arrays are [1, 2, 5] [2, 3].
The answer is [1, 2, 5] as its sum is larger than [2, 3].
Input 2:
A = [10, -1, 2, 3, -4, 100]
Output 2:
[100]
Explanation 2:
The three sub-arrays are [10], [2, 3], [100].
The answer is [100] as its sum is larger than the other two.
*/ | [
"[email protected]"
]
| |
6ee8a9fbd8903041f5bf62a3fc3219da164f78cd | aaa1346a54efe75cc6a4f6749c79ed9b316056e3 | /src-std-mesh/Concrete/SundancePeriodicMeshType1D.hpp | 3081776193f6808f3cdda1272f0cf5a752f6c20d | [
"BSD-2-Clause"
]
| permissive | trilinos/Sundance | e34c87159d8196d95f049d3cc8aa00ae7003c301 | f4c26e7babb5b9ba6cdadec499d9123273e390b0 | refs/heads/master | 2020-04-06T15:00:47.864668 | 2019-05-28T19:03:02 | 2019-05-28T19:03:02 | 47,220,438 | 3 | 2 | NOASSERTION | 2019-05-28T19:03:03 | 2015-12-01T22:07:02 | C++ | UTF-8 | C++ | false | false | 2,678 | hpp | /* @HEADER@ */
// ************************************************************************
//
// Sundance
// Copyright 2011 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// 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 Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "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 SANDIA CORPORATION OR THE
// 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.
//
// Questions? Contact Kevin Long ([email protected])
//
/* @HEADER@ */
#ifndef SUNDANCE_PERIODIC_MESHTYPE1D_HPP
#define SUNDANCE_PERIODIC_MESHTYPE1D_HPP
#include "SundanceDefs.hpp"
#include "SundancePeriodicMesh1D.hpp"
namespace Sundance
{
using namespace Teuchos;
/**
*
*/
class PeriodicMeshType1D : public MeshTypeBase
{
public:
/** Empty ctor */
PeriodicMeshType1D(){}
/** virtual dtor */
virtual ~PeriodicMeshType1D(){;}
/** Create a mesh of the given dimension */
virtual RCP<MeshBase> createEmptyMesh(int dim,
const MPIComm& comm) const
{return rcp(new PeriodicMesh1D(1, 0.0, 1.0));}
/** */
std::string description() const {return "PeriodicMeshType1D";}
/** Return a ref count pointer to self */
virtual RCP<MeshTypeBase> getRcp() {return rcp(this);}
private:
};
}
#endif
| [
"[email protected]"
]
| |
e9891ed23859b5b6a2e8eae382dcf2401b2569bf | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/multimedia/dshow/filterus/dexter/audpack/prop.cpp | 082f56aebb1206df31d107c9e8253428bab39f66 | []
| no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 5,659 | cpp | //@@@@AUTOBLOCK+============================================================;
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE.
//
// File: prop.cpp
//
// Copyright (c) Microsoft Corporation. All Rights Reserved.
//
//@@@@AUTOBLOCK-============================================================;
#include <windows.h>
#include <streams.h>
#include <qeditint.h>
#include <qedit.h>
#include "audpack.h"
#include "seek.h"
#include "resource.h"
//////////////////////////////////////////////////////////////////////////
//
// CAudPropertyPage
//
//////////////////////////////////////////////////////////////////////////
//
// CreateInstance
//
CUnknown *CAudPropertyPage::CreateInstance(LPUNKNOWN lpunk, HRESULT *phr)
{ // CreateInstance //
CUnknown *punk = new CAudPropertyPage(lpunk, phr);
if (NULL == punk)
*phr = E_OUTOFMEMORY;
return punk;
} // CreateInstance //
CAudPropertyPage::CAudPropertyPage(LPUNKNOWN pUnk, HRESULT *phr)
: CBasePropertyPage(NAME("Audio Repackager Property Page"), pUnk, IDD_AUDREPACK, IDS_AUDPROP_TITLE)
, m_pifrc(NULL)
, m_bInitialized(FALSE)
, m_dFrameRate( 0 )
, m_rtSkew( 0 )
, m_rtMediaStart( 0 )
, m_rtMediaStop( 0 )
, m_dRate( 0 )
{
}
void CAudPropertyPage::SetDirty()
{ // SetDirty //
m_bDirty = TRUE;
if (m_pPageSite)
m_pPageSite->OnStatusChange(PROPPAGESTATUS_DIRTY);
} // SetDirty //
HRESULT CAudPropertyPage::OnActivate (void)
{ // OnActivate //
m_bInitialized = TRUE;
return NOERROR;
} // OnActivate //
HRESULT CAudPropertyPage::OnDeactivate (void)
{ // OnDeactivate //
m_bInitialized = FALSE;
GetControlValues();
return NOERROR;
} // OnDeactivate //
INT_PTR CAudPropertyPage::OnReceiveMessage (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{ // OnReceiveMessage //
ASSERT(m_pifrc != NULL);
switch(uMsg)
{ // Switch
case WM_COMMAND:
if (!m_bInitialized)
return CBasePropertyPage::OnReceiveMessage(hwnd,uMsg,wParam,lParam);
m_bDirty = TRUE;
if (m_pPageSite)
m_pPageSite->OnStatusChange(PROPPAGESTATUS_DIRTY);
return TRUE;
case WM_INITDIALOG:
SetDlgItemInt(hwnd, IDC_AUD_RATE, (int)(m_dFrameRate * 100), FALSE);
SetDlgItemInt(hwnd, IDC_AUD_SKEW, (int)(m_rtSkew / 10000), TRUE);
SetDlgItemInt(hwnd, IDC_AUD_START, (int)(m_rtMediaStart / 10000),
FALSE);
SetDlgItemInt(hwnd, IDC_AUD_STOP, (int)(m_rtMediaStop / 10000),
FALSE);
return TRUE;
break;
default:
return CBasePropertyPage::OnReceiveMessage(hwnd,uMsg,wParam,lParam);
break;
} // Switch
} // OnReceiveMessage //
HRESULT CAudPropertyPage::OnConnect (IUnknown *pUnknown)
{ // OnConnect //
HRESULT hr;
pUnknown->QueryInterface(IID_IDexterSequencer, (void **)&m_pifrc);
CheckPointer( m_pifrc, E_POINTER );
ASSERT(m_pifrc != NULL);
// Defaults from filter's current values (via IFrameRateConverter)
hr = m_pifrc->get_OutputFrmRate(&m_dFrameRate);
if( FAILED( hr ) )
{
return hr;
}
// !!! we only support one start/stop/skew in this prop page
int c;
hr = m_pifrc->GetStartStopSkewCount(&c);
if( FAILED( hr ) )
{
return hr;
}
REFERENCE_TIME *pStart = (REFERENCE_TIME *)QzTaskMemAlloc(c * 3 *
sizeof(REFERENCE_TIME) + c * sizeof(double));
if (pStart == NULL) {
return E_OUTOFMEMORY;
}
REFERENCE_TIME *pStop = pStart + c;
REFERENCE_TIME *pSkew = pStop + c;
double *pRate = (double *)(pSkew + c);
hr = m_pifrc->GetStartStopSkew(pStart, pStop, pSkew, pRate);
if( FAILED( hr ) )
{
return hr;
}
m_rtMediaStart = *pStart;
m_rtMediaStop = *pStop;
m_rtSkew = *pSkew;
m_dRate = *pRate;
m_bInitialized = FALSE;
QzTaskMemFree(pStart);
return NOERROR;
}
HRESULT CAudPropertyPage::OnDisconnect()
{ // OnDisconnect //
if (m_pifrc)
{ // Release
m_pifrc->Release();
m_pifrc = NULL;
} // Release
m_bInitialized = FALSE;
return NOERROR;
} // OnDisconnect //
HRESULT CAudPropertyPage::OnApplyChanges()
{ // OnApplyChanges //
ASSERT(m_pifrc != NULL);
GetControlValues();
HRESULT hr;
hr = m_pifrc->put_OutputFrmRate(m_dFrameRate);
if( FAILED( hr ) )
{
return hr;
}
hr = m_pifrc->ClearStartStopSkew();
if( FAILED( hr ) )
{
return hr;
}
hr = m_pifrc->AddStartStopSkew(m_rtMediaStart, m_rtMediaStop, m_rtSkew, m_dRate);
if( FAILED( hr ) )
{
return hr;
}
return NOERROR;
} // OnApplyChanges //
void CAudPropertyPage::GetControlValues (void)
{ // GetControlValues //
int n;
// Frame rate
n = GetDlgItemInt(m_Dlg, IDC_AUD_RATE, NULL, FALSE);
m_dFrameRate = (double)(n / 100.);
// Skew
n = GetDlgItemInt(m_Dlg, IDC_AUD_SKEW, NULL, TRUE);
m_rtSkew = (REFERENCE_TIME)n * 10000;
// Media times
n = GetDlgItemInt(m_Dlg, IDC_AUD_START, NULL, FALSE);
m_rtMediaStart = (REFERENCE_TIME)n * 10000;
n = GetDlgItemInt(m_Dlg, IDC_AUD_STOP, NULL, FALSE);
m_rtMediaStop = (REFERENCE_TIME)n * 10000;
} // GetControlValues //
| [
"[email protected]"
]
| |
72623eb98294778035ece920d44891b5dbebcc80 | d450200cb249268e84fcb5226589378f5edc1d6c | /thirdparty/Imath/src/python/PyImath/PyImathVec2si.cpp | ce76eda46bd5f27a964241a2ae72feb0746c5118 | [
"BSD-3-Clause"
]
| permissive | vfx-rs/openexr-sys | 6ece9f74b798d514f4dee3e2b4af64d12df3fc26 | b9f8aa28cd6eb063b02463762125b1aa91d5e8b7 | refs/heads/main | 2023-07-24T14:15:41.562526 | 2021-09-01T21:46:56 | 2021-09-01T21:46:56 | 401,000,794 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,728 | cpp | //
// SPDX-License-Identifier: BSD-3-Clause
// Copyright Contributors to the OpenEXR Project.
//
// clang-format off
#include "PyImathVec2Impl.h"
#include "PyImathExport.h"
namespace PyImath {
template <> const char *PyImath::V2sArray::name() { return "V2sArray"; }
template <> const char *PyImath::V2iArray::name() { return "V2iArray"; }
template <> const char *PyImath::V2i64Array::name() { return "V2i64Array"; }
using namespace boost::python;
using namespace IMATH_NAMESPACE;
template<> const char *Vec2Name<short>::value = "V2s";
template<> const char *Vec2Name<int>::value = "V2i";
template<> const char *Vec2Name<int64_t>::value = "V2i64";
template PYIMATH_EXPORT class_<IMATH_NAMESPACE::Vec2<short> > register_Vec2<short>();
template PYIMATH_EXPORT class_<IMATH_NAMESPACE::Vec2<int> > register_Vec2<int>();
template PYIMATH_EXPORT class_<IMATH_NAMESPACE::Vec2<int64_t> > register_Vec2<int64_t>();
template PYIMATH_EXPORT class_<FixedArray<IMATH_NAMESPACE::Vec2<short> > > register_Vec2Array<short>();
template PYIMATH_EXPORT class_<FixedArray<IMATH_NAMESPACE::Vec2<int> > > register_Vec2Array<int>();
template PYIMATH_EXPORT class_<FixedArray<IMATH_NAMESPACE::Vec2<int64_t> > > register_Vec2Array<int64_t>();
template<> IMATH_NAMESPACE::Vec2<short> PYIMATH_EXPORT FixedArrayDefaultValue<IMATH_NAMESPACE::Vec2<short> >::value() { return IMATH_NAMESPACE::Vec2<short>(0,0); }
template<> IMATH_NAMESPACE::Vec2<int> PYIMATH_EXPORT FixedArrayDefaultValue<IMATH_NAMESPACE::Vec2<int> >::value() { return IMATH_NAMESPACE::Vec2<int>(0,0); }
template<> IMATH_NAMESPACE::Vec2<int64_t> PYIMATH_EXPORT FixedArrayDefaultValue<IMATH_NAMESPACE::Vec2<int64_t> >::value() { return IMATH_NAMESPACE::Vec2<int64_t>(0,0); }
}
| [
"[email protected]"
]
| |
6d4ea46bb3aa5baf89b66e88c4b851f4ca4aa43e | d2745550d6ae194c85974d259e32c32a0b946e5e | /ITP1/ITP1_7_B.cpp | f8276e21798f661b4f4a80cbc9589d60b61a0eee | []
| no_license | dmingn/AOJ | 232b7c97b4055cee649511ce18ba632adf60af1b | f46407ae9ca371440041633dab4271512564e45a | refs/heads/master | 2021-01-20T13:47:12.503444 | 2017-08-08T23:40:10 | 2017-08-08T23:40:10 | 90,527,987 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 570 | cpp | #include <iostream>
using namespace std;
int main() {
int32_t n, x;
while (cin >> n >> x) {
if (n == 0 && x == 0) {
break;
}
int32_t count = 0;
for (int32_t i = 1; i <= n - 2; i++) {
for (int32_t j = i + 1; j <= n - 1; j++) {
for (int32_t k = j + 1; k <= n; k++) {
if (i + j + k == x) {
count++;
}
}
}
}
cout << count << endl;
}
return 0;
}
| [
"[email protected]"
]
| |
def3948fc56fdcdbd503bf7b7ff7dc181389324d | 8313358f5b7c76f38419503e2f90431a31a1ce52 | /State8.cpp | 6b60c299ee5558be5cc27dd932fcec61d88d553e | []
| no_license | fchaubeau/Grammaire | 6397703898b76416746811ca77516b043a0ca4f0 | 1f73546378f14412965d22869cc6393d1341d0bd | refs/heads/master | 2023-03-08T07:31:14.827969 | 2021-02-26T10:18:15 | 2021-02-26T10:18:15 | 341,691,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,048 | cpp | #include "state8.h"
#include <iostream>
bool State8::Transition(Automate & automate, bool isE) {
cout << "transition state8" << endl;
Lexer* l = automate.GetL();
Symbole* s = l->Consulter();
s->Affiche();
if(*l->Consulter() == PLUS){ // On est dans le cas E -> E * E
// On dépile 3 fois les états
automate.pop_back_on_pile();
automate.pop_back_on_pile();
automate.pop_back_on_pile();
// On récupère le dernier symbole de la pile de symboles
Entier* rawVal1 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile de symboles
automate.pop_back_on_pile_symboles();
// On supprime le symbole suivant car on sait que ce sera un *
automate.pop_back_on_pile_symboles();
// On récupère la deuxième valeur de l'expression
Entier* rawVal2 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile des symboles
automate.pop_back_on_pile_symboles();
// On évalue la valeur de l'expression formée par ce ou ces symboles (ie on fait le produit des deux nombres)
int val = rawVal1->GetValeur() * rawVal2->GetValeur();
// On met la valeur de l'expression évaluée dans la pile de symboles.
automate.push_back_on_pile_symboles(new Entier(val));
return automate.transitionLastState(true);
}
else if(*l->Consulter() == MULT){
// On dépile 3 fois les états
automate.pop_back_on_pile();
automate.pop_back_on_pile();
automate.pop_back_on_pile();
// On récupère le dernier symbole de la pile de symboles
Entier* rawVal1 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile de symboles
automate.pop_back_on_pile_symboles();
// On supprime le symbole suivant car on sait que ce sera un *
automate.pop_back_on_pile_symboles();
// On récupère la deuxième valeur de l'expression
Entier* rawVal2 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile des symboles
automate.pop_back_on_pile_symboles();
// On évalue la valeur de l'expression formée par ce ou ces symboles (ie on fait le produit des deux nombres)
int val = rawVal1->GetValeur() * rawVal2->GetValeur();
// On met la valeur de l'expression évaluée dans la pile de symboles.
automate.push_back_on_pile_symboles(new Entier(val));
return automate.transitionLastState(true);
}
else if(*l->Consulter() == CLOSEPAR){
// On dépile 3 fois les états
automate.pop_back_on_pile();
automate.pop_back_on_pile();
automate.pop_back_on_pile();
// On récupère le dernier symbole de la pile de symboles
Entier* rawVal1 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile de symboles
automate.pop_back_on_pile_symboles();
// On supprime le symbole suivant car on sait que ce sera un *
automate.pop_back_on_pile_symboles();
// On récupère la deuxième valeur de l'expression
Entier* rawVal2 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile des symboles
automate.pop_back_on_pile_symboles();
// On évalue la valeur de l'expression formée par ce ou ces symboles (ie on fait le produit des deux nombres)
int val = rawVal1->GetValeur() * rawVal2->GetValeur();
// On met la valeur de l'expression évaluée dans la pile de symboles.
automate.push_back_on_pile_symboles(new Entier(val));
return automate.transitionLastState(true);
}
else if(*l->Consulter() == FIN){
// On dépile 3 fois les états
automate.pop_back_on_pile();
automate.pop_back_on_pile();
automate.pop_back_on_pile();
// On récupère le dernier symbole de la pile de symboles
Entier* rawVal1 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile de symboles
automate.pop_back_on_pile_symboles();
// On supprime le symbole suivant car on sait que ce sera un *
automate.pop_back_on_pile_symboles();
// On récupère la deuxième valeur de l'expression
Entier* rawVal2 = dynamic_cast<Entier*> (automate.GetPileSymboles().back());
// On supprime ce symbole de la pile des symboles
automate.pop_back_on_pile_symboles();
// On évalue la valeur de l'expression formée par ce ou ces symboles (ie on fait le produit des deux nombres)
int val = rawVal1->GetValeur() * rawVal2->GetValeur();
// On met la valeur de l'expression évaluée dans la pile de symboles.
automate.push_back_on_pile_symboles(new Entier(val));
return automate.transitionLastState(true);
}
return false;
} | [
"[email protected]"
]
| |
c8012a58c0c72dd81321bafca8a2f3b1143dd750 | 49abb3066f7dc2952b2d4a3eec052bd5126c28d7 | /four_in_a_row_duels/server.cpp | 8c276d1f462b11914cdb1a2d1e3a184c0df30cce | []
| no_license | o-william/four-in-a-row-duels | c273d3b199560ec13bbfc994cdef4ebc2c3bbc26 | 18debc6064488ba6e3d1ce6c9fcc815f4026feea | refs/heads/main | 2023-06-17T11:26:33.757950 | 2021-06-16T17:11:43 | 2021-06-16T17:11:43 | 374,229,416 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,643 | cpp | /* connectFour game using the duels package
*
* ECN Project (2020/2021 - Semester II)
* Oluwapelumi WILLIAMS (IMARO II)
* Adedamola SODE (IMARO I)
*
* Supervisor : Professor Olivier Kermogant
*
*
* Implementation File of the game Server (contains "main")
* File Name: server.cpp
* Definition File: server.h (non-writeable)
*/
#include <duels/server.h>
#include <duels/four_in_a_row_duels/msg.h>
#include <duels/four_in_a_row_duels/four_in_a_row_duels_ai.h>
#include <duels/four_in_a_row_duels/mechanics.h>
using namespace duels::four_in_a_row_duels;
using duels::Result;
using duels::Timeout;
using duels::Refresh;
using GameIO = duels::Server<InitDisplay, Input, Feedback, Display>;
int main(int argc, char** argv)
{
GameIO game_io("four_in_a_row_duels", Refresh(300), Timeout(100));
// simulation time
[[maybe_unused]] const double dt(game_io.samplingTime());
// TODO prepare game state / init message (for display)
FourInARowDuelsMechanics mechanics;
InitDisplay init = mechanics.initGame();
init.rows = 6;
init.columns = 8;
// inform displays and get players (no multithread by default for simultaneous games)
const auto [player1, player2] = game_io.initPlayers<FourInARowDuelsAI>(argc, argv, init, 0, 1, false); {}
bool player1_turn(true);
while(game_io.running())
{
// adapt to who is playing
auto [current, opponent] = game_io.newTurn(player1_turn);
// extract feedback for the current player
mechanics.buildPlayerFeedback(current->feedback, player1_turn);
// get their action / exit if they have crashed or timeout
if(!game_io.sync(current))
break;
// TODO update game mechanics (display, winning conditions) from current->input
// up to you!
mechanics.play(current->input.played_column, player1_turn);
game_io.sendDisplay(mechanics.display());
if (mechanics.checkWinner()){
game_io.registerVictory(current);
if (player1_turn){
game_io.endsWith(Result::P1_WINS);
}
else{
game_io.endsWith(Result::P2_WINS);
}
}
if (mechanics.checkDraw()){
game_io.registerDraw();
}
// TODO check if any regular winner after this turn
//if(...)
{
/* depending on the rules, you may use:
game_io.registerVictory(current);
game_io.registerVictory(opponent);
game_io.registerDraw();
game_io.endsWith(Result::P1_WINS);
game_io.endsWith(Result::P2_WINS);
*/
}
// switch player
player1_turn = !player1_turn;
}
// send final result to players and display
game_io.sendResult(mechanics.display());
}
| [
"[email protected]"
]
| |
c7e875c75f06edffc725bd935d349965f0c9eb2d | 8a5b4e8ffc52e890b5392ed76adfe5007747866c | /source/paper/charts.cpp | 05a94d4fd3a164a93835d630eced604f389884d2 | [
"MIT"
]
| permissive | fabiocannizzo/FastBinarySearch | cf974b0c6503de48149210c8d19b7a0de270e74e | 0a759f072a72b7e0da2bcbf82c40ac06dd3da626 | refs/heads/master | 2023-01-28T05:03:57.262006 | 2023-01-22T16:52:57 | 2023-01-22T17:04:07 | 38,153,232 | 56 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 5,607 | cpp | #include <iostream>
#include <cstring>
#include <string>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <map>
#include <set>
#include "Output.h"
#include "TypesForArticleTest.h"
using namespace std;
void parseValue(const std::string& cell, std::string& result)
{
result = cell;
}
void parseValue(const std::string& cell, double& result)
{
result = std::stod(cell);
}
void parseValue(const std::string& cell, size_t& result)
{
result = std::stoul(cell);
}
template <typename T>
T readtoken(std::istringstream& is)
{
std::string cell;
if (!std::getline(is, cell, ';')) {
std::cout << "Error parsing input file\n";
exit(1);
}
T result;
parseValue(cell, result);
return result;
}
struct SeriesCmp {
bool operator()(Algos a, Algos b) const
{
// very inefficient, but who cares? It is just for generation of the document charts.
int x = SeriesOrder.find(a)->second;
int y = SeriesOrder.find(b)->second;
return x < y;
}
};
typedef std::pair<size_t, double> point_t;
typedef std::vector<point_t> series_t;
typedef std::map<Algos, series_t, SeriesCmp> plot_t;
void getchartseries(const std::string& inpfilename, InstrSet instr, Precision prec, plot_t& plot)
{
typedef std::map<string, series_t> strplot_t;
strplot_t strplot;
std::ifstream inpf(inpfilename);
if (!inpf) {
cout << "Error opening file: " << inpfilename << "\n";
exit(1);
}
std::string lpname = PrecNames[prec];
std::string liname = InstrNames[instr];
std::string line;
if (!std::getline(inpf, line)) // ignore headers
exit(1);
else
cout << "ignoring line: " << line << "\n";
while (std::getline(inpf, line))
{
cout << "processing line: " << line << "\n";
std::istringstream lineStream(line);
size_t vec = readtoken<size_t>(lineStream);
std::string a = readtoken<std::string>(lineStream);
std::string p = readtoken<std::string>(lineStream);
std::string i = readtoken<std::string>(lineStream);
double dt = readtoken<double>(lineStream);
if (p == lpname && i == liname)
strplot[a].push_back(point_t(vec, dt));
else
cout << "\tignore: " << p << "!=" << lpname << " OR " << i << "!=" << liname << "\n";
}
// reorder plot
for (strplot_t::const_iterator aiter = strplot.begin(); aiter != strplot.end(); ++aiter)
plot[algoCodeFromName(aiter->first)] = aiter->second;
}
void chartseries2latex(const std::string& ofilenameprefix, const plot_t& plot, InstrSet instr, Precision prec, bool addLegend)
{
std::string spname = ChartPrecNames[prec];
std::string siname = ChartInstrNames[instr];
std::ofstream of(ofilenameprefix + siname + "-" + spname + ".perfplot");
std::string legend = "\\legend{";
for (plot_t::const_iterator aiter = plot.begin(); aiter != plot.end(); ++aiter) {
Algos algo = aiter->first;
string name = AlgoNames[algo];
/*
if (name=="Ternary")
name += "(SSE)";
if (name=="Nonary")
name += "(AVX)";
if (name == "Pentary")
name += (prec==Single)? "(SSE)": "(AVX)";
*/
const series_t& series = aiter->second;
of << "\\addplot[\n"
<< "\tcolor=" << color(name) << ",\n"
<< "\tmark=" << mark(name) << ",\n"
<< "\tstyle=" << style(name) << ",\n"
<< "]\n"
<< "coordinates {\n";
for (series_t::const_iterator piter = series.begin(); piter != series.end(); ++piter)
of << "(" << piter->first << "," << piter->second << ")";
of << "\n};\n";
if (aiter != plot.begin())
legend += ",";
legend += texname(name);
}
legend += "}";
if (addLegend)
of << legend << "\n";
}
void makechartseries(const std::string& ifilename, const std::string& ofilenameprefix, InstrSet instr, Precision prec)
{
plot_t plot;
getchartseries(ifilename, instr, prec, plot);
chartseries2latex(ofilenameprefix, plot, instr, prec, true);
}
void makechartseries(const std::string& ifilename, const std::string& ofilenameprefix, InstrSet instr)
{
plot_t plots, plotd;
getchartseries(ifilename, instr, Single, plots);
getchartseries(ifilename, instr, Double, plotd);
// very inefficient loops, but the size is small
vector<point_t> dummyvec(1, point_t(1, 0.1)); // dummy point which will not be rendered
for (plot_t::const_iterator siter = plots.begin(); siter != plots.end(); ++siter)
plotd.insert(make_pair(siter->first, dummyvec)); // only insert if not already present
for (plot_t::const_iterator diter = plotd.begin(); diter != plotd.end(); ++diter)
plots.insert(make_pair(diter->first, dummyvec)); // only insert if not already present
chartseries2latex(ofilenameprefix, plots, instr, Single, false);
chartseries2latex(ofilenameprefix, plotd, instr, Double, true);
}
int main(int argc, char* argv[])
{
populateNames();
std::string inputfile(argv[1]);
std::string outputfileprefix(argc>2?argv[2]:"");
/*
makechartseries(fn, Scalar, Single);
makechartseries(fn, Scalar, Double);
makechartseries(fn, SSE, Single);
makechartseries(fn, SSE, Double);
makechartseries(fn, AVX, Single);
makechartseries(fn, AVX, Double);
*/
makechartseries(inputfile, outputfileprefix, Scalar);
makechartseries(inputfile, outputfileprefix, SSE);
makechartseries(inputfile, outputfileprefix, AVX);
}
| [
"[email protected]"
]
| |
6c5f0068ba992f7238687f00f1d29143fe973799 | f857082ae8d0c6865219bbbbeb4bb812cf6c25b0 | /pollock-strokes-kinect-new/src/Line.cpp | c7bff0b05c2ef36a6a7ce6d82ffb2d29f4c3c845 | []
| no_license | danaavesar/Jackson-pollock-painting | 1d27b473dce7293760d6ed8a5219c1fbdabfea9b | 95633efb9b6b218480939206a1d2445bb9b2a740 | refs/heads/master | 2016-08-11T13:52:57.735614 | 2016-03-15T16:15:52 | 2016-03-15T16:15:52 | 53,959,142 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 871 | cpp | //
// Line.cpp
// pollock-stroke-new
//
// Created by Dana Avesar on 2/15/16.
//
//
#include "line.h"
#include "ofMain.h"
void Line::setup(float _mouseX, float _mouseY, float _prevMouseX, float _prevMouseY, float _weight ){
random.x = ofRandom(posBeg.x, posEnd.x);
random.y = ofRandom(posBeg.y, posEnd.y);
}
void Line::update(){
}
void Line::draw(){
ofNoFill();
// ofSetColor(0,0,0);
ofBeginShape();
ofSetLineWidth(width);
// ofCurveVertex(posBeg.x, posBeg.y); //begining
// ofCurveVertex(posBeg.x, posBeg.y); //beginning duplicated
// ofCurveVertex(random.x, random.y);
// ofCurveVertex(posEnd.x, posEnd.y); //end
// ofCurveVertex(posEnd.x, posEnd.y); //end duplicated
//
ofVertex(posBeg.x, posBeg.y); //begining
ofVertex(posEnd.x, posEnd.y); //end duplicated
ofEndShape();
} | [
"[email protected]"
]
| |
d73b93f174e63a9ca5340426818d59eb584de5c8 | aaa403c4b4b0a65eeada6d420a17a7cb3a5a1573 | /algorithms/hackerrank/xorMatrix/xorMatrix.cpp | 69b08b94a9a48a7ab63a4a165bc576ec37de3c3c | []
| no_license | huyuji/garden | afd557757feb49e1a7ed270364480a843f45ffce | 04b8cbfa48c349624d71b6f6c57d71bdab1046b3 | refs/heads/master | 2023-03-20T00:07:25.706631 | 2022-12-21T02:58:17 | 2022-12-21T02:58:17 | 33,455,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,411 | cpp | #include <vector>
#include <iostream>
#include <fstream>
using namespace std;
vector<string> split_string(string);
vector<vector<unsigned long long>> init(unsigned long long n)
{
vector<vector<unsigned long long>> result(n);
result[0] = vector<unsigned long long>(n);
result[0][0] = 1;
result[0][n-1] = 1;
for (int i = 1; i < n; ++i)
{
result[i] = vector<unsigned long long>(n);
result[i][i-1] = 1;
result[i][i] = 1;
}
return result;
}
vector<vector<unsigned long long>> multiply(
const vector<vector<unsigned long long>> & m1,
const vector<vector<unsigned long long>> & m2)
{
int n = m1.size();
vector<vector<unsigned long long>> result(n);
for (int i = 0; i < n; ++i)
{
result[i] = vector<unsigned long long>(n);
}
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
result[i][0] += m1[i][j] * m2[j][0];
}
}
for (int j = 1; j < n; ++j)
{
result[0][j] = result[n-1][j-1];
for (int i = 1; i < n; ++i)
{
result[i][j] = result[i-1][j-1];
}
}
return result;
}
vector<vector<unsigned long long>> square(
const vector<vector<unsigned long long>> & m)
{
return {};
}
void print(const vector<vector<unsigned long long>> & m)
{
for (int i = 0; i < m.size(); ++i)
{
for (int j = 0; j < m.size(); ++j)
{
cout << m[i][j] << " ";
}
cout << "\n";
}
cout << "\n\n";
}
/*
* Complete the xorMatrix function below.
*/
vector<int> xorMatrix(unsigned long long m, vector<int> first_row) {
if (m == 1)
{
return first_row;
}
--m;
int n = first_row.size();
if (n == 1)
{
return {0};
}
auto factor = std::move(init(n));
print(factor);
auto resultFactor = vector<vector<unsigned long long>>(n);
for (int i = 0; i < n; ++i)
{
resultFactor[i] = vector<unsigned long long>(n);
resultFactor[i][i] = 1;
}
while(m)
{
if (m & 1)
{
resultFactor = std::move(multiply(resultFactor, factor));
print(resultFactor);
}
m >>= 1;
if (m)
{
factor = std::move(multiply(factor, factor));
}
}
print(resultFactor);
vector<int> result(n);
for (int i = 0; i < n; ++i)
{
int value = 0;
for (int j = 0; j < n; ++j)
{
if (resultFactor[j][i] % 2)
{
value ^= first_row[j];
}
}
result[i] = value;
}
return result;
}
int main()
{
ofstream fout("output.txt");
ifstream fin("input09.txt");
string nm_temp;
getline(fin, nm_temp);
vector<string> nm = split_string(nm_temp);
int n = stoi(nm[0]);
unsigned long long m = atol(nm[1].c_str());
string first_row_temp_temp;
getline(fin, first_row_temp_temp);
vector<string> first_row_temp = split_string(first_row_temp_temp);
vector<int> first_row(n);
for (int first_row_itr = 0; first_row_itr < n; first_row_itr++) {
int first_row_item = stoi(first_row_temp[first_row_itr]);
first_row[first_row_itr] = first_row_item;
}
vector<int> result = xorMatrix(m, first_row);
for (int result_itr = 0; result_itr < result.size(); result_itr++) {
fout << result[result_itr];
if (result_itr != result.size() - 1) {
fout << " ";
}
}
fout << "\n";
fout.close();
return 0;
}
vector<string> split_string(string input_string) {
string::iterator new_end = unique(input_string.begin(), input_string.end(), [] (const char &x, const char &y) {
return x == y and x == ' ';
});
input_string.erase(new_end, input_string.end());
while (input_string[input_string.length() - 1] == ' ') {
input_string.pop_back();
}
vector<string> splits;
char delimiter = ' ';
size_t i = 0;
size_t pos = input_string.find(delimiter);
while (pos != string::npos) {
splits.push_back(input_string.substr(i, pos - i));
i = pos + 1;
pos = input_string.find(delimiter, i);
}
splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1));
return splits;
}
| [
"[email protected]"
]
| |
1447cccda6a7d4191f45032e849db435692cdd69 | 3c94c49554d748f3046dc97d34cfa870c50414d2 | /BN/big_numbers.h | b1587ce67ed5ab3d56c80ca59ba7269260bbd67a | []
| no_license | Kerlenton/projects | 0881097d5813203702e49c2e514dc92ab3709d3c | ae5274b47941c1234bf3f6764552992a0f9852ca | refs/heads/master | 2023-08-13T22:25:02.678295 | 2021-10-11T11:37:53 | 2021-10-11T11:37:53 | 191,033,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | h | #pragma once
#include <deque>
class BigNumber
{
public:
enum { BASE = 10 };
BigNumber(int = 0);
BigNumber operator+(const BigNumber &) const;
BigNumber operator-(const BigNumber &) const;
BigNumber operator/(const BigNumber &) const;
BigNumber operator*(const BigNumber &) const;
bool operator<(const BigNumber &) const;
std::deque<unsigned> data_;
private:
unsigned findDiv(const BigNumber &, const BigNumber &) const;
};
| [
"[email protected]"
]
| |
0121b86350f7925289510e090368e3fc5f1a8697 | 781bf18003044b969a7bedba3a7a62a9e710ff56 | /ChainIDE/update/UpdateNetWork.cpp | 37db619f2313cf78c2fcdb8da60d0b298123717b | []
| no_license | HcashOrg/HX-IDE | 2ed9c7142d3c9fd878ba4ce0a15c82ce55f74d38 | c538ebaa92fc16608f654e4794192373e3adb3a7 | refs/heads/master | 2021-08-10T13:19:27.306711 | 2018-10-25T09:35:07 | 2018-10-25T09:35:07 | 140,408,191 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,684 | cpp | #include "UpdateNetWork.h"
#include <QNetworkReply>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QMap>
#include <QFile>
#include <QFileInfo>
#include <mutex>
#include <QDir>
#include "UpdateProgressUtil.h"
class UpdateNetWork::DataPrivate
{
public:
DataPrivate()
:networkManager(new QNetworkAccessManager())
,currentFile(nullptr)
{
}
~DataPrivate()
{
if(networkManager)
{
delete networkManager;
networkManager = nullptr;
}
if(currentFile)
{
delete currentFile;
currentFile = nullptr;
}
}
public:
QNetworkAccessManager *networkManager;
QList<DownLoadData> downloadList;
std::mutex listMutex;
QFile *currentFile;
};
UpdateNetWork::UpdateNetWork(QObject *parent) : QObject(parent)
,_p(new DataPrivate())
{
}
UpdateNetWork::~UpdateNetWork()
{
delete _p;
_p = nullptr;
}
void UpdateNetWork::DownLoadFile(const DownLoadData &data)
{
std::lock_guard<std::mutex> loc(_p->listMutex);
if(_p->downloadList.empty())
{
_p->downloadList.append(data);
startDownLoad();
}
else
{
_p->downloadList.append(data);
}
}
void UpdateNetWork::DownLoadFile(const QList<DownLoadData> &data)
{
std::lock_guard<std::mutex> loc(_p->listMutex);
if(_p->downloadList.empty())
{
_p->downloadList.append(data);
startDownLoad();
}
else
{
_p->downloadList.append(data);
}
}
void UpdateNetWork::startDownLoad()
{
//开始下载
if(_p->downloadList.empty()) return;
//打开文件
if(_p->currentFile)
{
delete _p->currentFile;
_p->currentFile = nullptr;
}
//创建目录
QDir dir(QFileInfo(_p->downloadList.front().filePath).path());
if(!dir.exists())
{
dir.mkpath(QFileInfo(_p->downloadList.front().filePath).path());
}
//删除原文件
QFile::remove(_p->downloadList.front().filePath);
_p->currentFile = new QFile(_p->downloadList.front().filePath);
if(!_p->currentFile->open(QIODevice::WriteOnly|QIODevice::Append))
{
qDebug()<<"wrong open file!"<<_p->downloadList.front().filePath;
return;
}
qDebug()<<_p->downloadList.front().filePath <<"url --"<< _p->downloadList.front().url;
QNetworkReply *reply = _p->networkManager->get(QNetworkRequest(_p->downloadList.front().url));
connect(reply,&QNetworkReply::readyRead,this,&UpdateNetWork::DownLoadReadSlots);
connect(reply,&QNetworkReply::downloadProgress,this,&UpdateNetWork::DownLoadProgressSlots);
connect(reply,&QNetworkReply::finished,this,&UpdateNetWork::DownLoadFinishSlots);
connect(reply,static_cast<void (QNetworkReply::*)(QNetworkReply::NetworkError)>(&QNetworkReply::error),this,&UpdateNetWork::DownLoadErrorSlots);
}
void UpdateNetWork::DownLoadReadSlots()
{
QNetworkReply *reply = qobject_cast<QNetworkReply *>(sender());
if(!reply) return;
_p->currentFile->write(reply->readAll());
}
void UpdateNetWork::DownLoadProgressSlots(qint64 bytesReceived,qint64 bytesTotal)
{
//todo
}
void UpdateNetWork::DownLoadFinishSlots()
{
_p->currentFile->flush();
_p->currentFile->close();
emit DownLoadFinish(_p->downloadList.front().fileName);
std::lock_guard<std::mutex> loc(_p->listMutex);
_p->downloadList.removeFirst();
if(!_p->downloadList.isEmpty())
{
startDownLoad();
}
else
{
emit TaskEmpty();
}
}
void UpdateNetWork::DownLoadErrorSlots(QNetworkReply::NetworkError code)
{
emit DwonLoadWrong(_p->downloadList.front().fileName);
}
| [
"[email protected]"
]
| |
80c29cc82bf33646c41a9bf96099d805ee16d165 | 4a39ebf87a7562ccadbb23eae6980b562e7c2309 | /Game/AppSrc/CloudsScene.hpp | 1818423ca60cad9cdbbd98dd0e245f0c168bab94 | []
| no_license | dmaulikr/Origami | b6c6f8da61fd4cde9ec100477053f40268584257 | 99eacc22121676caf69818799af1495902ddd09b | refs/heads/master | 2021-05-30T15:52:58.265062 | 2016-03-09T15:28:31 | 2016-03-09T15:28:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,678 | hpp | /****************************************************************************
CloudsScene.hpp
Created by El Mehdi KHALLOUKI on 1/9/16.
Copyright (c) 2016 __MyCompanyName__.
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.
****************************************************************************/
#pragma once
#include <Core/Origami.hpp>
USING_NS_O
#define CLOUDS_COUNT 9
class CloudsScene : public OScene {
private:
OSprite *sky;
std::vector<OSprite*> m_Clouds;
public:
CloudsScene();
virtual ~CloudsScene();
void onCreate() override;
void onClear() override;
void onUpdate(float deltaTime) override;
void onResize() override;
};
| [
"[email protected]"
]
| |
e4c0fc8f510856b16e961360d14eb1ffa97b0199 | b1bf2d9fa5f43323dda785b8b35930c75f0cdcc1 | /akim20224753_CIS22A_lab7_almost_done.cpp | 8db8fb4c33fae61c6ea92fb868d1aa4996a29fa7 | []
| no_license | tokkiboi/C- | 2d9295ee211f859a24591502a0c5e9bf9ea96ba0 | a8035a522a12401c0a13541fdd95ddcc161e1f5f | refs/heads/master | 2021-01-10T02:39:06.514621 | 2015-12-07T10:25:54 | 2015-12-07T10:25:54 | 43,973,851 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,182 | cpp | // Alex Kim - 20224753
// [email protected]
// Lab 7 - Choosing a University
/* Remove all escape characters beginning with '\033' and ending with 'm' (ex: "\033[1;32m" )
if on any machine that does not support ANSI color output.. purpose is to output
in distinct color while debugging */
#include <iostream> // Standard input/output streaming through system
#include <fstream> // Allow file handling: Input/Output to and from file(s)
#include <string> // Utilize string variable
#include <cstdlib> // Required for Exit() function
#include <iomanip> // Input/Output Formatting library
#define MAX 1000 // Pre-processor global macro to define MAX to have value of 1000
using namespace std;
// FUNCTION PROTOTYPE DECLARATION (FP Declaration)
int getData(ifstream&,string [],string [],string [],double [], int [], double [], double [] ); // FP to store value for number of elements present in array specified
int search(string [],int,string); // function prototype to search for position of target item
void grab_index(string[], string[], string[], double[], int[], double[], double[],int,string); // FP to extract and display all information of target item
void compare_tuition(string[],double[],int,double); // FP to seek affordable universities
void output(string [],string [],string [],double[], int[], double[], double[], int); // FP to output
void sortSelect(string [],string [], string [],int , double [],int [], double [],double []); // FP to sort the arrays
double average_tuition(ifstream&,string [],string [],string [],double [], int [], double [], double [] ); // FP to compute the average tuition for all universities
void signature(); // FP Signature
// FUNCTION MAIN
int main(void)
{
// declare variables
ifstream inFile;
string university[MAX];
string state[MAX];
string city[MAX];
string target;
double tuition[MAX];
int enrollment[MAX];
double retention[MAX];
double grad[MAX];
int number; int loc; double afford_tuition;
// open file
inFile.open("universities.txt");
// condition to check if file successfully opens/fails and alert user, otherwise continue
if (inFile.fail())
{
cerr << "No such file was found" << endl;
// system("pause");
system("read -n 1 -s -p \"Press any key to continue...\"\n");
exit(100);
}
// count and store in variable number: total elemements present in the arrays through calling function getData
number = getData(inFile, university, state, city, tuition, enrollment, retention, grad);
double avg_tuition=average_tuition(inFile, university, state, city, tuition, enrollment, retention, grad);
cout << "Average Tuition of all Universities:\t" << avg_tuition << endl;
system("read -n 1 -s -p \"Press any key to continue...\"\n");
// prompt user for particular university(ies) in State input
cout << "\n\033[1;32mEnter the abbreviated State: \033[0m";
cin >> target;
// prompt for maximum affordable tuition to user
// debug: cout << "Looking for Target **" << target << "**" << endl;
cout << "\n\033[1;32mEnter the affordable tuition: \033[0m";
cin >> afford_tuition;
// call search function to find indexed position
loc = search(state, number, target);
// debug: cout << "\n\033[1;31mAmount of affordable tuition:\033[0m\t" << afford_tuition << endl;
compare_tuition(university,tuition,number,afford_tuition); // call function compare_tution to find affordable universities with maximum tuition affordable
// Condition test through IF-statement, search through index of array to find match target State
if (loc == -1) // If not found alert non-existence of colleges in asked state
cout << "No colleges in " << target << " state in the list" << endl;
else{ // otherwise, if found, display all the information for found target by calling function grab_index
grab_index(university,state,city,tuition,enrollment,retention,grad,number,target);}
//Sort by the average tuition
sortSelect(university, state, city, number, tuition, enrollment, retention, grad);
//Output each university's name, state, tuition, enrollment, retention, grad
// output(university, state, city, tuition, enrollment, retention, grad, number);
// for Windows machines: //system("pause");
system("read -n 1 -s -p \"Press any key to continue...\"\n");
signature();
return 0;
}
// FUNCTION GETDATA
int getData(ifstream& inFile, string university[], string state[], string city[],double tuition[], int enrollment[], double retention[], double grad[])
{
/* Pre: inFile - reference to input file
university[] - array of university names
state[] - array of abbreviated states
tuition[] - array of tuitions
enrollment[] - array of enrollment
retention[] = array of retention
Post: number of items in stock
Purpose: read in information for all universities */
int count = 0;
double accept[MAX];
char ch='\n';
char blank=' ';
while (!inFile.eof() && count < MAX)
{
getline (inFile,university[count],ch);
inFile >> setw(2) >> state[count];
inFile.get(blank);
getline (inFile,city[count]);
inFile >> tuition[count] >> enrollment[count] >> accept[count] >> retention[count] >> grad[count];
inFile.get(ch);
inFile.get(ch);
count++;
}
return count;
}
// FUNCTION TUITION_AVERAGE
double average_tuition(ifstream& inFile, string university[], string state[], string city[],double tuition[], int enrollment[], double retention[], double grad[])
{
/* Pre: inFile - input file handling passed by reference
university[] - array of name of universities
state[] - array of states
city[] - array of name of the cities
tuition[] - array of amount of tuition
enrollment[] - array of enrollment
retention[] - array of retention percentage rate
grad[] - array of percentage rate of graduates
Post: return the value for average tution
Purpose: compute the average tution for all the universities */
int count = 0;
double tuition_avg=0;
double total_tuition=0;
double accept[MAX]; // declaring to store and negate(ignore) extra data in the data file
char ch='\n';
char blank=' ';
while (!inFile.eof() && count < MAX)
{
getline (inFile,university[count],ch);
// debug: cout << "University:\t" << university[count] << endl;
inFile >> setw(2) >> state[count];
inFile.get(blank);
getline (inFile,city[count]);
inFile >> tuition[count] >> enrollment[count] >> accept[count] >> retention[count] >> grad[count];
// inFile.get(ch);
inFile.get(ch);
total_tuition += tuition[count];
count++;
}
tuition_avg=total_tuition/count;
return tuition_avg;
}
// FUNCTION SEARCH
int search(string state[], int num, string target)
{
/* Pre: state[] - array of states where target value is being searched within
num - number of values to be searched through
target - specific value being searched for
Post: index of where it was found or -1 if not found, if found, position of 'i' in array represents the location found at
Purpose: find location of value being searched for */
int loc = -1; // -1 in array subscript will return false
for (int i = 0; i < num; i++)
{
if (state[i] == target) // check within elements in array of states and see if any match is found
loc = i; // return the position where match is found
}
return loc; // return index position
}
// FUNCTION GRAB_INDEX
void grab_index(string university[], string state[], string city[], double tuition[], int enrollment[], double retention[], double grad[],int count,string target)
{
/* Pre: inFile - input file handling passed by reference
university[] - array of name of universities
state[] - array of states
city[] - array of name of the cities
tuition[] - array of amount of tuition
enrollment[] - array of enrollment
retention[] - array of retention percentage rate
grad[] - array of percentage rate of graduates
Post: N/A
Purpose: display all the information for each univerisities */
ofstream fileOut; // declare output filehandling...
fileOut.open("lab7_output.txt"); // open file output streaming
// check success/fail of file opening for output stream, alert when fail and create new file..
if (fileOut.fail())
{
cerr << "File could not be open";
cout << "Creating a new file...";
system("touch lab7_output.txt"); // remove and manually create file if on Windows system
}
char fill=' ';
fileOut << "\033[1;31mUniversities found in the state:\033[0m\t" << target << endl;
for (int i=0; i < count; i++){
if (state[i] == target){
fileOut << setprecision(2) << fixed;
// debug: cout << "\033[1;32mUniversity\t" << "\033[1;33m" << university[i] << endl;
// debug: fileOut << "\033[1;31mState being searched:\033[0m\t" << state[i] << endl;
// debug" fileOut << "\033[1;31mTarget being searched:\033[0m\t" << target << endl;
fileOut << "\033[1;32mUniversity\t" << "\033[1;33m" << university[i] << endl;
fileOut << setw(5) << "\033[1;32mState\t\t" << "\033[1;33m" << state[i] << "\t\033[1;32mCity\t" << "\033[1;33m" << city[i] << endl;
fileOut << setw(8) << "\033[1;32mTuition\t\t" << setw(2) << fill << setw(10) << "Enrollment\t" << fill;
fileOut << setw(13) << "%Fresh Succeed\t" << setw(3) << fill << "%Graduate in six years" << "\033[1;33m\n";
fileOut << setw(8) << tuition[i] << setw(4) << fill << setw(16) << enrollment[i] << fill << setw(16) << (retention[i]*100);
fileOut << " %" << setw(19) << fill << right << (grad[i]*100) << " %" << endl;
}
// debug: else exit (100);}
}
}
// FUNCTION COMPARE_TUITION
void compare_tuition(string university[],double tuition[],int count, double target_tuition)
{
/* Pre: inFile - input file handling passed by reference
university[] - array of name of universities
state[] - array of states
city[] - array of name of the cities
tuition[] - array of amount of tuition
enrollment[] - array of enrollment
retention[] - array of retention percentage rate
grad[] - array of percentage rate of graduates
Post: return the value for average tution
Purpose: compute the average tution for all the universities */
cout << "\033[1;32mMaximum affordable tuition:\t" << target_tuition << endl; // debug purpose (Testing)
for (int i=0; i < count;i++){
if (tuition[i] <= target_tuition){
cout << "\033[1;32mAffordable Universities:\n";
cout << "\033[1;33m" << university[i] << "\033[0m" << endl;}
}
}
// FUNCTION OUTPUT
void output(string university[], string state[], string city[], double tuition[], int enrollment[], double retention[], double grad[],int count)
{
/* Pre: university[] - array of name of universities
state[] - array of states
city[] - array of name of the cities
tuition[] - array of amount of tuition
enrollment[] - array of enrollment
retention[] - array of retention percentage rate
grad[] - array of percentage rate of graduates
count - counter of total elements in array
Post: return the value for average tution
Purpose: compute the average tution for all the universities */
char fill=' ';
for (int i = 0; i < count; i++){
cout << setprecision(2) << fixed;
cout << "\033[1;32mUniversity\t" << "\033[1;33m" << university[i] << endl;
cout << setw(5) << "\033[1;32mState\t\t" << "\033[1;33m" << state[i] << "\t\033[1;32mCity\t" << "\033[1;33m" << city[i] << endl;
cout << setw(8) << "\033[1;32mTuition\t\t" << setw(2) << fill << setw(10) << "Enrollment\t" << fill;
cout << setw(13) << "%Fresh Succeed\t" << setw(3) << fill << "%Graduate in six years" << "\033[1;33m\n";
cout << setw(8) << tuition[i] << setw(4) << fill << setw(16) << enrollment[i] << fill << setw(16) << (retention[i]*100);
cout << " %" << setw(19) << fill << right << (grad[i]*100) << " %" << endl;
return;
}
}
// FUNCTION SORTSELECT
void sortSelect(string university[], string state[], string city[], int num, double tuition[], int enrollment[], double retention[], double grad[])
{
/* Pre: university[] - array of name of universities
state[] - array of states
city[] - array of name of the cities
num - counter of total elements in array
tuition[] - array of amount of tuition
enrollment[] - array of enrollment
retention[] - array of retention percentage rate
grad[] - array of percentage rate of graduates
Post: N/A
Purpose: sort array by enrollment in ascending order */
int current; int walker;
int smallestIndex;
int temp;
for (current = 0; current < num - 1; current++)
{
smallestIndex = current;
for (walker = current; walker < num; walker++)
{
if (enrollment[walker] < enrollment[smallestIndex])
smallestIndex = walker;
}
//Swap to position smallest at what is the current position
temp = enrollment[current];
enrollment[current] = enrollment[smallestIndex];
enrollment[smallestIndex] = temp;
}
//for current
return;
}
// FUNCTION SIGNATURE
void signature()
{
string position1="Student Name:\t";
string position2="E-mail:\t\t";
string position3="Assignment:\t";
cout << "\n";
cout << position1+ "Alex Kim" << endl;
cout << position2+ "[email protected]" << endl;
cout << position3+ "Lab 7 - Choosing a University" << endl;
ofstream myFileOut("lab7_output.txt",ios::app);
myFileOut << "\n" << endl;
myFileOut << position1+ "Alex Kim" << endl;
myFileOut << position2+ "[email protected]" << endl;
myFileOut << position3+ "Lab 7 - Choosing a University" << endl;
}
/* OUTPUT DATA -- Testing
tokkiboi@voyager~/programming/cpp $ ./a.out
Average Tuition of all Universities: nan
Press any key to continue...
Enter the abbreviated State: CA
Enter the affordable tuition: 30000
Maximum affordable tuition: 30000
Affordable Universities:
University of California-Berkeley
Affordable Universities:
University of California-Los Angeles
Affordable Universities:
Press any key to continue...
Student Name: Alex Kim
E-mail: [email protected]
Assignment: Lab 7 - Choosing a University
tokkiboi@voyager~/programming/cpp $ */
/* DATA output to file
tokkiboi@voyager~/programming/cpp $ cat lab7_output.txt
Universities found in the state: CA
University Stanford University
State CA City Stanford
Tuition Enrollment %Fresh Succeed %Graduate in six years
44757.00 18136 98.00 % 96.00 %
University California Institute of Technology
State CA City Pasadena
Tuition Enrollment %Fresh Succeed %Graduate in six years
43362.00 2181 97.00 % 93.00 %
University University of California-Berkeley
State CA City Berkeley
Tuition Enrollment %Fresh Succeed %Graduate in six years
25064.00 36204 97.00 % 91.00 %
University University of California-Los Angeles
State CA City Los Angeles
Tuition Enrollment %Fresh Succeed %Graduate in six years
25064.00 42190 97.00 % 90.00 %
University University of Southern California
State CA City Los Angeles
Tuition Enrollment %Fresh Succeed %Graduate in six years
48280.00 41368 97.00 % 91.00 %
Student Name: Alex Kim
E-mail: [email protected]
Assignment: Lab 7 - Choosing a University
tokkiboi@voyager~/programming/cpp $ */
| [
"[email protected]"
]
| |
cd965f9cfaba4c5caec3582c28da3e260e89af67 | 31c38c6fa9d1aa2ad0ce113e7084cb8c0f7bc956 | /SDK/AB_Menu_Slasher01_parameters.h | 4cd2f38437536baf3529db7191e35c892f048ab4 | []
| no_license | xnf4o/DBD_SDK_461 | d46feebba60aa71285479e4c71ff5dbf5d57b227 | 9d4fb29a75b63f4bd8813d4ee0cdb897aa792a58 | refs/heads/main | 2023-04-12T22:27:19.819706 | 2021-04-14T22:09:39 | 2021-04-14T22:09:39 | 358,058,055 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,405 | h | #pragma once
// Name: DeadByDaylight, Version: 4.6.1
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//---------------------------------------------------------------------------
// Function AB_Menu_Slasher01.AB_Menu_Slasher01_C.AnimGraph
struct UAB_Menu_Slasher01_C_AnimGraph_Params
{
struct FPoseLink AnimGraph; // (Parm, OutParm, NoDestructor)
};
// Function AB_Menu_Slasher01.AB_Menu_Slasher01_C.BlueprintUpdateAnimation
struct UAB_Menu_Slasher01_C_BlueprintUpdateAnimation_Params
{
float DeltaTimeX; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
// Function AB_Menu_Slasher01.AB_Menu_Slasher01_C.ExecuteUbergraph_AB_Menu_Slasher01
struct UAB_Menu_Slasher01_C_ExecuteUbergraph_AB_Menu_Slasher01_Params
{
int EntryPoint; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"[email protected]"
]
| |
7147d5c6434f8c9c61133a1ada7dd586895fff24 | 33fd5786ddde55a705d74ce2ce909017e2535065 | /build/iOS/Debug/include/Fuse.Controls.Navigat-d5b6859a.h | f17dab05a4160869db7373bf24d7e8519c8ac803 | []
| no_license | frpaulas/iphodfuse | 04cee30add8b50ea134eb5a83e355dce886a5d5a | e8886638c4466b3b0c6299da24156d4ee81c9112 | refs/heads/master | 2021-01-23T00:48:31.195577 | 2017-06-01T12:33:13 | 2017-06-01T12:33:13 | 92,842,106 | 3 | 3 | null | 2017-05-30T17:43:28 | 2017-05-30T14:33:26 | C++ | UTF-8 | C++ | false | false | 418 | h | // This file was generated based on '../../../../Library/Application Support/Fusetools/Packages/Fuse.Controls.Navigation/1.0.2/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Int.h>
namespace g{
namespace Fuse{
namespace Controls{
// public enum NavigationControlInactiveState :395
uEnumType* NavigationControlInactiveState_typeof();
}}} // ::g::Fuse::Controls
| [
"[email protected]"
]
| |
3c78f93226e3ad285e88267c89d96a8f12a0c3cc | 7f3e95e825b894a8d015b5905592757a0040220f | /2013/inc/dbloftedsurf.h | 8b3b3a9644a36417518a6e1132cc6e0c3bb9accd | [
"MIT"
]
| permissive | AliClouds/ObjectARXCore | b06e2d4bb59df2b45e56ec76d3abb843c7131009 | ce09e150aa7d87675ca15c9416497c0487e3d4d4 | refs/heads/master | 2021-05-28T05:19:12.593781 | 2014-05-08T01:23:33 | 2014-05-08T01:23:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,121 | h | //////////////////////////////////////////////////////////////////////////////
//
// Copyright 2012 Autodesk, Inc. All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software in either electronic or hard copy form.
//
//////////////////////////////////////////////////////////////////////////////
//
//
// DESCRIPTION:
//
// The AcDbLoftedSurface class is the interface class for representing
// ASM lofted surfaces.
#pragma once
#ifndef DBLOFTEDSURF_H
#define DBLOFTEDSURF_H
#include "dbsurf.h"
#include "db3dProfile.h"
#pragma pack(push, 8)
class AcDbLoftedSurface: public AcDbSurface
{
public:
/// <summary>
/// Default constructor.
/// </summary>
AcDbLoftedSurface ();
/// <summary>
/// Destructor.
/// </summary>
virtual ~AcDbLoftedSurface();
ACDB_DECLARE_MEMBERS(AcDbLoftedSurface);
/// <summary>
/// Creates a lofted surface from the given curves using the specified options.
/// The curves must be either all open or all closed. If the curves are all closed,
/// then this function will accept a point entity as the first and/or last list entry.
/// Each curve in the guideCurves list must intersect each of the cross-section curves,
/// so the guide curves form a net-like structure with the cross-section curves.
/// Both the cross-section curves and the guide curves will lie on the resulting surface.
/// If any guide curves are passed in this list, then pPathCurve should be null.
/// If pPathCurve is non-null, then the resulting surface will follow the shape of this
/// curve as much as possible. This curve does not need to intersect the cross-section
/// curves and does not even need to be near the cross sections.
/// If this parameter is non-null, then guideCurves should be an empty list.
/// </summary>
/// <param name="crossSectionCurves">
/// Input array of curve entities to be used as cross sections for the lofting operation.
/// </param>
/// <param name="guideCurves">
/// Input optional array of guide curves.
/// </param>
/// <param name="pPathCurve">
/// Input optional path curve.
/// </param>
/// <param name="loftOptions">
/// Input loft options.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
virtual Acad::ErrorStatus createLoftedSurface (
AcArray<AcDbEntity*>& crossSectionCurves,
AcArray<AcDbEntity*>& guideCurves,
AcDbEntity* pPathCurve, AcDbLoftOptions& loftOptions );
/// <summary>
/// Return the number of cross sections for the surface.
/// </summary>
/// <returns>
/// Number of cross sections.
/// </returns>
int numCrossSections () const;
/// <summary>
/// Returns the cross section entity at zero-based index. If the cross section
/// is for an edge or set of edges then the edge curve will be returned.
/// The caller should not delete this pointer.
/// </summary>
/// <param name="idx">
/// Input index of cross section.
/// </param>
/// <returns>
/// Cross section entity. The caller should not delete this pointer.
/// </returns>
AcDbEntity* getCrossSection ( int idx ) const;
/// <summary>
/// Return the number of guides for the surface.
/// </summary>
/// <returns>
/// Number of guides.
/// </returns>
int numGuideCurves () const;
/// <summary>
/// Returns the guide curve at zero-based index. If the guide
/// is for an edge or set of edges then the edge curve will be returned.
/// The caller should not delete this pointer.
/// </summary>
/// <param name="idx">
/// Input index of guide curve.
/// </param>
/// <returns>
/// Pointer to guide curve. The caller should not delete this pointer.
/// </returns>
AcDbEntity* getGuideCurve ( int idx ) const;
/// <summary>
/// Returns the path curve of the surface, or null if no path profile was
/// used to create the surface. If the path is for an edge or set of edges
/// then the edge curve will be returned.
/// The caller should not delete this pointer.
/// </summary>
/// <returns>
/// Pointer to path entity. The caller should not delete this pointer.
/// </returns>
AcDbEntity* getPathEntity () const;
/// <summary>
/// Gets the loft options used to create this surface.
/// </summary>
/// <param name="loftOptions">
/// Output loft options.
/// </param>
void getLoftOptions ( AcDbLoftOptions& loftOptions ) const;
/// <summary>
/// Returns the cross section profile at zero-based index. The returned
/// object contains the cross section entity and edge data if the profile is
/// for an edge or set of edges, and also contains the continuity and
/// takeoff vector magnitude if idx references the first or last profile.
/// The caller is responsible for deleting the returned pointer.
/// </summary>
/// <param name="idx">
/// Input index of cross section.
/// </param>
/// <returns>
/// Cross section profile. The caller is responsible for deleting the returned pointer.
/// </returns>
ACDB_PORT AcDbLoftProfile* crossSection ( int idx ) const;
/// <summary>
/// Returns list of cross section profiles that were used to create the surface.
/// The returned objects contain the cross section entity and edge data if the
/// profile is for an edge or set of edges, and also contains the continuity and
/// takeoff vector magnitude for the first and last profiles.
/// The caller is responsible for deleting all pointers in the output list.
/// </summary>
/// <param name="crossSections">
/// Output list of cross section profiles.
/// </param>
/// <returns>
/// Cross section profile. The caller is responsible for deleting the returned pointer.
/// </returns>
ACDB_PORT void getCrossSections ( AcArray<AcDbLoftProfile*>& crossSections ) const;
/// <summary>
/// Returns the guide profile at zero-based index. The returned
/// object contains the guide entity and edge data if the profile is
/// for an edge or set of edges. The caller is responsible for deleting the
/// returned pointer.
/// </summary>
/// <param name="idx">
/// Input index of guide.
/// </param>
/// <returns>
/// Guide profile. The caller is responsible for deleting the returned pointer.
/// </returns>
ACDB_PORT AcDbLoftProfile* guide ( int idx ) const;
/// <summary>
/// Returns list of guide profiles that were used to create the surface.
/// The returned objects contain the guide entity and edge data if the
/// profile is for an edge or set of edges. The caller is responsible for
/// deleting all pointers in the output list.
/// </summary>
/// <param name="guides">
/// Output list of guide profiles.
/// </param>
/// <returns>
/// Guide profile. The caller is responsible for deleting the returned pointer.
/// </returns>
ACDB_PORT void getGuides ( AcArray<AcDbLoftProfile*>& guides ) const;
/// <summary>
/// Returns the path profile that was used to create the surface, or null if
/// no path was used. The returned object contains the guide entity and edge data
/// if the profile is for an edge or set of edges. The caller is responsible for
/// deleting the returned pointer.
/// </summary>
/// <returns>
/// Path profile, or null if no path was used to create the surface.
/// The caller is responsible for deleting the returned pointer.
/// </returns>
ACDB_PORT AcDbLoftProfile* path () const;
/// <summary>
/// Returns the continuity at the first profile.
/// </summary>
/// <param name="isCrossSection">
/// Input parameter - if true then continuity at first cross section will be
/// returned, otherwise continuity at first guide will be returned.
/// </param>
/// <returns>
/// 0, 1, or 2 which corresponds to G0, G1, or G2.
/// </returns>
ACDB_PORT int startContinuity ( bool isCrossSection = true ) const;
/// <summary>
/// Returns the continuity at the last profile.
/// </summary>
/// <param name="isCrossSection">
/// Input parameter - if true then continuity at last cross section will be
/// returned, otherwise continuity at last guide will be returned.
/// </param>
/// <returns>
/// 0, 1, or 2 which corresponds to G0, G1, or G2.
/// </returns>
ACDB_PORT int endContinuity ( bool isCrossSection = true ) const;
/// <summary>
/// Returns the magnitude of the surface takeoff vector at the
/// first profile.
/// </summary>
/// <param name="isCrossSection">
/// Input parameter - if true then magnitude at first cross section will be
/// returned, otherwise magnitude at first guide will be returned.
/// </param>
/// <returns>
/// Magnitude of the surface takeoff vector at the first profile.
/// </returns>
ACDB_PORT double startMagnitude ( bool isCrossSection = true ) const;
/// <summary>
/// Returns the magnitude of the surface takeoff vector at the
/// last profile.
/// </summary>
/// <param name="isCrossSection">
/// Input parameter - if true then magnitude at last cross section will be
/// returned, otherwise magnitude at last guide will be returned.
/// </param>
/// <returns>
/// Magnitude of the surface takeoff vector at the first profile.
/// </returns>
ACDB_PORT double endMagnitude ( bool isCrossSection = true ) const;
/// <summary>
/// Sets the continuity at the first profile and recreates the surface.
/// </summary>
/// <param name="val">
/// Input new continuity (must be 0, 1, or 2).
/// </param>
/// <param name="isCrossSection">
/// Input parameter - if true then continuity at first cross section will be
/// set, otherwise continuity at first guide will be set.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
ACDB_PORT Acad::ErrorStatus setStartContinuity ( int val, bool isCrossSection = true );
/// <summary>
/// Sets the continuity at the last profile and recreates the surface.
/// </summary>
/// <param name="val">
/// Input new continuity (must be 0, 1, or 2).
/// </param>
/// <param name="isCrossSection">
/// Input parameter - if true then continuity at last cross section will be
/// set, otherwise continuity at last guide will be set.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
ACDB_PORT Acad::ErrorStatus setEndContinuity ( int val, bool isCrossSection = true );
/// <summary>
/// Sets the magnitude of the surface takeoff vector at the
/// first profile and recreates the surface.
/// </summary>
/// <param name="val">
/// Input new magnitude (must be non-negative).
/// </param>
/// <param name="isCrossSection">
/// Input parameter - if true then magnitude at first cross section will be
/// set, otherwise magnitude at first guide will be set.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
ACDB_PORT Acad::ErrorStatus setStartMagnitude ( double val, bool isCrossSection = true );
/// <summary>
/// Sets the magnitude of the surface takeoff vector at the
/// last profile and recreates the surface.
/// </summary>
/// <param name="val">
/// Input new magnitude (must be non-negative).
/// </param>
/// <param name="isCrossSection">
/// Input parameter - if true then magnitude at last cross section will be
/// set, otherwise magnitude at last guide will be set.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
ACDB_PORT Acad::ErrorStatus setEndMagnitude ( double val, bool isCrossSection = true );
/// <summary>
/// Sets new loft options and recreates the surface.
/// </summary>
/// <param name="guides">
/// Input new loft options.
/// </param>
/// <returns>
/// eOk if successful.
/// </returns>
ACDB_PORT Acad::ErrorStatus setLoftOptions ( const AcDbLoftOptions& loftOptions );
/// <summary> This enum represents the type of lofted surface. </summary>
ACDB_PORT enum LoftSurfaceType
{
/// <summary> Created from createLoftedSurface(). </summary>
kLoftSurf,
/// <summary> Created from createBlendSurface(). </summary>
kLoftBlendSurf,
/// <summary> Created from createNetworkSurface(). </summary>
kLoftNetworkSurf
};
/// <summary>
/// Returns the type of lofted surface.
/// </summary>
/// <returns>
/// Loft surface type: ordinary loft, blend, or network.
/// </returns>
ACDB_PORT AcDbLoftedSurface::LoftSurfaceType loftSurfaceType () const;
// AcDbObject methods
virtual Acad::ErrorStatus dwgInFields(AcDbDwgFiler* filer);
virtual Acad::ErrorStatus dwgOutFields(AcDbDwgFiler* filer) const;
virtual Acad::ErrorStatus dxfInFields(AcDbDxfFiler* filer);
virtual Acad::ErrorStatus dxfOutFields(AcDbDxfFiler* filer) const;
virtual bool isDependent() const;
protected:
virtual Acad::ErrorStatus subGetClassID(CLSID* pClsid) const;
};
#pragma pack(pop)
#endif // DBLOFTEDSURF_H
| [
"[email protected]"
]
| |
713482567df2b01e698f435f31e35f29addf9b10 | ac1c9fbc1f1019efb19d0a8f3a088e8889f1e83c | /out/release/gen/third_party/blink/renderer/core/events/input_event_init.h | a1fc1067650a4fbaf505096e1922c66eac264196 | [
"BSD-3-Clause"
]
| permissive | xueqiya/chromium_src | 5d20b4d3a2a0251c063a7fb9952195cda6d29e34 | d4aa7a8f0e07cfaa448fcad8c12b29242a615103 | refs/heads/main | 2022-07-30T03:15:14.818330 | 2021-01-16T16:47:22 | 2021-01-16T16:47:22 | 330,115,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,114 | h | // Copyright 2014 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.
// This file has been auto-generated from the Jinja2 template
// third_party/blink/renderer/bindings/templates/dictionary_impl.h.tmpl
// by the script code_generator_v8.py.
// DO NOT MODIFY!
// clang-format off
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_INPUT_EVENT_INIT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_INPUT_EVENT_INIT_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/events/ui_event_init.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
class StaticRange;
class DataTransfer;
class CORE_EXPORT InputEventInit : public UIEventInit {
public:
static InputEventInit* Create() { return MakeGarbageCollected<InputEventInit>(); }
InputEventInit();
virtual ~InputEventInit();
bool hasData() const { return !data_.IsNull(); }
const String& data() const {
return data_;
}
inline void setData(const String&);
inline void setDataToNull();
bool hasDataTransfer() const { return has_data_transfer_; }
DataTransfer* dataTransfer() const {
return data_transfer_;
}
inline void setDataTransfer(DataTransfer*);
inline void setDataTransferToNull();
bool hasInputType() const { return !input_type_.IsNull(); }
const String& inputType() const {
return input_type_;
}
inline void setInputType(const String&);
bool hasIsComposing() const { return has_is_composing_; }
bool isComposing() const {
DCHECK(has_is_composing_);
return is_composing_;
}
inline void setIsComposing(bool);
bool hasTargetRanges() const { return has_target_ranges_; }
const HeapVector<Member<StaticRange>>& targetRanges() const {
DCHECK(has_target_ranges_);
return target_ranges_;
}
void setTargetRanges(const HeapVector<Member<StaticRange>>&);
v8::Local<v8::Value> ToV8Impl(v8::Local<v8::Object>, v8::Isolate*) const override;
void Trace(blink::Visitor*) override;
private:
bool has_data_transfer_ = false;
bool has_is_composing_ = false;
bool has_target_ranges_ = false;
String data_;
Member<DataTransfer> data_transfer_;
String input_type_;
bool is_composing_;
HeapVector<Member<StaticRange>> target_ranges_;
friend class V8InputEventInit;
};
void InputEventInit::setData(const String& value) {
data_ = value;
}
void InputEventInit::setDataToNull() {
data_ = String();
}
void InputEventInit::setDataTransfer(DataTransfer* value) {
data_transfer_ = value;
has_data_transfer_ = true;
}
void InputEventInit::setDataTransferToNull() {
data_transfer_ = Member<DataTransfer>();
has_data_transfer_ = true;
}
void InputEventInit::setInputType(const String& value) {
input_type_ = value;
}
void InputEventInit::setIsComposing(bool value) {
is_composing_ = value;
has_is_composing_ = true;
}
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_EVENTS_INPUT_EVENT_INIT_H_
| [
"[email protected]"
]
| |
23e3111fb31770ca9e58cfe5a7dd844e1d49d7bd | a10547879584316930ae20aeaa7a2bc9502d993f | /mystl_construct.h | 455c7bb3db796cb37c7dc3f52ee0db39f7f91dc4 | []
| no_license | brangpd/MySTL | f5ba5c53ded51762fb9291533f09362574ee6427 | 85d907cdbf8eabdc6c89a2c698b99be9c2ac01d7 | refs/heads/master | 2020-04-17T08:29:49.952025 | 2019-02-20T09:50:52 | 2019-02-20T09:50:52 | 166,414,643 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,457 | h | //
// Created by brang on 1/18/19.
//
#ifndef MYSTL_MYSTL_CONSTRUCT_H
#define MYSTL_MYSTL_CONSTRUCT_H
#include "mystl_config.h"
#include "type_traits.h"
#include <new>
#include <cassert>
#include <cstring>
BEGIN_NAMESPACE_MYSTD
template <class T>
inline T *allocate(ptrdiff_t size, T *)
{
T *tmp = (T *) ::operator new((size_t) (size * sizeof(T)));
if (!tmp)
{
exit(1);
}
return tmp;
}
template <class T>
inline void deallocate(T *buf)
{
::operator delete(buf);
}
template <class T1, class T2>
inline void construct(T1 *p, const T2 &value)
{
new(p)T1(value);
}
template <class T>
inline void destroy(T *p)
{
p->~T();
}
template <class ForwardIterator, class T>
inline void __destroy_aux(ForwardIterator first, ForwardIterator last, __false_type)
{
while (first != last)
{
destroy(&*first);
++first;
}
}
template <class ForwardIterator>
inline void __destroy_aux(ForwardIterator, ForwardIterator, __true_type)
{
// Do nothing.
}
template <class ForwardIterator, class T>
inline void __destroy(ForwardIterator first, ForwardIterator last, T *)
{
using trivial_destructor = typename __type_traits<T>::has_trivial_destructor;
__destroy_aux(first, last, trivial_destructor());
}
template <class ForwardIterator>
inline void destroy(ForwardIterator first, ForwardIterator last)
{
__destroy(first, last, value_type(first));
}
END_NAMESPACE_MYSTD
#endif //MYSTL_MYSTL_CONSTRUCT_H
| [
"[email protected]"
]
| |
d890787ff8298e86a2d407f60327b6f9b638abaf | 2c6c81d4738f540f9ec4bd96c9d6c110f2d00632 | /csg/BoundingBox.h | d0b7d2694cdf75efed61adbf47934f25c2a71b63 | []
| no_license | Romain96/M1S1_CPOA | 2acb09d4a4c1abab87335324e6217c961b440e1d | 5e41f31482dca782df56be4222f94ca86e5f1e61 | refs/heads/master | 2021-05-04T20:00:41.836445 | 2018-01-09T22:15:45 | 2018-01-09T22:15:45 | 106,827,232 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,149 | h | #ifndef __BOUNDINGBOX_H__
#define __BOUNDINGBOX_H__
#include "Vector.h"
#include "Utils.h"
// représente les boîtes englobantes en coordonnées 2D float (vec2f)
// les boîtes englobantes sont alignées sur les axes
class BoundingBox
{
protected:
Vec2f _upper_left_point;
Vec2f _upper_right_point;
Vec2f _lower_left_point;
Vec2f _lower_right_point;
public:
// constructeurs
BoundingBox();
BoundingBox(Vec2f& ulp, Vec2f& urp, Vec2f& llp, Vec2f& lrp);
// getters
const Vec2f& getUpperLeftPoint() const;
const Vec2f& getUpperRightPoint() const;
const Vec2f& getLowerLeftPoint() const;
const Vec2f& getLowerRightPoint() const;
// setters
void setUpperLeftPoint(Vec2f& ulp);
void setUpperRightPoint(Vec2f& urp);
void setLowerLeftPoint(Vec2f& llp);
void setLowerRightPoint(Vec2f& lrp);
// méthodes
Vec2f& center();
};
// union
BoundingBox& operator +(BoundingBox &bb1, BoundingBox &bb2);
// intersection
BoundingBox& operator ^(BoundingBox &bb1, BoundingBox &bb2);
// différence
BoundingBox& operator -(BoundingBox &bb1, BoundingBox &bb2);
#endif // __BOUNDINGBOX_H__
| [
"[email protected]"
]
| |
6467ee4e12a7a1b26f8a73dc20bcf69a46b56ece | 056fcc67222afe34d96fd9cadb35469f6d305907 | /driveronly_mp_rom/oppo/libs/oppomedia/libs/libmac/MACLib.h | b0281dde53a77f971a5c07e89956c51b4d460ba3 | []
| no_license | datagutt/12055 | a9e98f2972a76d92b7d07eee690cd1300b780efe | 593741d834fff91ad3587c762caea5f00b69ba69 | refs/heads/master | 2020-07-21T13:04:55.731555 | 2013-10-10T06:12:43 | 2013-10-10T06:12:43 | 14,116,459 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 27,287 | h | /*****************************************************************************************
Monkey's Audio MACLib.h (include for using MACLib.lib in your projects)
Copyright (C) 2000-2009 by Matthew T. Ashland All Rights Reserved.
Overview:
There are two main interfaces... create one (using CreateIAPExxx) and go to town:
IAPECompress - for creating APE files
IAPEDecompress - for decompressing and analyzing APE files
Note(s):
Unless otherwise specified, functions return ERROR_SUCCESS (0) on success and an
error code on failure.
The terminology "Sample" refers to a single sample value, and "Block" refers
to a collection of "Channel" samples. For simplicity, MAC typically uses blocks
everywhere so that channel mis-alignment cannot happen. (i.e. on a CD, a sample is
2 bytes and a block is 4 bytes ([2 bytes per sample] * [2 channels] = 4 bytes))
Questions / Suggestions:
Please direct questions or comments to this email address:
monkey at ashlands dot net
[ due to a large volume of email and spams, a response can not be guaranteed ]
*****************************************************************************************/
#ifndef APE_MACLIB_H
#define APE_MACLIB_H
/*************************************************************************************************
APE File Format Overview: (pieces in order -- only valid for the latest version APE files)
JUNK - any amount of "junk" before the APE_DESCRIPTOR (so people that put ID3v2 tags on the files aren't hosed)
APE_DESCRIPTOR - defines the sizes (and offsets) of all the pieces, as well as the MD5 checksum
APE_HEADER - describes all of the necessary information about the APE file
SEEK TABLE - the table that represents seek offsets [optional]
HEADER DATA - the pre-audio data from the original file [optional]
APE FRAMES - the actual compressed audio (broken into frames for seekability)
TERMINATING DATA - the post-audio data from the original file [optional]
TAG - describes all the properties of the file [optional]
Notes:
Junk:
This block may not be supported in the future, so don't write any software that adds meta data
before the APE_DESCRIPTOR. Please use the APE Tag for any meta data.
Seek Table:
A 32-bit unsigned integer array of offsets from the header to the frame data. May become "delta"
values someday to better suit huge files.
MD5 Hash:
Since the header is the last part written to an APE file, you must calculate the MD5 checksum out of order.
So, you first calculate from the tail of the seek table to the end of the terminating data.
Then, go back and do from the end of the descriptor to the tail of the seek table.
You may wish to just cache the header data when starting and run it last, so you don't
need to seek back in the I/O.
*************************************************************************************************/
/*****************************************************************************************
Defines
*****************************************************************************************/
#define COMPRESSION_LEVEL_FAST 1000
#define COMPRESSION_LEVEL_NORMAL 2000
#define COMPRESSION_LEVEL_HIGH 3000
#define COMPRESSION_LEVEL_EXTRA_HIGH 4000
#define COMPRESSION_LEVEL_INSANE 5000
#define MAC_FORMAT_FLAG_8_BIT 1 // is 8-bit [OBSOLETE]
#define MAC_FORMAT_FLAG_CRC 2 // uses the new CRC32 error detection [OBSOLETE]
#define MAC_FORMAT_FLAG_HAS_PEAK_LEVEL 4 // uint32 nPeakLevel after the header [OBSOLETE]
#define MAC_FORMAT_FLAG_24_BIT 8 // is 24-bit [OBSOLETE]
#define MAC_FORMAT_FLAG_HAS_SEEK_ELEMENTS 16 // has the number of seek elements after the peak level
#define MAC_FORMAT_FLAG_CREATE_WAV_HEADER 32 // create the wave header on decompression (not stored)
#define CREATE_WAV_HEADER_ON_DECOMPRESSION -1
#define MAX_AUDIO_BYTES_UNKNOWN -1
/*****************************************************************************************
Progress callbacks
*****************************************************************************************/
typedef void (__stdcall * APE_PROGRESS_CALLBACK) (int);
class IAPEProgressCallback
{
public:
virtual void Progress(int nPercentageDone) = 0;
virtual int GetKillFlag() = 0; // KILL_FLAG_CONTINUE to continue
virtual ~IAPEProgressCallback(){return;}
};
/*****************************************************************************************
All structures are designed for 4-byte alignment
*****************************************************************************************/
#if 0
#pragma pack(push)
#pragma pack(4)
#endif
/*****************************************************************************************
WAV header structure
*****************************************************************************************/
struct WAVE_HEADER
{
// RIFF header
char cRIFFHeader[4];
unsigned int nRIFFBytes;
// data type
char cDataTypeID[4];
// wave format
char cFormatHeader[4];
unsigned int nFormatBytes;
unsigned short nFormatTag;
unsigned short nChannels;
unsigned int nSamplesPerSec;
unsigned int nAvgBytesPerSec;
unsigned short nBlockAlign;
unsigned short nBitsPerSample;
// data chunk header
char cDataHeader[4];
unsigned int nDataBytes;
};
/*****************************************************************************************
APE_DESCRIPTOR structure (file header that describes lengths, offsets, etc.)
*****************************************************************************************/
struct APE_DESCRIPTOR
{
char cID[4]; // should equal 'MAC '
uint32 nVersion; // version number * 1000 (3.81 = 3810) (remember that 4-byte alignment causes this to take 4-bytes)
uint32 nDescriptorBytes; // the number of descriptor bytes (allows later expansion of this header)
uint32 nHeaderBytes; // the number of header APE_HEADER bytes
uint32 nSeekTableBytes; // the number of bytes of the seek table
uint32 nHeaderDataBytes; // the number of header data bytes (from original file)
uint32 nAPEFrameDataBytes; // the number of bytes of APE frame data
uint32 nAPEFrameDataBytesHigh; // the high order number of APE frame data bytes
uint32 nTerminatingDataBytes; // the terminating data of the file (not including tag data)
uint8 cFileMD5[16]; // the MD5 hash of the file (see notes for usage... it's a littly tricky)
};
/*****************************************************************************************
APE_HEADER structure (describes the format, duration, etc. of the APE file)
*****************************************************************************************/
struct APE_HEADER
{
uint16 nCompressionLevel; // the compression level (see defines I.E. COMPRESSION_LEVEL_FAST)
uint16 nFormatFlags; // any format flags (for future use)
uint32 nBlocksPerFrame; // the number of audio blocks in one frame
uint32 nFinalFrameBlocks; // the number of audio blocks in the final frame
uint32 nTotalFrames; // the total number of frames
uint16 nBitsPerSample; // the bits per sample (typically 16)
uint16 nChannels; // the number of channels (1 or 2)
uint32 nSampleRate; // the sample rate (typically 44100)
};
/*************************************************************************************************
Reset alignment
*************************************************************************************************/
#if 0
#pragma pack(pop)
#endif
/*************************************************************************************************
Classes (fully defined elsewhere)
*************************************************************************************************/
class CIO;
#if 0
class CInputSource;
#endif
class CAPEInfo;
/*************************************************************************************************
IAPEDecompress fields - used when querying for information
Note(s):
-the distinction between APE_INFO_XXXX and APE_DECOMPRESS_XXXX is that the first is querying the APE
information engine, and the other is querying the decompressor, and since the decompressor can be
a range of an APE file (for APL), differences will arise. Typically, use the APE_DECOMPRESS_XXXX
fields when querying for info about the length, etc. so APL will work properly.
(i.e. (APE_INFO_TOTAL_BLOCKS != APE_DECOMPRESS_TOTAL_BLOCKS) for APL files)
*************************************************************************************************/
enum APE_DECOMPRESS_FIELDS
{
APE_INFO_FILE_VERSION = 1000, // version of the APE file * 1000 (3.93 = 3930) [ignored, ignored]
APE_INFO_COMPRESSION_LEVEL = 1001, // compression level of the APE file [ignored, ignored]
APE_INFO_FORMAT_FLAGS = 1002, // format flags of the APE file [ignored, ignored]
APE_INFO_SAMPLE_RATE = 1003, // sample rate (Hz) [ignored, ignored]
APE_INFO_BITS_PER_SAMPLE = 1004, // bits per sample [ignored, ignored]
APE_INFO_BYTES_PER_SAMPLE = 1005, // number of bytes per sample [ignored, ignored]
APE_INFO_CHANNELS = 1006, // channels [ignored, ignored]
APE_INFO_BLOCK_ALIGN = 1007, // block alignment [ignored, ignored]
APE_INFO_BLOCKS_PER_FRAME = 1008, // number of blocks in a frame (frames are used internally) [ignored, ignored]
APE_INFO_FINAL_FRAME_BLOCKS = 1009, // blocks in the final frame (frames are used internally) [ignored, ignored]
APE_INFO_TOTAL_FRAMES = 1010, // total number frames (frames are used internally) [ignored, ignored]
APE_INFO_WAV_HEADER_BYTES = 1011, // header bytes of the decompressed WAV [ignored, ignored]
APE_INFO_WAV_TERMINATING_BYTES = 1012, // terminating bytes of the decompressed WAV [ignored, ignored]
APE_INFO_WAV_DATA_BYTES = 1013, // data bytes of the decompressed WAV [ignored, ignored]
APE_INFO_WAV_TOTAL_BYTES = 1014, // total bytes of the decompressed WAV [ignored, ignored]
APE_INFO_APE_TOTAL_BYTES = 1015, // total bytes of the APE file [ignored, ignored]
APE_INFO_TOTAL_BLOCKS = 1016, // total blocks of audio data [ignored, ignored]
APE_INFO_LENGTH_MS = 1017, // length in ms (1 sec = 1000 ms) [ignored, ignored]
APE_INFO_AVERAGE_BITRATE = 1018, // average bitrate of the APE [ignored, ignored]
APE_INFO_FRAME_BITRATE = 1019, // bitrate of specified APE frame [frame index, ignored]
APE_INFO_DECOMPRESSED_BITRATE = 1020, // bitrate of the decompressed WAV [ignored, ignored]
APE_INFO_PEAK_LEVEL = 1021, // peak audio level (obsolete) (-1 is unknown) [ignored, ignored]
APE_INFO_SEEK_BIT = 1022, // bit offset [frame index, ignored]
APE_INFO_SEEK_BYTE = 1023, // byte offset [frame index, ignored]
APE_INFO_WAV_HEADER_DATA = 1024, // error code [buffer *, max bytes]
APE_INFO_WAV_TERMINATING_DATA = 1025, // error code [buffer *, max bytes]
APE_INFO_WAVEFORMATEX = 1026, // error code [waveformatex *, ignored]
APE_INFO_IO_SOURCE = 1027, // I/O source (CIO *) [ignored, ignored]
APE_INFO_FRAME_BYTES = 1028, // bytes (compressed) of the frame [frame index, ignored]
APE_INFO_FRAME_BLOCKS = 1029, // blocks in a given frame [frame index, ignored]
APE_INFO_TAG = 1030, // point to tag (CAPETag *) [ignored, ignored]
APE_DECOMPRESS_CURRENT_BLOCK = 2000, // current block location [ignored, ignored]
APE_DECOMPRESS_CURRENT_MS = 2001, // current millisecond location [ignored, ignored]
APE_DECOMPRESS_TOTAL_BLOCKS = 2002, // total blocks in the decompressors range [ignored, ignored]
APE_DECOMPRESS_LENGTH_MS = 2003, // total blocks in the decompressors range [ignored, ignored]
APE_DECOMPRESS_CURRENT_BITRATE = 2004, // current bitrate [ignored, ignored]
APE_DECOMPRESS_AVERAGE_BITRATE = 2005, // average bitrate (works with ranges) [ignored, ignored]
APE_INTERNAL_INFO = 3000 // for internal use -- don't use (returns APE_FILE_INFO *) [ignored, ignored]
};
/*************************************************************************************************
IAPEDecompress - interface for working with existing APE files (decoding, seeking, analyzing, etc.)
*************************************************************************************************/
class IAPEDecompress
{
public:
// destructor (needed so implementation's destructor will be called)
virtual ~IAPEDecompress() {}
/*********************************************************************************************
* Decompress / Seek
*********************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////
// GetData(...) - gets raw decompressed audio
//
// Parameters:
// char * pBuffer
// a pointer to a buffer to put the data into
// int nBlocks
// the number of audio blocks desired (see note at intro about blocks vs. samples)
// int * pBlocksRetrieved
// the number of blocks actually retrieved (could be less at end of file or on critical failure)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int GetData(char * pBuffer, int nBlocks, int * pBlocksRetrieved) = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// Seek(...) - seeks
//
// Parameters:
// int nBlockOffset
// the block to seek to (see note at intro about blocks vs. samples)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int Seek(int nBlockOffset) = 0;
/*********************************************************************************************
* Get Information
*********************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////
// GetInfo(...) - get information about the APE file or the state of the decompressor
//
// Parameters:
// APE_DECOMPRESS_FIELDS Field
// the field we're querying (see APE_DECOMPRESS_FIELDS above for more info)
// int nParam1
// generic parameter... usage is listed in APE_DECOMPRESS_FIELDS
// int nParam2
// generic parameter... usage is listed in APE_DECOMPRESS_FIELDS
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int GetInfo(APE_DECOMPRESS_FIELDS Field, int nParam1 = 0, int nParam2 = 0) = 0;
};
#if 0
/*************************************************************************************************
IAPECompress - interface for creating APE files
Usage:
To create an APE file, you Start(...), then add data (in a variety of ways), then Finish(...)
*************************************************************************************************/
class IAPECompress
{
public:
// destructor (needed so implementation's destructor will be called)
virtual ~IAPECompress() {}
/*********************************************************************************************
* Start
*********************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////
// Start(...) / StartEx(...) - starts encoding
//
// Parameters:
// CIO * pioOutput / const str_utf16 * pFilename
// the output... either a filename or an I/O source
// WAVEFORMATEX * pwfeInput
// format of the audio to encode (use FillWaveFormatEx() if necessary)
// int nMaxAudioBytes
// the absolute maximum audio bytes that will be encoded... encoding fails with a
// ERROR_APE_COMPRESS_TOO_MUCH_DATA if you attempt to encode more than specified here
// (if unknown, use MAX_AUDIO_BYTES_UNKNOWN to allocate as much storage in the seek table as
// possible... limit is then 2 GB of data (~4 hours of CD music)... this wastes around
// 30kb, so only do it if completely necessary)
// int nCompressionLevel
// the compression level for the APE file (fast - extra high)
// (note: extra-high is much slower for little gain)
// const void * pHeaderData
// a pointer to a buffer containing the WAV header (data before the data block in the WAV)
// (note: use NULL for on-the-fly encoding... see next parameter)
// int nHeaderBytes
// number of bytes in the header data buffer (use CREATE_WAV_HEADER_ON_DECOMPRESSION and
// NULL for the pHeaderData and MAC will automatically create the appropriate WAV header
// on decompression)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int Start(const char * pOutputFilename, const WAVEFORMATEX * pwfeInput,
int nMaxAudioBytes = MAX_AUDIO_BYTES_UNKNOWN, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL,
const void * pHeaderData = NULL, int nHeaderBytes = CREATE_WAV_HEADER_ON_DECOMPRESSION) = 0;
virtual int StartEx(CIO * pioOutput, const WAVEFORMATEX * pwfeInput,
int nMaxAudioBytes = MAX_AUDIO_BYTES_UNKNOWN, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL,
const void * pHeaderData = NULL, int nHeaderBytes = CREATE_WAV_HEADER_ON_DECOMPRESSION) = 0;
/*********************************************************************************************
* Add / Compress Data
* - there are 3 ways to add data:
* 1) simple call AddData(...)
* 2) lock MAC's buffer, copy into it, and unlock (LockBuffer(...) / UnlockBuffer(...))
* 3) from an I/O source (AddDataFromInputSource(...))
*********************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////
// AddData(...) - adds data to the encoder
//
// Parameters:
// unsigned char * pData
// a pointer to a buffer containing the raw audio data
// int nBytes
// the number of bytes in the buffer
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int AddData(unsigned char * pData, int nBytes) = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// GetBufferBytesAvailable(...) - returns the number of bytes available in the buffer
// (helpful when locking)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int GetBufferBytesAvailable() = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// LockBuffer(...) - locks MAC's buffer so we can copy into it
//
// Parameters:
// int * pBytesAvailable
// returns the number of bytes available in the buffer (DO NOT COPY MORE THAN THIS IN)
//
// Return:
// pointer to the buffer (add at that location)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual unsigned char * LockBuffer(int * pBytesAvailable) = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// UnlockBuffer(...) - releases the buffer
//
// Parameters:
// int nBytesAdded
// the number of bytes copied into the buffer
// BOOL bProcess
// whether MAC should process as much as possible of the buffer
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int UnlockBuffer(int nBytesAdded, BOOL bProcess = TRUE) = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// AddDataFromInputSource(...) - use a CInputSource (input source) to add data
//
// Parameters:
// CInputSource * pInputSource
// a pointer to the input source
// int nMaxBytes
// the maximum number of bytes to let MAC add (-1 if MAC can add any amount)
// int * pBytesAdded
// returns the number of bytes added from the I/O source
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int AddDataFromInputSource(CInputSource * pInputSource, int nMaxBytes = -1, int * pBytesAdded = NULL) = 0;
/*********************************************************************************************
* Finish / Kill
*********************************************************************************************/
//////////////////////////////////////////////////////////////////////////////////////////////
// Finish(...) - ends encoding and finalizes the file
//
// Parameters:
// unsigned char * pTerminatingData
// a pointer to a buffer containing the information to place at the end of the APE file
// (comprised of the WAV terminating data (data after the data block in the WAV) followed
// by any tag information)
// int nTerminatingBytes
// number of bytes in the terminating data buffer
// int nWAVTerminatingBytes
// the number of bytes of the terminating data buffer that should be appended to a decoded
// WAV file (it's basically nTerminatingBytes - the bytes that make up the tag)
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int Finish(unsigned char * pTerminatingData, int nTerminatingBytes, int nWAVTerminatingBytes) = 0;
//////////////////////////////////////////////////////////////////////////////////////////////
// Kill(...) - stops encoding and deletes the output file
// --- NOT CURRENTLY IMPLEMENTED ---
//////////////////////////////////////////////////////////////////////////////////////////////
virtual int Kill() = 0;
};
#endif
/*************************************************************************************************
Functions to create the interfaces
Usage:
Interface creation returns a NULL pointer on failure (and fills error code if it was passed in)
Usage example:
int nErrorCode;
IAPEDecompress * pAPEDecompress = CreateIAPEDecompress("c:\\1.ape", &nErrorCode);
if (pAPEDecompress == NULL)
{
// failure... nErrorCode will have specific code
}
*************************************************************************************************/
extern "C"
{
IAPEDecompress * __stdcall CreateIAPEDecompress(const char * pFilename, int * pErrorCode = NULL);
IAPEDecompress * __stdcall CreateIAPEDecompressEx(CIO * pIO, int * pErrorCode = NULL);
IAPEDecompress * __stdcall CreateIAPEDecompressEx2(CAPEInfo * pAPEInfo, int nStartBlock = -1, int nFinishBlock = -1, int * pErrorCode = NULL);
#if 0
IAPECompress * __stdcall CreateIAPECompress(int * pErrorCode = NULL);
#endif
}
/*************************************************************************************************
Simple functions - see the SDK sample projects for usage examples
*************************************************************************************************/
extern "C"
{
#if 0
// process whole files
DLLEXPORT int __stdcall CompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL, int * pPercentageDone = NULL, APE_PROGRESS_CALLBACK ProgressCallback = 0, int * pKillFlag = NULL);
DLLEXPORT int __stdcall DecompressFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
DLLEXPORT int __stdcall ConvertFile(const str_ansi * pInputFilename, const str_ansi * pOutputFilename, int nCompressionLevel, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
DLLEXPORT int __stdcall VerifyFile(const str_ansi * pInputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
DLLEXPORT int __stdcall CompressFileW(const str_utf16 * pInputFilename, const str_utf16 * pOutputFilename, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL, int * pPercentageDone = NULL, APE_PROGRESS_CALLBACK ProgressCallback = 0, int * pKillFlag = NULL);
DLLEXPORT int __stdcall DecompressFileW(const str_utf16 * pInputFilename, const str_utf16 * pOutputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
DLLEXPORT int __stdcall ConvertFileW(const str_utf16 * pInputFilename, const str_utf16 * pOutputFilename, int nCompressionLevel, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag);
DLLEXPORT int __stdcall VerifyFileW(const str_utf16 * pInputFilename, int * pPercentageDone, APE_PROGRESS_CALLBACK ProgressCallback, int * pKillFlag, BOOL bQuickVerifyIfPossible = FALSE);
DLLEXPORT int __stdcall CompressFileW2(const str_utf16 * pInputFilename, const str_utf16 * pOutputFilename, int nCompressionLevel = COMPRESSION_LEVEL_NORMAL, IAPEProgressCallback * pProgressCallback = NULL);
DLLEXPORT int __stdcall DecompressFileW2(const str_utf16 * pInputFilename, const str_utf16 * pOutputFilename, IAPEProgressCallback * pProgressCallback = NULL);
DLLEXPORT int __stdcall ConvertFileW2(const char * pInputFilename, const char * pOutputFilename, int nCompressionLevel, IAPEProgressCallback * pProgressCallback = NULL);
DLLEXPORT int __stdcall VerifyFileW2(const str_utf16 * pInputFilename, IAPEProgressCallback * pProgressCallback = NULL, BOOL bQuickVerifyIfPossible = FALSE);
#endif
// helper functions
DLLEXPORT int __stdcall FillWaveFormatEx(WAVEFORMATEX * pWaveFormatEx, int nSampleRate = 44100, int nBitsPerSample = 16, int nChannels = 2);
DLLEXPORT int __stdcall FillWaveHeader(WAVE_HEADER * pWAVHeader, int nAudioBytes, WAVEFORMATEX * pWaveFormatEx, int nTerminatingBytes = 0);
}
#endif // #ifndef APE_MACLIB_H
| [
"[email protected]"
]
| |
2a23d3660161a3bea73de9b0ac7f2d3f49a0a082 | f371a1e57b354cc1b985dbfc17f057c186d9f7a0 | /acmicpc.net/source/14709.cpp | bb461d4c9d7292442f2e322630a8f1593121086b | [
"MIT"
]
| permissive | tdm1223/Algorithm | 7ea3d79eaa7244a1cfe8a420e25d89b783465e8f | c773ab0338e5a606ad0fc7d8989b0ee7cc1bf3fa | refs/heads/master | 2022-11-14T01:34:08.955376 | 2022-10-30T11:00:54 | 2022-10-30T11:00:54 | 143,304,153 | 8 | 9 | null | 2019-08-06T02:41:24 | 2018-08-02T14:16:00 | C++ | UTF-8 | C++ | false | false | 1,129 | cpp | // 14709. 여우 사인
// 2020.07.03
// 구현
#include<iostream>
#include<algorithm>
using namespace std;
int finger[6];
int main()
{
int n;
cin >> n;
for (int i = 1; i <= 5; i++)
{
finger[i] = i;
}
bool flag = true;
int ans = 0;
for (int i = 0; i < n; i++)
{
int a, b;
cin >> a >> b;
if (a > b)
{
swap(a, b);
}
if (a == 1 && b == 3)
{
ans++;
}
else if (a == 3 && b == 4)
{
ans++;
}
else if (a == 1 && b == 4)
{
ans++;
}
else if ((a == 1 && b == 2) || (a == 1 && b == 5))
{
flag = false;
}
else if ((a == 2 && b == 3) || (a == 3 && b == 5))
{
flag = false;
}
else if ((a == 2 && b == 4) || (a == 4 && b == 5))
{
flag = false;
}
}
if (ans == 3 && flag)
{
cout << "Wa-pa-pa-pa-pa-pa-pow!" << endl;
}
else
{
cout << "Woof-meow-tweet-squeek" << endl;
}
return 0;
}
| [
"[email protected]"
]
| |
d304909f08ed164421d1fdaf1135fd066cf4e1b8 | a1ed43533a99c3771501652264cb524ec177fa87 | /tests/DeferredDisplayListTest.cpp | 697f00328f7c81453395ab8800c15f79a76cf7c6 | [
"BSD-3-Clause"
]
| permissive | finddit/skia | bf21f99418cfaa005cd2963efa251a9587c99f5c | 7454cbdd159689e52909f6313d10f66846d89ac3 | refs/heads/master | 2020-03-21T10:35:51.847287 | 2018-06-22T19:53:02 | 2018-06-23T02:30:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,226 | cpp | /*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "SkTypes.h"
#include "GrBackendSurface.h"
#include "GrCaps.h"
#include "GrContext.h"
#include "GrContextFactory.h"
#include "GrContextPriv.h"
#include "GrGpu.h"
#include "GrRenderTargetContext.h"
#include "GrRenderTargetProxy.h"
#include "GrTextureProxy.h"
#include "GrTextureProxyPriv.h"
#include "GrTypes.h"
#include "GrTypesPriv.h"
#include "SkBitmap.h"
#include "SkCanvas.h"
#include "SkColorSpace.h"
#include "SkDeferredDisplayList.h"
#include "SkDeferredDisplayListRecorder.h"
#include "SkGpuDevice.h"
#include "SkImage.h"
#include "SkImageInfo.h"
#include "SkImage_Gpu.h"
#include "SkPaint.h"
#include "SkRect.h"
#include "SkRefCnt.h"
#include "SkSurface.h"
#include "SkSurfaceCharacterization.h"
#include "SkSurfaceProps.h"
#include "SkSurface_Gpu.h"
#include "Test.h"
#include "gl/GrGLCaps.h"
#include "gl/GrGLDefines.h"
#include "gl/GrGLTypes.h"
#ifdef SK_VULKAN
#include "vk/GrVkDefines.h"
#endif
#include <initializer_list>
#include <memory>
#include <utility>
// Try to create a backend format from the provided colorType and config. Return an invalid
// backend format if the combination is infeasible.
static GrBackendFormat create_backend_format(GrContext* context,
SkColorType ct, SkColorSpace* cs,
GrPixelConfig config) {
const GrCaps* caps = context->contextPriv().caps();
// TODO: what should be done if we have a colorspace that doesn't have a gammaCloseToSRGB?
switch (context->contextPriv().getBackend()) {
case kOpenGL_GrBackend: {
const GrGLCaps* glCaps = static_cast<const GrGLCaps*>(caps);
GrGLStandard standard = glCaps->standard();
switch (ct) {
case kUnknown_SkColorType:
return GrBackendFormat();
case kAlpha_8_SkColorType:
if (kAlpha_8_as_Alpha_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_ALPHA8, GR_GL_TEXTURE_2D);
} else if (kAlpha_8_GrPixelConfig == config ||
kAlpha_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_R8, GR_GL_TEXTURE_2D);
}
break;
case kRGB_565_SkColorType:
if (kRGB_565_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_RGB565, GR_GL_TEXTURE_2D);
}
break;
case kARGB_4444_SkColorType:
if (kRGBA_4444_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_RGBA4, GR_GL_TEXTURE_2D);
}
break;
case kRGBA_8888_SkColorType:
if (kRGBA_8888_GrPixelConfig == config) {
if (!cs || (cs->gammaCloseToSRGB() && !caps->srgbSupport())) {
return GrBackendFormat::MakeGL(GR_GL_RGBA8, GR_GL_TEXTURE_2D);
}
} else if (kSRGBA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeGL(GR_GL_SRGB8_ALPHA8, GR_GL_TEXTURE_2D);
}
}
break;
case kRGB_888x_SkColorType:
if (kRGB_888_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_RGB8, GR_GL_TEXTURE_2D);
}
break;
case kBGRA_8888_SkColorType:
if (kBGRA_8888_GrPixelConfig == config) {
if (kGL_GrGLStandard == standard) {
return GrBackendFormat::MakeGL(GR_GL_RGBA8, GR_GL_TEXTURE_2D);
} else if (kGLES_GrGLStandard == standard) {
return GrBackendFormat::MakeGL(GR_GL_BGRA8, GR_GL_TEXTURE_2D);
}
} else if (kSBGRA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeGL(GR_GL_SRGB8_ALPHA8, GR_GL_TEXTURE_2D);
}
}
break;
case kRGBA_1010102_SkColorType:
if (kRGBA_1010102_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_RGB10_A2, GR_GL_TEXTURE_2D);
}
break;
case kRGB_101010x_SkColorType:
return GrBackendFormat();
case kGray_8_SkColorType:
if (kGray_8_as_Lum_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_LUMINANCE8, GR_GL_TEXTURE_2D);
} else if (kGray_8_GrPixelConfig == config ||
kGray_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_R8, GR_GL_TEXTURE_2D);
}
break;
case kRGBA_F16_SkColorType:
if (kRGBA_half_GrPixelConfig == config) {
return GrBackendFormat::MakeGL(GR_GL_RGBA16F, GR_GL_TEXTURE_2D);
}
break;
}
}
break;
#ifdef SK_VULKAN
case kVulkan_GrBackend:
switch (ct) {
case kUnknown_SkColorType:
return GrBackendFormat();
case kAlpha_8_SkColorType:
// TODO: what about kAlpha_8_GrPixelConfig and kAlpha_8_as_Alpha_GrPixelConfig
if (kAlpha_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_R8_UNORM);
}
break;
case kRGB_565_SkColorType:
if (kRGB_565_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_R5G6B5_UNORM_PACK16);
}
break;
case kARGB_4444_SkColorType:
if (kRGBA_4444_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_B4G4R4A4_UNORM_PACK16);
}
break;
case kRGBA_8888_SkColorType:
if (kRGBA_8888_GrPixelConfig == config) {
if (!cs || (cs->gammaCloseToSRGB() && !caps->srgbSupport())) {
return GrBackendFormat::MakeVk(VK_FORMAT_R8G8B8A8_UNORM);
}
} else if (kSRGBA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeVk(VK_FORMAT_R8G8B8A8_SRGB);
}
}
break;
case kRGB_888x_SkColorType:
if (kRGB_888_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_R8G8B8_UNORM);
}
break;
case kBGRA_8888_SkColorType:
if (kBGRA_8888_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_B8G8R8A8_UNORM);
} else if (kSBGRA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeVk(VK_FORMAT_B8G8R8A8_SRGB);
}
}
break;
case kRGBA_1010102_SkColorType:
if (kRGBA_1010102_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_A2B10G10R10_UNORM_PACK32);
}
break;
case kRGB_101010x_SkColorType:
return GrBackendFormat();
case kGray_8_SkColorType:
// TODO: what about kAlpha_8_GrPixelConfig and kGray_8_as_Lum_GrPixelConfig?
if (kGray_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_R8_UNORM);
}
break;
case kRGBA_F16_SkColorType:
if (kRGBA_half_GrPixelConfig == config) {
return GrBackendFormat::MakeVk(VK_FORMAT_R16G16B16A16_SFLOAT);
}
break;
}
break;
#endif
case kMock_GrBackend:
switch (ct) {
case kUnknown_SkColorType:
return GrBackendFormat();
case kAlpha_8_SkColorType:
if (kAlpha_8_GrPixelConfig == config ||
kAlpha_8_as_Alpha_GrPixelConfig == config ||
kAlpha_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kRGB_565_SkColorType:
if (kRGB_565_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kARGB_4444_SkColorType:
if (kRGBA_4444_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kRGBA_8888_SkColorType:
if (kRGBA_8888_GrPixelConfig == config) {
if (!cs || (cs->gammaCloseToSRGB() && !caps->srgbSupport())) {
return GrBackendFormat::MakeMock(config);
}
} else if (kSRGBA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeMock(config);
}
}
break;
case kRGB_888x_SkColorType:
if (kRGB_888_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kBGRA_8888_SkColorType:
if (kBGRA_8888_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
} else if (kSBGRA_8888_GrPixelConfig == config) {
if (caps->srgbSupport() && cs && cs->gammaCloseToSRGB()) {
return GrBackendFormat::MakeMock(config);
}
}
break;
case kRGBA_1010102_SkColorType:
if (kRGBA_1010102_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kRGB_101010x_SkColorType:
return GrBackendFormat();
case kGray_8_SkColorType:
if (kGray_8_GrPixelConfig == config ||
kGray_8_as_Lum_GrPixelConfig == config ||
kGray_8_as_Red_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
case kRGBA_F16_SkColorType:
if (kRGBA_half_GrPixelConfig == config) {
return GrBackendFormat::MakeMock(config);
}
break;
}
break;
default:
return GrBackendFormat(); // return an invalid format
}
return GrBackendFormat(); // return an invalid format
}
class SurfaceParameters {
public:
static const int kNumParams = 9;
static const int kSampleCount = 5;
static const int kMipMipCount = 8;
SurfaceParameters(const GrCaps* caps)
: fWidth(64)
, fHeight(64)
, fOrigin(kTopLeft_GrSurfaceOrigin)
, fColorType(kRGBA_8888_SkColorType)
, fConfig(caps->srgbSupport() ? kSRGBA_8888_GrPixelConfig : kRGBA_8888_GrPixelConfig)
, fColorSpace(SkColorSpace::MakeSRGB())
, fSampleCount(1)
, fSurfaceProps(0x0, kUnknown_SkPixelGeometry)
, fShouldCreateMipMaps(true) {
}
int sampleCount() const { return fSampleCount; }
void setColorType(SkColorType ct) { fColorType = ct; }
void setColorSpace(sk_sp<SkColorSpace> cs) { fColorSpace = std::move(cs); }
void setConfig(GrPixelConfig config) { fConfig = config; }
// Modify the SurfaceParameters in just one way
void modify(int i) {
switch (i) {
case 0:
fWidth = 63;
break;
case 1:
fHeight = 63;
break;
case 2:
fOrigin = kBottomLeft_GrSurfaceOrigin;
break;
case 3:
// The color type and config need to be changed together.
// The original SRGB color space no longer makes sense for F16
fColorType = kRGBA_F16_SkColorType;
fConfig = kRGBA_half_GrPixelConfig;
fColorSpace = SkColorSpace::MakeSRGBLinear();
break;
case 4:
// This just needs to be a colorSpace different from that returned by MakeSRGB()
// but still be considered SRGB. In this case we just change the gamut.
fColorSpace = SkColorSpace::MakeRGB(SkColorSpace::kSRGB_RenderTargetGamma,
SkColorSpace::kAdobeRGB_Gamut);
break;
case kSampleCount:
fSampleCount = 4;
break;
case 6:
fSurfaceProps = SkSurfaceProps(0x0, kRGB_H_SkPixelGeometry);
break;
case 7:
fSurfaceProps = SkSurfaceProps(SkSurfaceProps::kUseDeviceIndependentFonts_Flag,
kUnknown_SkPixelGeometry);
break;
case 8:
fShouldCreateMipMaps = false;
break;
}
}
SkSurfaceCharacterization createCharacterization(GrContext* context) const {
int maxResourceCount;
size_t maxResourceBytes;
context->getResourceCacheLimits(&maxResourceCount, &maxResourceBytes);
// Note that Ganesh doesn't make use of the SkImageInfo's alphaType
SkImageInfo ii = SkImageInfo::Make(fWidth, fHeight, fColorType,
kPremul_SkAlphaType, fColorSpace);
GrBackendFormat backendFormat = create_backend_format(context, fColorType,
fColorSpace.get(), fConfig);
if (!backendFormat.isValid()) {
return SkSurfaceCharacterization();
}
SkSurfaceCharacterization c = context->threadSafeProxy()->createCharacterization(
maxResourceBytes, ii, backendFormat, fSampleCount,
fOrigin, fSurfaceProps, fShouldCreateMipMaps);
return c;
}
// Create a DDL whose characterization captures the current settings
std::unique_ptr<SkDeferredDisplayList> createDDL(GrContext* context) const {
SkSurfaceCharacterization c = this->createCharacterization(context);
SkAssertResult(c.isValid());
SkDeferredDisplayListRecorder r(c);
SkCanvas* canvas = r.getCanvas();
if (!canvas) {
return nullptr;
}
canvas->drawRect(SkRect::MakeXYWH(10, 10, 10, 10), SkPaint());
return r.detach();
}
// Create the surface with the current set of parameters
sk_sp<SkSurface> make(GrContext* context, GrBackendTexture* backend,
bool nonTextureable) const {
GrGpu* gpu = context->contextPriv().getGpu();
GrMipMapped mipmapped = nonTextureable
? GrMipMapped::kNo
: GrMipMapped(fShouldCreateMipMaps);
*backend = gpu->createTestingOnlyBackendTexture(nullptr, fWidth, fHeight,
fConfig, true, mipmapped);
if (!backend->isValid() || !gpu->isTestingOnlyBackendTexture(*backend)) {
return nullptr;
}
sk_sp<SkSurface> surface;
if (nonTextureable) {
// Create a surface w/ the current parameters but make it non-textureable
surface = SkSurface::MakeFromBackendTextureAsRenderTarget(
context, *backend, fOrigin, fSampleCount, fColorType,
fColorSpace, &fSurfaceProps);
} else {
surface = SkSurface::MakeFromBackendTexture(
context, *backend, fOrigin, fSampleCount, fColorType,
fColorSpace, &fSurfaceProps);
}
if (!surface) {
gpu->deleteTestingOnlyBackendTexture(*backend);
return nullptr;
}
return surface;
}
void cleanUpBackEnd(GrContext* context, const GrBackendTexture& backend) const {
GrGpu* gpu = context->contextPriv().getGpu();
gpu->deleteTestingOnlyBackendTexture(backend);
}
private:
int fWidth;
int fHeight;
GrSurfaceOrigin fOrigin;
SkColorType fColorType;
GrPixelConfig fConfig;
sk_sp<SkColorSpace> fColorSpace;
int fSampleCount;
SkSurfaceProps fSurfaceProps;
bool fShouldCreateMipMaps;
};
// Test out operator== && operator!=
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLOperatorEqTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
for (int i = 0; i < SurfaceParameters::kNumParams; ++i) {
SurfaceParameters params1(context->contextPriv().caps());
params1.modify(i);
SkSurfaceCharacterization char1 = params1.createCharacterization(context);
if (!char1.isValid()) {
continue; // can happen on some platforms (ChromeOS)
}
for (int j = 0; j < SurfaceParameters::kNumParams; ++j) {
SurfaceParameters params2(context->contextPriv().caps());
params2.modify(j);
SkSurfaceCharacterization char2 = params2.createCharacterization(context);
if (!char2.isValid()) {
continue; // can happen on some platforms (ChromeOS)
}
if (i == j) {
REPORTER_ASSERT(reporter, char1 == char2);
} else {
REPORTER_ASSERT(reporter, char1 != char2);
}
}
}
{
SurfaceParameters params(context->contextPriv().caps());
SkSurfaceCharacterization valid = params.createCharacterization(context);
SkASSERT(valid.isValid());
SkSurfaceCharacterization inval1, inval2;
SkASSERT(!inval1.isValid() && !inval2.isValid());
REPORTER_ASSERT(reporter, inval1 != inval2);
REPORTER_ASSERT(reporter, valid != inval1);
REPORTER_ASSERT(reporter, inval1 != valid);
}
}
////////////////////////////////////////////////////////////////////////////////
// This tests SkSurfaceCharacterization/SkSurface compatibility
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLSurfaceCharacterizationTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
GrGpu* gpu = context->contextPriv().getGpu();
// Create a bitmap that we can readback into
SkImageInfo imageInfo = SkImageInfo::Make(64, 64, kRGBA_8888_SkColorType,
kPremul_SkAlphaType);
SkBitmap bitmap;
bitmap.allocPixels(imageInfo);
std::unique_ptr<SkDeferredDisplayList> ddl;
// First, create a DDL using the stock SkSurface parameters
{
SurfaceParameters params(context->contextPriv().caps());
ddl = params.createDDL(context);
SkAssertResult(ddl);
// The DDL should draw into an SkSurface created with the same parameters
GrBackendTexture backend;
sk_sp<SkSurface> s = params.make(context, &backend, false);
if (!s) {
return;
}
REPORTER_ASSERT(reporter, s->draw(ddl.get()));
s->readPixels(imageInfo, bitmap.getPixels(), bitmap.rowBytes(), 0, 0);
context->flush();
gpu->testingOnly_flushGpuAndSync();
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
// Then, alter each parameter in turn and check that the DDL & surface are incompatible
for (int i = 0; i < SurfaceParameters::kNumParams; ++i) {
SurfaceParameters params(context->contextPriv().caps());
params.modify(i);
GrBackendTexture backend;
sk_sp<SkSurface> s = params.make(context, &backend, false);
if (!s) {
continue;
}
if (SurfaceParameters::kSampleCount == i) {
SkSurface_Gpu* gpuSurf = static_cast<SkSurface_Gpu*>(s.get());
int supportedSampleCount = context->contextPriv().caps()->getRenderTargetSampleCount(
params.sampleCount(),
gpuSurf->getDevice()
->accessRenderTargetContext()
->asRenderTargetProxy()
->config());
if (1 == supportedSampleCount) {
// If changing the sample count won't result in a different
// surface characterization, skip this step
s = nullptr;
params.cleanUpBackEnd(context, backend);
continue;
}
}
if (SurfaceParameters::kMipMipCount == i &&
!context->contextPriv().caps()->mipMapSupport()) {
// If changing the mipmap setting won't result in a different surface characterization,
// skip this step
s = nullptr;
params.cleanUpBackEnd(context, backend);
continue;
}
REPORTER_ASSERT(reporter, !s->draw(ddl.get()),
"DDLSurfaceCharacterizationTest failed on parameter: %d\n", i);
context->flush();
gpu->testingOnly_flushGpuAndSync();
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
// Next test the compatibility of resource cache parameters
{
const SurfaceParameters params(context->contextPriv().caps());
GrBackendTexture backend;
sk_sp<SkSurface> s = params.make(context, &backend, false);
int maxResourceCount;
size_t maxResourceBytes;
context->getResourceCacheLimits(&maxResourceCount, &maxResourceBytes);
context->setResourceCacheLimits(maxResourceCount, maxResourceBytes/2);
REPORTER_ASSERT(reporter, !s->draw(ddl.get()));
// DDL TODO: once proxies/ops can be de-instantiated we can re-enable these tests.
// For now, DDLs are drawn once.
#if 0
// resource limits >= those at characterization time are accepted
context->setResourceCacheLimits(2*maxResourceCount, maxResourceBytes);
REPORTER_ASSERT(reporter, s->draw(ddl.get()));
s->readPixels(imageInfo, bitmap.getPixels(), bitmap.rowBytes(), 0, 0);
context->setResourceCacheLimits(maxResourceCount, 2*maxResourceBytes);
REPORTER_ASSERT(reporter, s->draw(ddl.get()));
s->readPixels(imageInfo, bitmap.getPixels(), bitmap.rowBytes(), 0, 0);
context->setResourceCacheLimits(maxResourceCount, maxResourceBytes);
REPORTER_ASSERT(reporter, s->draw(ddl.get()));
s->readPixels(imageInfo, bitmap.getPixels(), bitmap.rowBytes(), 0, 0);
#endif
context->flush();
gpu->testingOnly_flushGpuAndSync();
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
// Test that the textureability of the DDL characterization can block a DDL draw
{
GrBackendTexture backend;
const SurfaceParameters params(context->contextPriv().caps());
sk_sp<SkSurface> s = params.make(context, &backend, true);
if (s) {
REPORTER_ASSERT(reporter, !s->draw(ddl.get()));
context->flush();
gpu->testingOnly_flushGpuAndSync();
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
}
// Make sure non-GPU-backed surfaces fail characterization
{
SkImageInfo ii = SkImageInfo::MakeN32(64, 64, kOpaque_SkAlphaType);
sk_sp<SkSurface> rasterSurface = SkSurface::MakeRaster(ii);
SkSurfaceCharacterization c;
REPORTER_ASSERT(reporter, !rasterSurface->characterize(&c));
}
// Exercise the createResized method
{
SurfaceParameters params(context->contextPriv().caps());
GrBackendTexture backend;
sk_sp<SkSurface> s = params.make(context, &backend, false);
if (!s) {
return;
}
SkSurfaceCharacterization char0;
SkAssertResult(s->characterize(&char0));
// Too small
SkSurfaceCharacterization char1 = char0.createResized(-1, -1);
REPORTER_ASSERT(reporter, !char1.isValid());
// Too large
SkSurfaceCharacterization char2 = char0.createResized(1000000, 32);
REPORTER_ASSERT(reporter, !char2.isValid());
// Just right
SkSurfaceCharacterization char3 = char0.createResized(32, 32);
REPORTER_ASSERT(reporter, char3.isValid());
REPORTER_ASSERT(reporter, 32 == char3.width());
REPORTER_ASSERT(reporter, 32 == char3.height());
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
}
////////////////////////////////////////////////////////////////////////////////
// This tests the SkSurface::MakeRenderTarget variant that takes an SkSurfaceCharacterization.
// In particular, the SkSurface and the SkSurfaceCharacterization should always be compatible.
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLMakeRenderTargetTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
for (int i = 0; i < SurfaceParameters::kNumParams; ++i) {
SurfaceParameters params(context->contextPriv().caps());
params.modify(i);
SkSurfaceCharacterization c = params.createCharacterization(context);
GrBackendTexture backend;
if (!c.isValid()) {
sk_sp<SkSurface> tmp = params.make(context, &backend, false);
// If we couldn't characterize the surface we shouldn't be able to create it either
REPORTER_ASSERT(reporter, !tmp);
if (tmp) {
tmp = nullptr;
params.cleanUpBackEnd(context, backend);
}
continue;
}
sk_sp<SkSurface> s = params.make(context, &backend, false);
if (!s) {
REPORTER_ASSERT(reporter, !c.isValid());
continue;
}
REPORTER_ASSERT(reporter, c.isValid());
s = SkSurface::MakeRenderTarget(context, c, SkBudgeted::kYes);
REPORTER_ASSERT(reporter, s);
SkSurface_Gpu* g = static_cast<SkSurface_Gpu*>(s.get());
REPORTER_ASSERT(reporter, g->isCompatible(c));
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
}
////////////////////////////////////////////////////////////////////////////////
static constexpr int kSize = 8;
struct TextureReleaseChecker {
TextureReleaseChecker() : fReleaseCount(0) {}
int fReleaseCount;
static void Release(void* self) {
static_cast<TextureReleaseChecker*>(self)->fReleaseCount++;
}
};
enum class DDLStage { kMakeImage, kDrawImage, kDetach, kDrawDDL };
// This tests the ability to create and use wrapped textures in a DDL world
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLWrapBackendTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
GrGpu* gpu = context->contextPriv().getGpu();
GrBackendTexture backendTex = gpu->createTestingOnlyBackendTexture(
nullptr, kSize, kSize, kRGBA_8888_GrPixelConfig, false, GrMipMapped::kNo);
if (!backendTex.isValid()) {
return;
}
SurfaceParameters params(context->contextPriv().caps());
GrBackendTexture backend;
sk_sp<SkSurface> s = params.make(context, &backend, false);
if (!s) {
gpu->deleteTestingOnlyBackendTexture(backendTex);
return;
}
SkSurfaceCharacterization c;
SkAssertResult(s->characterize(&c));
std::unique_ptr<SkDeferredDisplayListRecorder> recorder(new SkDeferredDisplayListRecorder(c));
SkCanvas* canvas = recorder->getCanvas();
if (!canvas) {
s = nullptr;
params.cleanUpBackEnd(context, backend);
gpu->deleteTestingOnlyBackendTexture(backendTex);
return;
}
GrContext* deferredContext = canvas->getGrContext();
if (!deferredContext) {
s = nullptr;
params.cleanUpBackEnd(context, backend);
gpu->deleteTestingOnlyBackendTexture(backendTex);
return;
}
// Wrapped Backend Textures are not supported in DDL
sk_sp<SkImage> image =
SkImage::MakeFromAdoptedTexture(deferredContext, backendTex, kTopLeft_GrSurfaceOrigin,
kRGBA_8888_SkColorType, kPremul_SkAlphaType, nullptr);
REPORTER_ASSERT(reporter, !image);
TextureReleaseChecker releaseChecker;
image = SkImage::MakeFromTexture(deferredContext, backendTex, kTopLeft_GrSurfaceOrigin,
kRGBA_8888_SkColorType, kPremul_SkAlphaType, nullptr,
TextureReleaseChecker::Release, &releaseChecker);
REPORTER_ASSERT(reporter, !image);
gpu->deleteTestingOnlyBackendTexture(backendTex);
s = nullptr;
params.cleanUpBackEnd(context, backend);
}
static void dummy_fulfill_proc(void*, GrBackendTexture*) { SkASSERT(0); }
static void dummy_release_proc(void*) { SkASSERT(0); }
static void dummy_done_proc(void*) { }
////////////////////////////////////////////////////////////////////////////////
// Test out the behavior of an invalid DDLRecorder
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLInvalidRecorder, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
{
SkImageInfo ii = SkImageInfo::MakeN32Premul(32, 32);
sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, ii);
SkSurfaceCharacterization characterization;
SkAssertResult(s->characterize(&characterization));
// never calling getCanvas means the backing surface is never allocated
SkDeferredDisplayListRecorder recorder(characterization);
}
{
SkSurfaceCharacterization invalid;
SkDeferredDisplayListRecorder recorder(invalid);
const SkSurfaceCharacterization c = recorder.characterization();
REPORTER_ASSERT(reporter, !c.isValid());
REPORTER_ASSERT(reporter, !recorder.getCanvas());
REPORTER_ASSERT(reporter, !recorder.detach());
GrBackendFormat format = create_backend_format(context, kRGBA_8888_SkColorType,
nullptr, kRGBA_8888_GrPixelConfig);
sk_sp<SkImage> image = recorder.makePromiseTexture(format, 32, 32, GrMipMapped::kNo,
kTopLeft_GrSurfaceOrigin,
kRGBA_8888_SkColorType,
kPremul_SkAlphaType, nullptr,
dummy_fulfill_proc,
dummy_release_proc,
dummy_done_proc,
nullptr);
REPORTER_ASSERT(reporter, !image);
}
}
////////////////////////////////////////////////////////////////////////////////
// Ensure that flushing while DDL recording doesn't cause a crash
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DDLFlushWhileRecording, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
SkImageInfo ii = SkImageInfo::MakeN32Premul(32, 32);
sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, ii);
SkSurfaceCharacterization characterization;
SkAssertResult(s->characterize(&characterization));
SkDeferredDisplayListRecorder recorder(characterization);
SkCanvas* canvas = recorder.getCanvas();
canvas->flush();
canvas->getGrContext()->flush();
}
////////////////////////////////////////////////////////////////////////////////
// Check that the texture-specific flags (i.e., for external & rectangle textures) work
// for promise images. As such, this is a GL-only test.
DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(DDLTextureFlagsTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
SkImageInfo ii = SkImageInfo::MakeN32Premul(32, 32);
sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, ii);
SkSurfaceCharacterization characterization;
SkAssertResult(s->characterize(&characterization));
SkDeferredDisplayListRecorder recorder(characterization);
for (GrGLenum target : { GR_GL_TEXTURE_EXTERNAL, GR_GL_TEXTURE_RECTANGLE, GR_GL_TEXTURE_2D } ) {
for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
GrBackendFormat format = GrBackendFormat::MakeGL(GR_GL_RGBA8, target);
sk_sp<SkImage> image = recorder.makePromiseTexture(format, 32, 32, mipMapped,
kTopLeft_GrSurfaceOrigin,
kRGBA_8888_SkColorType,
kPremul_SkAlphaType, nullptr,
dummy_fulfill_proc,
dummy_release_proc,
dummy_done_proc,
nullptr);
if (GR_GL_TEXTURE_2D != target && mipMapped == GrMipMapped::kYes) {
REPORTER_ASSERT(reporter, !image);
continue;
}
REPORTER_ASSERT(reporter, image);
GrTextureProxy* backingProxy = ((SkImage_Gpu*) image.get())->peekProxy();
REPORTER_ASSERT(reporter, backingProxy->mipMapped() == mipMapped);
if (GR_GL_TEXTURE_2D == target) {
REPORTER_ASSERT(reporter, !backingProxy->texPriv().isClampOnly());
} else {
REPORTER_ASSERT(reporter, backingProxy->texPriv().isClampOnly());
}
}
}
}
////////////////////////////////////////////////////////////////////////////////
// Exhaustively test colorType and pixelConfig compatibility.
DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(DDLCompatibilityTest, reporter, ctxInfo) {
GrContext* context = ctxInfo.grContext();
for (int ct = 0; ct <= kLastEnum_SkColorType; ++ct) {
SkColorType colorType = static_cast<SkColorType>(ct);
for (int config = 0; config < kGrPixelConfigCnt; ++config) {
GrPixelConfig pixelConfig = static_cast<GrPixelConfig>(config);
SurfaceParameters params(context->contextPriv().caps());
params.setColorType(colorType);
params.setConfig(pixelConfig);
params.setColorSpace(nullptr);
if (kSRGBA_8888_GrPixelConfig == pixelConfig ||
kSBGRA_8888_GrPixelConfig == pixelConfig) {
params.setColorSpace(SkColorSpace::MakeSRGB());
}
SkSurfaceCharacterization c = params.createCharacterization(context);
GrBackendTexture backend;
if (!c.isValid()) {
// TODO: this would be cool to enable but there is, currently, too much crossover
// allowed internally (e.g., kAlpha_8_SkColorType/kGray_8_as_Red_GrPixelConfig
// is permitted on GL).
#if 0
sk_sp<SkSurface> tmp = params.make(context, &backend, false);
// If we couldn't characterize the surface we shouldn't be able to create it either
REPORTER_ASSERT(reporter, !tmp);
if (tmp) {
tmp = nullptr;
params.cleanUpBackEnd(context, backend);
}
#endif
continue;
}
sk_sp<SkSurface> s = params.make(context, &backend, false);
REPORTER_ASSERT(reporter, s);
if (!s) {
s = nullptr;
params.cleanUpBackEnd(context, backend);
continue;
}
SkSurface_Gpu* gpuSurface = static_cast<SkSurface_Gpu*>(s.get());
REPORTER_ASSERT(reporter, gpuSurface->isCompatible(c));
s = nullptr;
params.cleanUpBackEnd(context, backend);
s = SkSurface::MakeRenderTarget(context, c, SkBudgeted::kYes);
REPORTER_ASSERT(reporter, s);
if (!s) {
continue;
}
gpuSurface = static_cast<SkSurface_Gpu*>(s.get());
REPORTER_ASSERT(reporter, gpuSurface->isCompatible(c));
}
}
}
| [
"[email protected]"
]
| |
d7a86c287462f830ff4f635a4e1bcb04648e25f6 | 9cfb1c6a5a91bb84a1b9d9423fe1247ee1f905d9 | /prime_matrix.cpp | 3563c668acc174d530d9d0fc4a2641e4c16e51c9 | []
| no_license | dawdler/Algorithmic-Coding | 2deac7b1391e93aca8e69e8e9c17e572248cfcee | 5946b2039686aea49c797481de466cecf5a34875 | refs/heads/master | 2021-01-19T11:35:05.225326 | 2014-03-04T20:27:55 | 2014-03-04T20:27:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,761 | cpp | #include<iostream>
#include<vector>
#include<cmath>
#define MAX 100001
#define MAX1 501
using namespace std;
bool sieve[MAX];
vector<int>primecol;
void gensieve()
{
long i,j;
sieve[0]=sieve[1]=true;
for(i=4;i<MAX;i+=2) sieve[i]=true;
for(i=2;i<=sqrt(MAX);++i) {
if(!sieve[i]) {
for(j=i+i;j<=MAX;j+=i)
sieve[j]=true;
}
}
j=-1;
for(i=2;i<MAX;++i) {
if(!sieve[i])
primecol.push_back(i);
}
}
int main()
{
int m,n;
int min1=999999,min2=999999;
gensieve();
int arr[MAX1][MAX1];
for(int i=0;i<MAX1;++i) {
for(int j=0;j<MAX1;++j) {
arr[i][j]=0;
}
}
cin>>n>>m;
for(int i=0;i<n;++i) {//receive the data
for(int j=0;j<m;++j) {
cin>>arr[i][j];
}
}
int a;
int moves;
for(int i=0;i<n;++i) {
a=0;
moves=0;
for(int j=0;j<m;++j) {
if(sieve[arr[i][j]]) { //if it's nt prime
cout<<"this is nt prime"<<arr[i][j]<<endl;
while(1) {
if(primecol[a]>arr[i][j]) {
moves+=primecol[a]-arr[i][j]; break;
}
++a;
}
}
}
if(moves<min1) min1=moves;
}
int moves1;
for(int i=0;i<n;++i) {
a=0;
moves1=0;
for(int j=0;j<m;++j) {
if(sieve[arr[j][i]]) { //if it's nt prime
cout<<"this is nt prime"<<arr[j][i]<<endl;
while(1) {
if(primecol[a]>arr[j][i]) {
moves+=primecol[a]-arr[j][i]; break;
}
++a;
}
}
}
if(moves1<min2) min2=moves;
}
if(min1<min2) cout<<min1<<endl;
else cout<<min2<<endl;
return 0;
}
| [
"[email protected]"
]
| |
4a4175327e979e54fb293b5c447965b142862564 | 0473b7e7684874f1daf13b9e4c5b21ce16ce6ad2 | /srcs/ubcrt/ubcrt/NuCC/BackTrackerTruthMatch.h | 5a886ef9accd07510e4934b2d280a600f00b2de3 | []
| no_license | thomasmettler/v08_00_00_35 | 352e38d8e98cf4c66aeb99cc9fbccbc97610ddd0 | a786890240341b09266097b96c1cc108c9de0ea0 | refs/heads/master | 2021-04-01T16:36:38.229728 | 2020-04-13T09:53:19 | 2020-04-13T09:53:19 | 248,200,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,933 | h | #ifndef BACKTRACKERTRUTHMATCH_H
#define BACKTRACKERTRUTHMATCH_H
//some standard C++ includes
#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string>
#include <vector>
//some ROOT includes
#include "TString.h"
#include "TInterpreter.h"
#include "TROOT.h"
#include "TTree.h"
#include "TH1F.h"
#include "TH2D.h"
#include "TFile.h"
#include "TCanvas.h"
#include "TStyle.h"
#include "TMath.h"
#include "TStopwatch.h"
//"art" includes (canvas, and gallery)
#include "canvas/Utilities/InputTag.h"
#include "canvas/Persistency/Common/FindManyP.h"
#include "canvas/Persistency/Common/Ptr.h"
#include "canvas/Persistency/Common/PtrVector.h"
#include "canvas/Persistency/Common/PtrVectorBase.h"
//"larsoft" object includes
#include "art/Framework/Principal/Event.h"
#include "art/Framework/Principal/Handle.h"
#include "canvas/Persistency/Common/FindOneP.h"
#include "lardataobj/RecoBase/Hit.h"
#include "lardataobj/AnalysisBase/BackTrackerMatchingData.h"
#include "nusimdata/SimulationBase/MCParticle.h"
#include "nusimdata/SimulationBase/MCTruth.h"
//#include "larpandora/LArPandoraInterface/LArPandoraHelper.h"
class BackTrackerTruthMatch {
public:
// Default constructor
BackTrackerTruthMatch(){}
// Default destructor
~BackTrackerTruthMatch(){}
void MatchToMCParticle(const art::Handle<std::vector<recob::Hit> >& hit_handle, const art::Event& e, std::vector<art::Ptr<recob::Hit> >& trk_hits_ptrs);
art::Ptr< simb::MCParticle > ReturnMCParticle();
bool ParticleAlreadyMatchedInThisHit(std::vector<int> AlreadyMatched_TrackIDs ,int cTrackID);
double ReturnPurity();
double ReturnCompleteness();
double ReturnTrueAssDepositedEnergy();
double ReturnTotalTrueDepositedEnergy();
int ReturnMCParticleID();
private:
art::Ptr< simb::MCParticle > fmaxp_me;
double fpurity = -999;
double fcompleteness = -999;
double ftote = 0;
double fmaxe = 0;
int fMCParticleID;
};
#endif
| [
"[email protected]"
]
| |
0abde2b52ec348892b94515ce1334d398b87b5e9 | 62d48dd287407b9d96c7119f9523e8028d5fbd53 | /checkout.cpp | d3e6cf2c29bb9a4c8526c6ee3685a481f02b1a2d | []
| no_license | s-a-j-a-g/Canteen-Management-System | 7c8c4e7d01d3cb4d3fbd471d27cc30e2c86866ae | af1eb11245a5fd76de1161d7c44f8eddaed15843 | refs/heads/master | 2022-12-23T12:07:14.798653 | 2020-09-27T19:10:36 | 2020-09-27T19:10:36 | 282,635,431 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,914 | cpp | #include "checkout.h"
#include "ui_checkout.h"
#include "customerwindow.h"
#include "mainwindow.h"
#include <QDebug>
Checkout::Checkout(QWidget *parent) :
QDialog(parent),
ui(new Ui::Checkout)
{
ui->setupUi(this);
setWindowFlag(Qt::WindowContextHelpButtonHint,false);
QStringList header;
header << "Food" << "Quantity" << "Price";
ui->tableWidget->setColumnCount(3);
ui->tableWidget->setHorizontalHeaderLabels(header);
ui->tableWidget->setColumnWidth(0, 500);
ui->tableWidget->setColumnWidth(1, 200);
ui->tableWidget->setColumnWidth(2, 269);
}
Checkout::~Checkout()
{
delete ui;
}
CustomerWindow *windowAddress;
void Checkout::receive_items(QString items[12][3], int table_row, QString Usertype, int ID, CustomerWindow *customerwindow)//receives item from customer and displays those items selected
{
windowAddress = customerwindow;
for(int row = 0; row <= (table_row - 1); row++)
{
ui->tableWidget->insertRow(ui->tableWidget->rowCount());
for(int column = 0; column <= 2; column++)
{
ui->tableWidget->setItem(row, column, new QTableWidgetItem(items[row][column]));
}
}
showTotal(table_row);
UserType = Usertype;
UserID = ID;
}
void Checkout::showTotal(int table_row)
{
int price = 0;
total_price = 0;
for(int row = 0; row <= (table_row - 1); row++)
{
QString price_string = ui->tableWidget->item(row, 2)->text();
price = price_string.toInt();
total_price = total_price + price;
}
ui->label_showTotal->setText(QString::number(total_price));
}
void Checkout::on_pushButton_cancel_clicked()
{
this->hide();
}
void Checkout::on_pushButton_checkout_clicked()
{
this->hide();
windowAddress->updateBalance(total_price, UserType, UserID);
}
| [
"[email protected]"
]
| |
a7108b36c1cbdf1f8fad5e09382a9f8558571a6a | f18cc9117a7ba74ec1070fc91cb607f8fec420c6 | /Examens/IluminacioColor/MyGLWidget.cpp | 1141f51de3bce03389e142631c032b793523345a | []
| no_license | elena20ruiz/IDILabs | 1a18b10e7b5599787909873feb8e741b7cd69d76 | 5fb5620d0b3cfe21bf22a9df18055fcd956c951a | refs/heads/master | 2021-03-19T15:45:29.582024 | 2016-12-13T14:21:18 | 2016-12-13T14:21:18 | 52,978,294 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,142 | cpp | #include "MyGLWidget.h"
#include <iostream>
MyGLWidget::MyGLWidget (QWidget* parent) : QOpenGLWidget(parent)
{
setFocusPolicy(Qt::ClickFocus); // per rebre events de teclat
xClick = yClick = 0;
angleY = angleX = 0.0;
perspectiva = true;
DoingInteractive = NONE;
radiEsc = sqrt(5);
//ILUMINACIO
vec_posFocus = glm::vec3(0.8, 0.8, 0.8);
vec_colFocus = glm::vec3(1, 1, 1);
zoom = 0.0f;
//NOU------------------------------------
rotate = 0.0f;
//----------------------------------------
}
MyGLWidget::~MyGLWidget ()
{
if (program != NULL)
delete program;
}
void MyGLWidget::initializeGL ()
{
// Cal inicialitzar l'ús de les funcions d'OpenGL
initializeOpenGLFunctions();
glClearColor(0.5, 0.7, 1.0, 1.0); // defineix color de fons (d'esborrat)
glEnable(GL_DEPTH_TEST);
carregaShaders();
createBuffers();
//FUNCIONS PROPIES______________
distanciaMaximaEscena();
init_camera();
refreshColFocus();
refreshPosFocus();
projectTransform ();
viewTransform ();
}
void MyGLWidget::init_camera(){
FOV = (float)M_PI/3.0f;
ra = 1.0f;
znear = 1.0;
zfar = radiEsc*2+2;
//Carreguem la projeccio del model
projectTransform();
OBS = glm::vec3(-1, 1,-1);
VRP = glm::vec3(centreCaps.x,centreCaps.y-(radiEsc*2+2),centreCaps.z);
UP = glm::vec3(1.,0.,0.);
viewTransform();
}
void MyGLWidget::paintGL ()
{
// Esborrem el frame-buffer i el depth-buffer
glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
init_camera();
// Activem el VAO per a pintar el terra
glBindVertexArray (VAO_Terra);
modelTransformTerra ();
// pintem
glDrawArrays(GL_TRIANGLES, 0, 12);
// Activem el VAO per a pintar el Patricio
glBindVertexArray (VAO_Caps);
modelTransformCaps1 ();
// Pintem l'escena
glDrawArrays(GL_TRIANGLES, 0, caps.faces().size()*3);
// Activem el VAO per a pintar el Patricio
glBindVertexArray (VAO_Caps2);
modelTransformCaps2 ();
// Pintem l'escena
glDrawArrays(GL_TRIANGLES, 0, caps2.faces().size()*3);
glBindVertexArray(0);
}
void MyGLWidget::resizeGL (int w, int h)
{
projectTransform();
glViewport(0, 0, w, h);
}
void MyGLWidget::createBuffers ()
{
// Carreguem el model de l'OBJ - Atenció! Abans de crear els buffers!
caps.load("./models/cow.obj");
// Calculem la capsa contenidora del model
calculaCapsaModel ();
// Creació del Vertex Array Object del Patricio
glGenVertexArrays(1, &VAO_Caps);
glBindVertexArray(VAO_Caps);
// Creació dels buffers del model patr
// Buffer de posicions
glGenBuffers(1, &VBO_CapsPos);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsPos);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3*3, caps.VBO_vertices(), GL_STATIC_DRAW);
// Activem l'atribut vertexLoc
glVertexAttribPointer(vertexLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(vertexLoc);
// Buffer de normals
glGenBuffers(1, &VBO_CapsNorm);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsNorm);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3*3, caps.VBO_normals(), GL_STATIC_DRAW);
glVertexAttribPointer(normalLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(normalLoc);
// En lloc del color, ara passem tots els paràmetres dels materials
// Buffer de component ambient
glGenBuffers(1, &VBO_CapsMatamb);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsMatamb);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3*3, caps.VBO_matamb(), GL_STATIC_DRAW);
glVertexAttribPointer(matambLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matambLoc);
// Buffer de component difusa
glGenBuffers(1, &VBO_CapsMatdiff);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsMatdiff);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3*3, caps.VBO_matdiff(), GL_STATIC_DRAW);
glVertexAttribPointer(matdiffLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matdiffLoc);
// Buffer de component especular
glGenBuffers(1, &VBO_CapsMatspec);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsMatspec);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3*3, caps.VBO_matspec(), GL_STATIC_DRAW);
glVertexAttribPointer(matspecLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matspecLoc);
// Buffer de component shininness
glGenBuffers(1, &VBO_CapsMatshin);
glBindBuffer(GL_ARRAY_BUFFER, VBO_CapsMatshin);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps.faces().size()*3, caps.VBO_matshin(), GL_STATIC_DRAW);
glVertexAttribPointer(matshinLoc, 1, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matshinLoc);
// Carreguem el model de l'OBJ - Atenció! Abans de crear els buffers!
caps2.load("./models/Patricio.obj");
// Calculem la capsa contenidora del model
calculaCapsaModel2 ();
// Creació del Vertex Array Object del Patricio
glGenVertexArrays(1, &VAO_Caps2);
glBindVertexArray(VAO_Caps2);
// Creació dels buffers del model patr
// Buffer de posicions
glGenBuffers(1, &VBO_Caps2Pos);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Pos);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3*3, caps2.VBO_vertices(), GL_STATIC_DRAW);
// Activem l'atribut vertexLoc
glVertexAttribPointer(vertexLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(vertexLoc);
// Buffer de normals
glGenBuffers(1, &VBO_Caps2Norm);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Norm);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3*3, caps2.VBO_normals(), GL_STATIC_DRAW);
glVertexAttribPointer(normalLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(normalLoc);
// En lloc del color, ara passem tots els paràmetres dels materials
// Buffer de component ambient
glGenBuffers(1, &VBO_Caps2Matamb);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Matamb);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3*3, caps2.VBO_matamb(), GL_STATIC_DRAW);
glVertexAttribPointer(matambLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matambLoc);
// Buffer de component difusa
glGenBuffers(1, &VBO_Caps2Matdiff);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Matdiff);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3*3, caps2.VBO_matdiff(), GL_STATIC_DRAW);
glVertexAttribPointer(matdiffLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matdiffLoc);
// Buffer de component especular
glGenBuffers(1, &VBO_Caps2Matspec);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Matspec);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3*3, caps2.VBO_matspec(), GL_STATIC_DRAW);
glVertexAttribPointer(matspecLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matspecLoc);
// Buffer de component shininness
glGenBuffers(1, &VBO_Caps2Matshin);
glBindBuffer(GL_ARRAY_BUFFER, VBO_Caps2Matshin);
glBufferData(GL_ARRAY_BUFFER, sizeof(GLfloat)*caps2.faces().size()*3, caps2.VBO_matshin(), GL_STATIC_DRAW);
glVertexAttribPointer(matshinLoc, 1, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matshinLoc);
// Dades del terra
// VBO amb la posició dels vèrtexs
glm::vec3 posterra[12] = {
glm::vec3(-2.0, -1.0, 2.0),
glm::vec3(2.0, -1.0, 2.0),
glm::vec3(-2.0, -1.0, -2.0),
glm::vec3(-2.0, -1.0, -2.0),
glm::vec3(2.0, -1.0, 2.0),
glm::vec3(2.0, -1.0, -2.0),
glm::vec3(-2.0, -1.0, -2.0),
glm::vec3(2.0, -1.0, -2.0),
glm::vec3(-2.0, 1.0, -2.0),
glm::vec3(-2.0, 1.0, -2.0),
glm::vec3(2.0, -1.0, -2.0),
glm::vec3(2.0, 1.0, -2.0)
};
//________________________________________________________________
//___________________CALCUL MAX I MIN TERRA_______________________
maxTerra.x = minTerra.x = posterra[0].x;
maxTerra.y = minTerra.y = posterra[0].y;
maxTerra.z = minTerra.z = posterra[0].z;
for (unsigned int i = 0; i < 12; i+=1)
{
if (posterra[i].x < minTerra.x)
minTerra.x = posterra[i].x;
if (posterra[i].x > maxTerra.x)
maxTerra.x = posterra[i].x;
if (posterra[i].y < minTerra.y)
minTerra.y = posterra[i].y;
if (posterra[i].y > maxTerra.y)
maxTerra.y = posterra[i].y;
if (posterra[i].z < minTerra.z)
minTerra.z = posterra[i].z;
if (posterra[i].z > maxTerra.z)
maxTerra.z = posterra[i].z;
}
centreTerra.x = (minTerra.x+maxTerra.x)/2.0;
centreTerra.y = (minTerra.y+maxTerra.y)/2.0;
centreTerra.z = (minTerra.z+maxTerra.z)/2.0;
//________________________________________________________
//_______________FI CALCUL________________________________
// VBO amb la normal de cada vèrtex
glm::vec3 norm1 (0,1,0);
glm::vec3 norm2 (0,0,1);
glm::vec3 normterra[12] = {
norm1, norm1, norm1, norm1, norm1, norm1, // la normal (0,1,0) per als primers dos triangles
norm2, norm2, norm2, norm2, norm2, norm2 // la normal (0,0,1) per als dos últims triangles
};
// Definim el material del terra
glm::vec3 amb(0.2,0,0.2);
glm::vec3 diff(0.8,0,0.8);
glm::vec3 spec(0,0,0);
float shin = 100;
// Fem que aquest material afecti a tots els vèrtexs per igual
glm::vec3 matambterra[12] = {
amb, amb, amb, amb, amb, amb, amb, amb, amb, amb, amb, amb
};
glm::vec3 matdiffterra[12] = {
diff, diff, diff, diff, diff, diff, diff, diff, diff, diff, diff, diff
};
glm::vec3 matspecterra[12] = {
spec, spec, spec, spec, spec, spec, spec, spec, spec, spec, spec, spec
};
float matshinterra[12] = {
shin, shin, shin, shin, shin, shin, shin, shin, shin, shin, shin, shin
};
// Creació del Vertex Array Object del terra
glGenVertexArrays(1, &VAO_Terra);
glBindVertexArray(VAO_Terra);
glGenBuffers(1, &VBO_TerraPos);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraPos);
glBufferData(GL_ARRAY_BUFFER, sizeof(posterra), posterra, GL_STATIC_DRAW);
// Activem l'atribut vertexLoc
glVertexAttribPointer(vertexLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(vertexLoc);
glGenBuffers(1, &VBO_TerraNorm);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraNorm);
glBufferData(GL_ARRAY_BUFFER, sizeof(normterra), normterra, GL_STATIC_DRAW);
// Activem l'atribut normalLoc
glVertexAttribPointer(normalLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(normalLoc);
// En lloc del color, ara passem tots els paràmetres dels materials
// Buffer de component ambient
glGenBuffers(1, &VBO_TerraMatamb);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraMatamb);
glBufferData(GL_ARRAY_BUFFER, sizeof(matambterra), matambterra, GL_STATIC_DRAW);
glVertexAttribPointer(matambLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matambLoc);
// Buffer de component difusa
glGenBuffers(1, &VBO_TerraMatdiff);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraMatdiff);
glBufferData(GL_ARRAY_BUFFER, sizeof(matdiffterra), matdiffterra, GL_STATIC_DRAW);
glVertexAttribPointer(matdiffLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matdiffLoc);
// Buffer de component especular
glGenBuffers(1, &VBO_TerraMatspec);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraMatspec);
glBufferData(GL_ARRAY_BUFFER, sizeof(matspecterra), matspecterra, GL_STATIC_DRAW);
glVertexAttribPointer(matspecLoc, 3, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matspecLoc);
// Buffer de component shininness
glGenBuffers(1, &VBO_TerraMatshin);
glBindBuffer(GL_ARRAY_BUFFER, VBO_TerraMatshin);
glBufferData(GL_ARRAY_BUFFER, sizeof(matshinterra), matshinterra, GL_STATIC_DRAW);
glVertexAttribPointer(matshinLoc, 1, GL_FLOAT, GL_FALSE, 0, 0);
glEnableVertexAttribArray(matshinLoc);
glBindVertexArray(0);
}
void MyGLWidget::carregaShaders()
{
// Creem els shaders per al fragment shader i el vertex shader
QOpenGLShader fs (QOpenGLShader::Fragment, this);
QOpenGLShader vs (QOpenGLShader::Vertex, this);
// Carreguem el codi dels fitxers i els compilem
fs.compileSourceFile("shaders/fragshad.frag");
vs.compileSourceFile("shaders/vertshad.vert");
// Creem el program
program = new QOpenGLShaderProgram(this);
// Li afegim els shaders corresponents
program->addShader(&fs);
program->addShader(&vs);
// Linkem el program
program->link();
// Indiquem que aquest és el program que volem usar
program->bind();
// Obtenim identificador per a l'atribut “vertex” del vertex shader
vertexLoc = glGetAttribLocation (program->programId(), "vertex");
// Obtenim identificador per a l'atribut “normal” del vertex shader
normalLoc = glGetAttribLocation (program->programId(), "normal");
// Obtenim identificador per a l'atribut “matamb” del vertex shader
matambLoc = glGetAttribLocation (program->programId(), "matamb");
// Obtenim identificador per a l'atribut “matdiff” del vertex shader
matdiffLoc = glGetAttribLocation (program->programId(), "matdiff");
// Obtenim identificador per a l'atribut “matspec” del vertex shader
matspecLoc = glGetAttribLocation (program->programId(), "matspec");
// Obtenim identificador per a l'atribut “matshin” del vertex shader
matshinLoc = glGetAttribLocation (program->programId(), "matshin");
// Demanem identificadors per als uniforms del vertex shader
transLoc = glGetUniformLocation (program->programId(), "TG");
projLoc = glGetUniformLocation (program->programId(), "proj");
viewLoc = glGetUniformLocation (program->programId(), "view");
//COLOR
posFocus = glGetUniformLocation (program->programId(), "posFocus");
colFocus = glGetUniformLocation (program->programId(), "colFocus");
}
void MyGLWidget::modelTransformCaps1 ()
{
glm::vec3 rot = glm::vec3(1.,0.,0.);
glm::mat4 TG(1.f); // Matriu de transformació
TG = glm::translate(TG,glm::vec3(1.,-1+(centreCaps.y)/2,0));
TG = glm::rotate(TG,(float)(-M_PI/2.0),rot);
TG = glm::rotate(TG,-rotate,glm::vec3(0.,0.,1.));
TG = glm::scale(TG, glm::vec3(escala/2, escala/2, escala/2));
TG = glm::translate(TG, -centreCaps);
glUniformMatrix4fv (transLoc, 1, GL_FALSE, &TG[0][0]);
}
void MyGLWidget::modelTransformCaps2 ()
{
glm::vec3 rot;
rot[2] = 1;
glm::mat4 TG(1.f); // Matriu de transformació
TG = glm::translate(TG,glm::vec3(1.,-0.5+(centreCaps.y)/2,0.));
TG = glm::rotate(TG,(float) M_PI,rot);
TG = glm::rotate(TG,rotate,glm::vec3(0.,1.,0.));
TG = glm::scale(TG, glm::vec3(escala2, escala2, escala2));
TG = glm::translate(TG, -centreCaps2);
glUniformMatrix4fv (transLoc, 1, GL_FALSE, &TG[0][0]);
}
void MyGLWidget::modelTransformTerra ()
{
glm::mat4 TG(1.f); // Matriu de transformació
TG = glm::translate(TG,glm::vec3(0.,-1-0.5+(centreCaps.y)/2,0.));
TG = glm::translate(TG,glm::vec3(0.,-minTerra.y,0));
glUniformMatrix4fv (transLoc, 1, GL_FALSE, &TG[0][0]);
}
void MyGLWidget::projectTransform ()
{
//------------------------Per optimitzar viewport
float angle = asin(radiEsc/(radiEsc*2))+zoom;
//------------------------Per resize--------------
ra = float(width())/float(height());
if (ra < 1) FOV = atan(tan(angle*2)/ra);
else FOV = angle*2;
//------------------------------------------------
glm::mat4 Proj; // Matriu de projecció
if (perspectiva)
Proj = glm::perspective(FOV, ra, znear, zfar);
else
Proj = glm::ortho(-radiEsc, radiEsc, -radiEsc, radiEsc, radiEsc, 3.0f*radiEsc);
glUniformMatrix4fv (projLoc, 1, GL_FALSE, &Proj[0][0]);
}
void MyGLWidget::viewTransform ()
{
//float distancia = (1.5)*radiEsc;
// Matriu de posició i orientació
glm::mat4 View = glm::lookAt (OBS,VRP,UP);
glUniformMatrix4fv (viewLoc, 1, GL_FALSE, &View[0][0]);
}
void MyGLWidget::calculaCapsaModel ()
{
// Càlcul capsa contenidora i valors transformacions inicials
minCapsa.x = maxCapsa.x = caps.vertices()[0];
minCapsa.y = maxCapsa.y= caps.vertices()[1];
minCapsa.z = maxCapsa.z = caps.vertices()[2];
for (unsigned int i = 3; i < caps.vertices().size(); i+=3)
{
if (caps.vertices()[i+0] < minCapsa.x)
minCapsa.x = caps.vertices()[i+0];
if (caps.vertices()[i+0] > maxCapsa.x)
maxCapsa.x = caps.vertices()[i+0];
if (caps.vertices()[i+1] < minCapsa.y)
minCapsa.y = caps.vertices()[i+1];
if (caps.vertices()[i+1] > maxCapsa.y)
maxCapsa.y = caps.vertices()[i+1];
if (caps.vertices()[i+2] < minCapsa.z)
minCapsa.z = caps.vertices()[i+2];
if (caps.vertices()[i+2] > maxCapsa.z)
maxCapsa.z = caps.vertices()[i+2];
}
escala = 1/(maxCapsa.y - minCapsa.y);
centreCaps.x = (minCapsa.x+maxCapsa.x)/2.0;
centreCaps.y = (minCapsa.y+maxCapsa.y)/2.0;
centreCaps.z = (minCapsa.z+maxCapsa.z)/2.0;
}
void MyGLWidget::calculaCapsaModel2()
{
// Càlcul capsa contenidora i valors transformacions inicials
minCapsa2.x = maxCapsa2.x = caps2.vertices()[0];
minCapsa2.y = maxCapsa2.y= caps2.vertices()[1];
minCapsa2.z = maxCapsa2.z = caps2.vertices()[2];
for (unsigned int i = 3; i < caps2.vertices().size(); i+=3)
{
if (caps2.vertices()[i+0] < minCapsa2.x)
minCapsa2.x = caps2.vertices()[i+0];
if (caps2.vertices()[i+0] > maxCapsa2.x)
maxCapsa2.x = caps2.vertices()[i+0];
if (caps2.vertices()[i+1] < minCapsa2.y)
minCapsa2.y = caps2.vertices()[i+1];
if (caps2.vertices()[i+1] > maxCapsa2.y)
maxCapsa2.y = caps2.vertices()[i+1];
if (caps2.vertices()[i+2] < minCapsa2.z)
minCapsa2.z = caps2.vertices()[i+2];
if (caps.vertices()[i+2] > maxCapsa2.z)
maxCapsa2.z = caps2.vertices()[i+2];
}
escala2 = 0.25/(maxCapsa2.y - minCapsa2.y);
centreCaps2.x = (minCapsa2.x+maxCapsa2.x)/2.0;
centreCaps2.y = (minCapsa2.y+maxCapsa2.y)/2.0;
centreCaps2.z = (minCapsa2.z+maxCapsa2.z)/2.0;
}
//*********************************************************//
//**************FUNCIONS AUXILIARS************************//
float MyGLWidget::distanciaEntre2Punts(glm::vec3 orig, glm::vec3 dest)
{
double x=dest.x-orig.x;
double y=dest.y-orig.y;
double z=dest.z-orig.z;
double d = sqrt(x*x+y*y+z*z);
// std::cout << "sqrt("<<x<<"²+"<<y<<"²+"<<z<<")="<<d<<std::endl;
return d;
}
void MyGLWidget::distanciaMaximaEscena(){
float dist1 = (maxTerra.x-minTerra.x);
float dist2 = (maxTerra.y-minTerra.y);
float dist3 = (maxTerra.z-minTerra.z);
radiEsc = dist1;
if (radiEsc < dist2) radiEsc = dist2;
if (radiEsc < dist3) radiEsc = dist3;
radiEsc = radiEsc/2;
}
void MyGLWidget::refreshPosFocus() {
glUniform3fv (posFocus, 1, &vec_posFocus[0]);
}
void MyGLWidget::refreshColFocus() {
glUniform3fv (colFocus, 1, &vec_colFocus[0]);
}
//********************************************************//
//********************EVENTS******************************//
void MyGLWidget::keyPressEvent(QKeyEvent* event)
{
makeCurrent();
switch (event->key()) {
case Qt::Key_O: { // canvia òptica entre perspectiva i axonomètrica
perspectiva = !perspectiva;
projectTransform ();
break;
}
case Qt::Key_R: {
rotate += (float)M_PI/6.0;
break;
}
default: event->ignore(); break;
}
update();
}
void MyGLWidget::mousePressEvent (QMouseEvent *e)
{
xClick = e->x();
yClick = e->y();
if (e->button() & Qt::LeftButton &&
! (e->modifiers() & (Qt::ShiftModifier|Qt::AltModifier|Qt::ControlModifier)))
{
DoingInteractive = ROTATE;
}
if (e->button() & Qt::RightButton &&
! (e->modifiers() & (Qt::ShiftModifier|Qt::AltModifier|Qt::ControlModifier)))
{
DoingInteractive = ZOOM;
}
}
void MyGLWidget::mouseReleaseEvent( QMouseEvent *)
{
DoingInteractive = NONE;
}
void MyGLWidget::mouseMoveEvent(QMouseEvent *e)
{
makeCurrent();
// Aqui cal que es calculi i s'apliqui la rotacio o el zoom com s'escaigui...
if (DoingInteractive == ROTATE)
{
// Fem la rotació
//angleY += (e->x() - xClick) * M_PI / 2;
angleX += (e->y() - yClick) * M_PI / 180.0;
angleY += (e->x() - xClick) * M_PI / 180.0;
viewTransform ();
}
//NOU_______________________________________
if (DoingInteractive == ZOOM) {
zoom += (e->y() - yClick)*0.001;
projectTransform();
}
//NOU_________________________________________
xClick = e->x();
yClick = e->y();
update ();
}
| [
"[email protected]"
]
| |
81540517899bdcebe08173056f86d94b44ae3d7c | 95b0ba242e8f736444fd6be55935e0e191a5661d | /sdts++/builder/sb_Pnts.cpp | 0f7e4a52d3ce4e9dc9a549911ef6ce7009f62ccb | [
"LicenseRef-scancode-public-domain"
]
| permissive | tbrowder/sdts-fork | 4ef153fdf3bd2395e73b5dcc72694e6ac435a653 | 7c149c465126630db5e68b793b589da05c793f09 | refs/heads/master | 2021-01-02T23:13:05.147114 | 2013-07-10T12:56:52 | 2013-07-10T12:56:52 | 11,232,985 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,731 | cpp | //
// This file is part of the SDTS++ toolkit, written by the U.S.
// Geological Survey. It is experimental software, written to support
// USGS research and cartographic data production.
//
// SDTS++ is public domain software. It may be freely copied,
// distributed, and modified. The USGS welcomes user feedback, but makes
// no committment to any level of support for this code. See the SDTS
// web site at http://mcmcweb.er.usgs.gov/sdts for more information,
// including points of contact.
//
#include <iostream>
#include <strstream>
#include <string>
#include <limits.h>
#include <float.h>
#include <sdts++/builder/sb_Pnts.h>
#include <sdts++/builder/sb_ForeignID.h>
#include <sdts++/builder/sb_Utils.h>
#include <sdts++/container/sc_Field.h>
#include <sdts++/container/sc_Record.h>
#include <sdts++/container/sc_Subfield.h>
#include <sdts++/io/sio_8211Converter.h>
#include <sdts++/io/sio_ConverterFactory.h>
using namespace std;
// Strings and integers are initialized with these values; they are used
// to indicate whether a given module value has been assigned a value or not.
// (XXX I arbitrarily chose 0x4 as the sentinal value. I hate ad hoc crap.)
static const string UNVALUED_STRING(1, static_cast<string::value_type>(0x4) );
static const long UNVALUED_LONG = INT_MIN;
static const double UNVALUED_DOUBLE = DBL_MAX;
struct sb_Pnts_Imp
{
string _ObjectRepresentation;
sb_Spatial _SpatialAddress;
sb_AttributeIDs _AttributeIDs;
sb_ForeignIDs _LineIDs;
sb_ForeignIDs _AreaIDs;
sb_ForeignIDs _CompositeIDs;
sb_ForeignIDs _RepresentationModuleIDs;
sb_ForeignIDs _OrientationSpatialAddresss;
sb_ForeignIDs _AttributePrimaryForeignIDs;
sb_AttributeIDs _ArrtibuteLabels;
sb_Spatial _SymbolOrientationSpatialAddress;
sb_Pnts_Imp()
: _ObjectRepresentation( UNVALUED_STRING )
{}
void reset()
{
_ObjectRepresentation = UNVALUED_STRING;
_SpatialAddress.x().setUnvalued();
_SpatialAddress.y().setUnvalued();
_SpatialAddress.z().setUnvalued();
_AttributeIDs.clear ();
_LineIDs.clear ();
_AreaIDs.clear ();
_CompositeIDs.clear ();
_RepresentationModuleIDs.clear ();
_OrientationSpatialAddresss.clear ();
_AttributePrimaryForeignIDs.clear ();
_ArrtibuteLabels.clear ();
_SymbolOrientationSpatialAddress.x().setUnvalued();
_SymbolOrientationSpatialAddress.y().setUnvalued();
_SymbolOrientationSpatialAddress.z().setUnvalued();
}
};// struct sb_Pnts_Imp
sb_Pnts::sb_Pnts()
: _imp( new sb_Pnts_Imp() )
{
setMnemonic("PNTS");
setID( 1 );
// insert static initializers
} // Pnts ctor
sb_Pnts::~sb_Pnts()
{
} // Pnts dtor
static sio_8211Schema _schema; // module specific schema
static
void
_build_schema( sio_8211Schema& schema )
{
schema.clear(); // make sure we are starting with clean schema
schema.push_back( sio_8211FieldFormat() );
sio_8211FieldFormat& field_format = schema.back();
field_format.setDataStructCode( sio_8211FieldFormat::vector );
field_format.setDataTypeCode( sio_8211FieldFormat::mixed_data_type );
field_format.setName( "Pnts" );
field_format.setTag( "POINT" );
field_format.push_back( sio_8211SubfieldFormat() );
field_format.back().setLabel( "MODN" );
field_format.back().setType( sio_8211SubfieldFormat::A );
field_format.back().setFormat( sio_8211SubfieldFormat::variable );
field_format.back().setConverter( sio_ConverterFactory::instance()->get( "A" ) );
field_format.push_back( sio_8211SubfieldFormat() );
field_format.back().setLabel( "RCID" );
field_format.back().setType( sio_8211SubfieldFormat::I );
field_format.back().setFormat( sio_8211SubfieldFormat::variable );
field_format.back().setConverter( sio_ConverterFactory::instance()->get( "I" ) );
field_format.push_back( sio_8211SubfieldFormat() );
field_format.back().setLabel( "OBRP" );
field_format.back().setType( sio_8211SubfieldFormat::A );
field_format.back().setFormat( sio_8211SubfieldFormat::variable );
field_format.back().setConverter( sio_ConverterFactory::instance()->get( "A" ));
field_format.push_back( sio_8211SubfieldFormat() );
field_format.back().setLabel( "SADR" );
field_format.back().setType( sio_8211SubfieldFormat::I );
field_format.back().setFormat( sio_8211SubfieldFormat::variable );
field_format.back().setConverter( sio_ConverterFactory::instance()->get( "I" ) );
field_format.setIsRepeating( false );
sb_ForeignID foreign_id;
sb_AttributeID attribute_id;
attribute_id.addFieldToSchema( schema, "AttributeID", "ATID", true );
foreign_id.addFieldToSchema( schema, "LineID", "LNID", true );
foreign_id.addFieldToSchema( schema, "AreaID", "ARID", true );
foreign_id.addFieldToSchema( schema, "CompositeID", "CPID", true );
foreign_id.addFieldToSchema( schema, "RepresentationModuleID", "RPID", true );
foreign_id.addFieldToSchema( schema, "OrientationSpatialAddress", "OSAD", true );
foreign_id.addFieldToSchema( schema, "AttributePrimaryForeignID", "PAID", true );
attribute_id.addFieldToSchema( schema, "ArrtibuteLabel", "ATLB", true );
field_format.push_back( sio_8211SubfieldFormat() );
field_format.back().setLabel( "SSAD" );
field_format.back().setType( sio_8211SubfieldFormat::I );
field_format.back().setFormat( sio_8211SubfieldFormat::variable );
field_format.back().setConverter( sio_ConverterFactory::instance()->get( "I" ) );
field_format.setIsRepeating( false );
} // _build_schema
static
bool
_ingest_record( sb_Pnts& pnts, sb_Pnts_Imp &pnts_imp, sc_Record const& record )
{
// Make sure we have a record from an
// External Spatial Reference module.
sc_FieldCntr::const_iterator curfield;
if ( ! sb_Utils::getFieldByMnem( record,"PNTS",curfield) )
{
#ifdef SDTSXX_DEBUG
cerr << "sb_Pnts::sb_Pnts(sc_Record const&): "
<< "Not an point record.";
cerr << endl;
#endif
return false;
}
// We have a primary field from a module. Start// picking it apart.
sc_SubfieldCntr::const_iterator cursubfield;
string tmp_str;
long tmp_int;
// MODN
if (sb_Utils::getSubfieldByMnem(*curfield,"MODN",cursubfield))
{
cursubfield->getA( tmp_str );
pnts.setMnemonic( tmp_str );
}
// RCID
if (sb_Utils::getSubfieldByMnem(*curfield,"RCID",cursubfield))
{
cursubfield->getI( tmp_int );
pnts.setID( tmp_int );
}
// OBRP
if (sb_Utils::getSubfieldByMnem(*curfield,"OBRP",cursubfield))
{
cursubfield->getA( pnts_imp._ObjectRepresentation);
}
else
{
return false;
}
//SADR
if ( sb_Utils::getFieldByMnem( record,"SADR" ,curfield) )
{
sb_Spatial tmp_spatial;
if ( sb_Utils::getSubfieldByMnem(*curfield,"X",cursubfield ) )
{
tmp_spatial.x() = *cursubfield;
}
else
{
return false;
}
if ( sb_Utils::getSubfieldByMnem(*curfield,"Y",cursubfield ) )
{
tmp_spatial.y() = *cursubfield;
}
else
{
return false;
}
pnts_imp._SpatialAddress.assign( tmp_spatial );
}
// ATID
if ( sb_Utils::getFieldByMnem( record,"ATID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anAttributeID
while ( curfield != record.end() && curfield->mnemonic() == "ATID" )
{
pnts_imp._AttributeIDs.push_back( sb_AttributeID() );
if ( ! pnts_imp._AttributeIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// LNID
if ( sb_Utils::getFieldByMnem( record,"LNID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anLineID
while ( curfield != record.end() && curfield->mnemonic() == "LNID" )
{
pnts_imp._LineIDs.push_back( sb_ForeignID() );
if ( ! pnts_imp._LineIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// ARID
if ( sb_Utils::getFieldByMnem( record,"ARID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anAreaID
while ( curfield != record.end() && curfield->mnemonic() == "ARID" )
{
pnts_imp._AreaIDs.push_back( sb_ForeignID() );
if ( ! pnts_imp._AreaIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// CPID
if ( sb_Utils::getFieldByMnem( record,"CPID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anCompositeID
while ( curfield != record.end() && curfield->mnemonic() == "CPID" )
{
pnts_imp._CompositeIDs.push_back( sb_ForeignID() );
if ( ! pnts_imp._CompositeIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// RPID
if ( sb_Utils::getFieldByMnem( record,"RPID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anRepresentationModuleID
while ( curfield != record.end() && curfield->mnemonic() == "RPID" )
{
pnts_imp._RepresentationModuleIDs.push_back( sb_ForeignID() );
if ( ! pnts_imp._RepresentationModuleIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// OSAD
if ( sb_Utils::getFieldByMnem( record,"OSAD",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anOrientationSpatialAddress
while ( curfield != record.end() && curfield->mnemonic() == "OSAD" )
{
pnts_imp._OrientationSpatialAddresss.push_back( sb_ForeignID() );
if ( ! pnts_imp._OrientationSpatialAddresss.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// PAID
if ( sb_Utils::getFieldByMnem( record,"PAID",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anAttributePrimaryForeignID
while ( curfield != record.end() && curfield->mnemonic() == "PAID" )
{
pnts_imp._AttributePrimaryForeignIDs.push_back( sb_ForeignID() );
if ( ! pnts_imp._AttributePrimaryForeignIDs.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
// ATLB
if ( sb_Utils::getFieldByMnem( record,"ATLB",curfield) )
{
//As this is potentially a repeating field, we just keep
//grabbing fields until we get one that's well, not anArrtibuteLabel
while ( curfield != record.end() && curfield->mnemonic() == "ATLB" )
{
pnts_imp._ArrtibuteLabels.push_back( sb_AttributeID() );
if ( ! pnts_imp._ArrtibuteLabels.back().assign( *curfield ) )
{
return false;
}
curfield++;
}
}
else
{
// this is an optional field, so no worries if we get here
}
//SSAD
if ( sb_Utils::getFieldByMnem( record,"SSAD" ,curfield) )
{
sb_Spatial tmp_spatial;
if ( sb_Utils::getSubfieldByMnem(*curfield,"X",cursubfield ) )
{
tmp_spatial.x() = *cursubfield;
}
else
{
return false;
}
if ( sb_Utils::getSubfieldByMnem(*curfield,"Y",cursubfield ) )
{
tmp_spatial.y() = *cursubfield;
}
else
{
return false;
}
pnts_imp._SymbolOrientationSpatialAddress.assign( tmp_spatial );
}
return true;
} // _ingest_record
bool
sb_Pnts::getObjectRepresentation( string & val ) const
{
if ( _imp->_ObjectRepresentation == UNVALUED_STRING )
return false;
val = _imp->_ObjectRepresentation;
return true;
} // sb_Pnts::getObjectRepresentation
bool
sb_Pnts::getSpatialAddress( sb_Spatial & val ) const
{
if ( _imp->_SpatialAddress.x().isUnvalued() )
return false;
val = _imp->_SpatialAddress;
return true;
} // sb_Pnts::getSpatialAddress
bool
sb_Pnts::getAttributeID( std::list<std::string> & val ) const
{
if ( _imp->_AttributeIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_AttributeIDs::const_iterator i =_imp->_AttributeIDs.begin(); i != _imp->_AttributeIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getAttributeID(std::string& val)
bool
sb_Pnts::getAttributeID( sb_AttributeIDs & val ) const
{
val = _imp->_AttributeIDs;
return true;
} // sb_Pnts::getAttributeID
bool
sb_Pnts::getLineID( std::list<std::string> & val ) const
{
if ( _imp->_LineIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_LineIDs.begin(); i != _imp->_LineIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getLineID(std::string& val)
bool
sb_Pnts::getLineID( sb_ForeignIDs & val ) const
{
val = _imp->_LineIDs;
return true;
} // sb_Pnts::getLineID
bool
sb_Pnts::getAreaID( std::list<std::string> & val ) const
{
if ( _imp->_AreaIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_AreaIDs.begin(); i != _imp->_AreaIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getAreaID(std::string& val)
bool
sb_Pnts::getAreaID( sb_ForeignIDs & val ) const
{
val = _imp->_AreaIDs;
return true;
} // sb_Pnts::getAreaID
bool
sb_Pnts::getCompositeID( std::list<std::string> & val ) const
{
if ( _imp->_CompositeIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_CompositeIDs.begin(); i != _imp->_CompositeIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getCompositeID(std::string& val)
bool
sb_Pnts::getCompositeID( sb_ForeignIDs & val ) const
{
val = _imp->_CompositeIDs;
return true;
} // sb_Pnts::getCompositeID
bool
sb_Pnts::getRepresentationModuleID( std::list<std::string> & val ) const
{
if ( _imp->_RepresentationModuleIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_RepresentationModuleIDs.begin(); i != _imp->_RepresentationModuleIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getRepresentationModuleID(std::string& val)
bool
sb_Pnts::getRepresentationModuleID( sb_ForeignIDs & val ) const
{
val = _imp->_RepresentationModuleIDs;
return true;
} // sb_Pnts::getRepresentationModuleID
bool
sb_Pnts::getOrientationSpatialAddress( std::list<std::string> & val ) const
{
if ( _imp->_OrientationSpatialAddresss.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_OrientationSpatialAddresss.begin(); i != _imp->_OrientationSpatialAddresss.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getOrientationSpatialAddress(std::string& val)
bool
sb_Pnts::getOrientationSpatialAddress( sb_ForeignIDs & val ) const
{
val = _imp->_OrientationSpatialAddresss;
return true;
} // sb_Pnts::getOrientationSpatialAddress
bool
sb_Pnts::getAttributePrimaryForeignID( std::list<std::string> & val ) const
{
if ( _imp->_AttributePrimaryForeignIDs.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_ForeignIDs::const_iterator i =_imp->_AttributePrimaryForeignIDs.begin(); i != _imp->_AttributePrimaryForeignIDs.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getAttributePrimaryForeignID(std::string& val)
bool
sb_Pnts::getAttributePrimaryForeignID( sb_ForeignIDs & val ) const
{
val = _imp->_AttributePrimaryForeignIDs;
return true;
} // sb_Pnts::getAttributePrimaryForeignID
bool
sb_Pnts::getArrtibuteLabel( std::list<std::string> & val ) const
{
if ( _imp->_ArrtibuteLabels.empty() )
return false;
// We'll let the programmer worry about the proper maintanence of
// the given list of strings. HTat is, it'll be up to them to
// clear the contents or not before invoking this member function.
string tmp_string;
for ( sb_AttributeIDs::const_iterator i =_imp->_ArrtibuteLabels.begin(); i != _imp->_ArrtibuteLabels.end();i++ )
{
if ( ! i->packedIdentifierString( tmp_string ) )
{
return false;
}
val.push_back( tmp_string );
}
return true;
} //sb_Pnts::getArrtibuteLabel(std::string& val)
bool
sb_Pnts::getArrtibuteLabel( sb_AttributeIDs & val ) const
{
val = _imp->_ArrtibuteLabels;
return true;
} // sb_Pnts::getArrtibuteLabel
bool
sb_Pnts::getSymbolOrientationSpatialAddress( sb_Spatial & val ) const
{
if ( _imp->_SymbolOrientationSpatialAddress.x().isUnvalued() )
return false;
val = _imp->_SymbolOrientationSpatialAddress;
return true;
} // sb_Pnts::getSymbolOrientationSpatialAddress
bool
sb_Pnts::getSchema( sio_8211Schema& schema ) const
{
// If the schema hasn't been
// initialized, please do so.
if ( _schema.empty() )
{
_build_schema( _schema );
}
if ( _schema.empty() ) // oops ... something screwed up
{
return false;
}
schema = _schema;
return true;
} // sb_Pnts::getSchema
bool
sb_Pnts::getRecord( sc_Record & record ) const
{
record.clear(); // start with a clean slate
// first field, which contains module name and record number
sb_ForeignID tmp_foreign_id;
record.push_back( sc_Field() );
record.back().setMnemonic( "PNTS" );
record.back().setName( "Point" );
string tmp_str;
double tmp_double;
long tmp_long;
getMnemonic( tmp_str );
sb_Utils::add_subfield( record.back(), "MODN", tmp_str );
sb_Utils::add_subfield( record.back(), "RCID", getID() );
if ( getObjectRepresentation( tmp_str ) )
{
sb_Utils::add_subfield( record.back(),"OBRP", tmp_str );
}
else
{
sb_Utils::add_empty_subfield( record.back(), "OBRP", sc_Subfield::is_A );
}
//XXX for each spatial address, add a SpatialAddress to a repeating field
sb_Utils::add_field( record, "SpatialAddress","SADR" );
{
//just shove the sc_subfields directly onto the end of the field
cout << "X:"<< _imp->_SpatialAddress.x() << endl;
cout << "Y:"<< _imp->_SpatialAddress.y() << endl;
record.back().push_back( _imp->_SpatialAddress.x() );
record.back().push_back( _imp->_SpatialAddress.y() );
}
for ( sb_AttributeIDs::const_iterator i = _imp->_AttributeIDs.begin();
i != _imp->_AttributeIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_LineIDs.begin();
i != _imp->_LineIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_AreaIDs.begin();
i != _imp->_AreaIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_CompositeIDs.begin();
i != _imp->_CompositeIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_RepresentationModuleIDs.begin();
i != _imp->_RepresentationModuleIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_OrientationSpatialAddresss.begin();
i != _imp->_OrientationSpatialAddresss.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_ForeignIDs::const_iterator i = _imp->_AttributePrimaryForeignIDs.begin();
i != _imp->_AttributePrimaryForeignIDs.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
for ( sb_AttributeIDs::const_iterator i = _imp->_ArrtibuteLabels.begin();
i != _imp->_ArrtibuteLabels.end(); i++ )
{
sb_Utils::add_foreignID ( record, *i );
}
//XXX for each spatial address, add a SymbolOrientationSpatialAddress to a repeating field
sb_Utils::add_field( record, "SymbolOrientationSpatialAddress","SSAD" );
{
//just shove the sc_subfields directly onto the end of the field
cout << "X:"<< _imp->_SymbolOrientationSpatialAddress.x() << endl;
cout << "Y:"<< _imp->_SymbolOrientationSpatialAddress.y() << endl;
record.back().push_back( _imp->_SymbolOrientationSpatialAddress.x() );
record.back().push_back( _imp->_SymbolOrientationSpatialAddress.y() );
}
return true;
} // Pnts::getRecord
bool
sb_Pnts::setObjectRepresentation( string const& val )
{
_imp->_ObjectRepresentation = val;
return true;
} // sb_Pnts::setObjectRepresentation
bool
sb_Pnts::setSpatialAddress( sb_Spatial const& val )
{
_imp->_SpatialAddress = val;
return true;
} // sb_Pnts::setSpatialAddress
bool
sb_Pnts::setAttributeID( sb_AttributeIDs const& val )
{
_imp->_AttributeIDs = val;
return true;
} // sb_Pnts::setAttributeID
bool
sb_Pnts::setLineID( sb_ForeignIDs const& val )
{
_imp->_LineIDs = val;
return true;
} // sb_Pnts::setLineID
bool
sb_Pnts::setAreaID( sb_ForeignIDs const& val )
{
_imp->_AreaIDs = val;
return true;
} // sb_Pnts::setAreaID
bool
sb_Pnts::setCompositeID( sb_ForeignIDs const& val )
{
_imp->_CompositeIDs = val;
return true;
} // sb_Pnts::setCompositeID
bool
sb_Pnts::setRepresentationModuleID( sb_ForeignIDs const& val )
{
_imp->_RepresentationModuleIDs = val;
return true;
} // sb_Pnts::setRepresentationModuleID
bool
sb_Pnts::setOrientationSpatialAddress( sb_ForeignIDs const& val )
{
_imp->_OrientationSpatialAddresss = val;
return true;
} // sb_Pnts::setOrientationSpatialAddress
bool
sb_Pnts::setAttributePrimaryForeignID( sb_ForeignIDs const& val )
{
_imp->_AttributePrimaryForeignIDs = val;
return true;
} // sb_Pnts::setAttributePrimaryForeignID
bool
sb_Pnts::setArrtibuteLabel( sb_AttributeIDs const& val )
{
_imp->_ArrtibuteLabels = val;
return true;
} // sb_Pnts::setArrtibuteLabel
bool
sb_Pnts::setSymbolOrientationSpatialAddress( sb_Spatial const& val )
{
_imp->_SymbolOrientationSpatialAddress = val;
return true;
} // sb_Pnts::setSymbolOrientationSpatialAddress
bool
sb_Pnts::setRecord( sc_Record const& record )
{
_imp->reset(); // reset to new state; i.e., clear out foreign
// identifiers, etc.
return _ingest_record( *this, *_imp, record );
} // sb_Pnts::setRecord
void
sb_Pnts::unDefineObjectRepresentation( )
{
_imp->_ObjectRepresentation = UNVALUED_STRING;
} // sb_Pnts::unDefineObjectRepresentation
void
sb_Pnts::unDefineSpatialAddress( )
{
_imp->_SpatialAddress.x().setUnvalued();
_imp->_SpatialAddress.y().setUnvalued();
_imp->_SpatialAddress.z().setUnvalued();
} // sb_Pnts::unDefineSpatialAddress
void
sb_Pnts::unDefineAttributeID( )
{
_imp->_AttributeIDs.clear();
} // sb_Pnts::unDefineAttributeID
void
sb_Pnts::unDefineLineID( )
{
_imp->_LineIDs.clear();
} // sb_Pnts::unDefineLineID
void
sb_Pnts::unDefineAreaID( )
{
_imp->_AreaIDs.clear();
} // sb_Pnts::unDefineAreaID
void
sb_Pnts::unDefineCompositeID( )
{
_imp->_CompositeIDs.clear();
} // sb_Pnts::unDefineCompositeID
void
sb_Pnts::unDefineRepresentationModuleID( )
{
_imp->_RepresentationModuleIDs.clear();
} // sb_Pnts::unDefineRepresentationModuleID
void
sb_Pnts::unDefineOrientationSpatialAddress( )
{
_imp->_OrientationSpatialAddresss.clear();
} // sb_Pnts::unDefineOrientationSpatialAddress
void
sb_Pnts::unDefineAttributePrimaryForeignID( )
{
_imp->_AttributePrimaryForeignIDs.clear();
} // sb_Pnts::unDefineAttributePrimaryForeignID
void
sb_Pnts::unDefineArrtibuteLabel( )
{
_imp->_ArrtibuteLabels.clear();
} // sb_Pnts::unDefineArrtibuteLabel
void
sb_Pnts::unDefineSymbolOrientationSpatialAddress( )
{
_imp->_SymbolOrientationSpatialAddress.x().setUnvalued();
_imp->_SymbolOrientationSpatialAddress.y().setUnvalued();
_imp->_SymbolOrientationSpatialAddress.z().setUnvalued();
} // sb_Pnts::unDefineSymbolOrientationSpatialAddress
sio_8211Schema&
sb_Pnts::schema_()
{
if ( _schema.empty() )
{
buildSpecificSchema_();
}
return _schema;
} // sb_Pnts::schema_()
void
sb_Pnts::buildSpecificSchema_()
{
_build_schema( _schema );
} // sb_Pnts::buildSpecificSchema_()
| [
"[email protected]"
]
| |
aafd20078941c5da2e63df41a0b804d24107dd0c | 5dd2ec8717248d25c502a7e73182be11dd249fb3 | /media/gpu/vaapi/vp8_rate_control.cc | e717e36f1853e041639d65c1145e4f69f535cfe5 | [
"BSD-3-Clause"
]
| permissive | sunnyps/chromium | 32491c4799a2802fe6ece0c05fb23e00d88020e6 | 9550e527d46350377a6e84cd6e09e1b32bf2d936 | refs/heads/main | 2023-08-30T10:34:39.941312 | 2021-10-09T20:13:18 | 2021-10-09T20:13:18 | 217,597,965 | 0 | 0 | BSD-3-Clause | 2021-09-28T18:16:02 | 2019-10-25T19:01:58 | null | UTF-8 | C++ | false | false | 1,604 | cc | // Copyright 2021 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.
#include "media/gpu/vaapi/vp8_rate_control.h"
#include "base/logging.h"
#include "third_party/libvpx/source/libvpx/vp8/vp8_ratectrl_rtc.h"
namespace media {
namespace {
class LibvpxVP8RateControl : public VP8RateControl {
public:
explicit LibvpxVP8RateControl(std::unique_ptr<libvpx::VP8RateControlRTC> impl)
: impl_(std::move(impl)) {}
~LibvpxVP8RateControl() override = default;
LibvpxVP8RateControl(const LibvpxVP8RateControl&) = delete;
LibvpxVP8RateControl& operator=(const LibvpxVP8RateControl&) = delete;
void UpdateRateControl(
const libvpx::VP8RateControlRtcConfig& rate_control_config) override {
impl_->UpdateRateControl(rate_control_config);
}
int GetQP() const override { return impl_->GetQP(); }
void ComputeQP(const libvpx::VP8FrameParamsQpRTC& frame_params) override {
impl_->ComputeQP(frame_params);
}
void PostEncodeUpdate(uint64_t encoded_frame_size) override {
impl_->PostEncodeUpdate(encoded_frame_size);
}
private:
const std::unique_ptr<libvpx::VP8RateControlRTC> impl_;
};
} // namespace
// static
std::unique_ptr<VP8RateControl> VP8RateControl::Create(
const libvpx::VP8RateControlRtcConfig& config) {
auto impl = libvpx::VP8RateControlRTC::Create(config);
if (!impl) {
DLOG(ERROR) << "Failed creating libvpx::VP8RateControlRTC";
return nullptr;
}
return std::make_unique<LibvpxVP8RateControl>(std::move(impl));
}
} // namespace media
| [
"[email protected]"
]
| |
d92a39e3c4cb92645fff890194d0d0a3cf5b6c8a | c3a114ab4ac66abe3bf0e104f4744a9cbbc30536 | /String_pyramid/main.cpp | 6a24d9ae246800a1ddefa90ebeff2f14d39c1499 | []
| no_license | zahidford/C-plus-plus-Procedural-Programming-Knowlege | 7fde7e775c10967f30bdc2e6e22fb91b35da686e | 692312939f103af416c7bd84097cc98646b0d142 | refs/heads/master | 2020-04-16T06:58:15.079296 | 2019-03-04T01:35:42 | 2019-03-04T01:35:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 849 | cpp | #include <iostream>
#include <string>
using namespace std;
int main()
{
string input_string{};
string pyramid_striing{};
cout << "Please Enter a String of character or whatever!: ";
getline(cin,input_string);
cout << " Here comes your Pyramid "<<endl;
size_t string_length;
string_length = input_string.length();
for (int i{0}, count{0}; i < string_length; ++i){
for( int space{0} ; space <(string_length-(i)) ; ++space)
{
cout <<" ";
}
for(int j{0} ; j<((2*(i+1))-1);++j){
if (j<string_length)
pyramid_striing = input_string.substr(j, 1);
else
pyramid_striing = input_string.substr(j-string_length, 1);
cout << pyramid_striing ;
}
cout <<endl;
}
return 0;
} | [
"[email protected]"
]
| |
cc159846f6a7e9eee0a78a46d6e55371f4a4a76b | 04b2c3c058d9c110be49c7b207d52ad6db6ff1a4 | /VroumVroum/Source/Sandbox/UIDataHolderController.h | 5a29ae31521414647bd6076afbbdb986b7e47c3f | []
| no_license | AxelIngouf/PlushRush | b6c46a81ab67ecc57b646ba6a47fbfad4bfd7045 | 4bfe443dceb9ca0547634692dccb7754e312a35b | refs/heads/master | 2023-03-10T15:19:19.403088 | 2021-03-04T01:24:29 | 2021-03-04T01:24:29 | 342,774,381 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,077 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "EndGameWidget.h"
#include "UIDataHolderController.generated.h"
/**
*
*/
UCLASS()
class SANDBOX_API AUIDataHolderController : public APlayerController
{
GENERATED_BODY()
public:
// Note: that I am using forward declaration Because I am not including the
// widget in the header and to prevent circular dependency.
// You don't need to do that if you include the Widget Class in the .h
// Forward declaration is just putting "class" before the class name so the compiler know it's a
// class but it's not included in the header and don't freak out. Ex. “class UUserWidget”
// Reference UMG Asset in the Editor
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Widgets")
TSubclassOf<class UEndGameWidget> EndGameMainMenu;
// Variable to hold the widget After Creating it.
UEndGameWidget* MyEndGameMainMenu;
// Override BeginPlay()
virtual void BeginPlay() override;
};
| [
"[email protected]"
]
| |
d413e8daf8cea2377e5982220f8d888aa5005108 | da1500e0d3040497614d5327d2461a22e934b4d8 | /components/prefs/persistent_pref_store_unittest.cc | d297858b81258ce76b7dca6308523e5f9c6dc5ae | [
"BSD-3-Clause"
]
| permissive | youtube/cobalt | 34085fc93972ebe05b988b15410e99845efd1968 | acefdaaadd3ef46f10f63d1acae2259e4024d383 | refs/heads/main | 2023-09-01T13:09:47.225174 | 2023-09-01T08:54:54 | 2023-09-01T08:54:54 | 50,049,789 | 169 | 80 | BSD-3-Clause | 2023-09-14T21:50:50 | 2016-01-20T18:11:34 | null | UTF-8 | C++ | false | false | 976 | cc | // Copyright 2017 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.
#include "components/prefs/persistent_pref_store.h"
#include "base/bind.h"
#include "base/run_loop.h"
#include "base/sequence_checker_impl.h"
#include "base/test/scoped_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
void TestCommitPendingWriteWithCallback(
PersistentPrefStore* store,
base::test::ScopedTaskEnvironment* scoped_task_environment) {
base::RunLoop run_loop;
base::SequenceCheckerImpl sequence_checker;
store->CommitPendingWrite(base::BindOnce(
[](base::SequenceCheckerImpl* sequence_checker, base::RunLoop* run_loop) {
EXPECT_TRUE(sequence_checker->CalledOnValidSequence());
run_loop->Quit();
},
base::Unretained(&sequence_checker), base::Unretained(&run_loop)));
scoped_task_environment->RunUntilIdle();
run_loop.Run();
}
| [
"[email protected]"
]
| |
68c565a9a662244cea97ac6cb4ff7b7511e10e40 | fd57ede0ba18642a730cc862c9e9059ec463320b | /rs/cpp/BaseObj.cpp | 1616ed5c0847dd31286e9e7a797528601c4ac8fc | []
| no_license | kailaisi/android-29-framwork | a0c706fc104d62ea5951ca113f868021c6029cd2 | b7090eebdd77595e43b61294725b41310496ff04 | refs/heads/master | 2023-04-27T14:18:52.579620 | 2021-03-08T13:05:27 | 2021-03-08T13:05:27 | 254,380,637 | 1 | 1 | null | 2023-04-15T12:22:31 | 2020-04-09T13:35:49 | C++ | UTF-8 | C++ | false | false | 1,685 | cpp | /*
* Copyright (C) 2012 The Android Open Source Project
*
* 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 "RenderScript.h"
#include "rsCppInternal.h"
using android::RSC::BaseObj;
void * BaseObj::getID() const {
if (mID == nullptr) {
ALOGE("Internal error: Object id 0.");
}
return mID;
}
void * BaseObj::getObjID(const sp<const BaseObj>& o) {
return o == nullptr ? nullptr : o->getID();
}
BaseObj::BaseObj(void *id, sp<RS> rs) {
mRS = rs.get();
mID = id;
}
void BaseObj::checkValid() {
if (mID == 0) {
ALOGE("Invalid object.");
}
}
BaseObj::~BaseObj() {
if (mRS && mRS->getContext()) {
RS::dispatch->ObjDestroy(mRS->getContext(), mID);
}
mRS = nullptr;
mID = nullptr;
}
void BaseObj::updateFromNative() {
const char *name = nullptr;
RS::dispatch->GetName(mRS->getContext(), mID, &name);
mName = name;
}
bool BaseObj::equals(const sp<const BaseObj>& obj) {
// Early-out check to see if both BaseObjs are actually the same.
if (this == obj.get())
return true;
return mID == obj->mID;
}
| [
"[email protected]"
]
| |
7003571dbe00986e420f7a781ab219096c58f55b | 0deb99434144f35908f643f427fbbdea1c46f0bb | /01/calc/calc.cpp | eea102185fd2469461317e2fb2c00e37d7a3e15d | []
| no_license | dlbas/made_2019_cpp | efcdc659806f8392884f6df42a40ef92a974e3e9 | e98572d9eda3c5e19094ecb79ccd3d37aa01fa89 | refs/heads/master | 2023-06-04T11:03:03.731806 | 2021-06-25T09:23:05 | 2021-06-25T09:23:05 | 380,184,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,384 | cpp | #include <string>
#include <iostream>
#include <ctype.h>
#include "calc.hpp"
parse_return eval_expr(std::string s)
{
int i = skip_leading_whitespace(0, s);
return parse_expression(i, s);
}
parse_return parse_expression(int i, std::string s)
{
i = skip_leading_whitespace(i, s);
int state = 0;
parse_return ret;
while (i < s.length())
{
i = skip_leading_whitespace(i, s);
if (isdigit(s.at(i)))
{
parse_return r = parse_number(i, s);
if (r.err)
{
return r;
}
int num = r.val;
i = r.i;
state += num;
}
else if (s[i] == '+')
{
i = skip_leading_whitespace(i + 1, s);
parse_return r = parse_term(i, s);
if (r.err)
{
return r;
}
i = r.i;
state += r.val;
}
else if (s[i] == '-')
{
i = skip_leading_whitespace(i + 1, s);
parse_return r = parse_term(i, s);
if (r.err)
{
return r;
}
i = r.i;
state -= r.val;
}
else if (s[i] == '*')
{
i = skip_leading_whitespace(i + 1, s);
parse_return r = parse_term(i, s);
if (r.err)
{
return r;
}
i = r.i;
state *= r.val;
}
else if (s[i] == '/')
{
i = skip_leading_whitespace(i + 1, s);
parse_return r = parse_term(i, s);
if (r.err)
{
return r;
}
i = r.i;
state /= r.val;
}
else
{
ret.err = true;
std::cerr << "error parsing token " << s[i] << std::endl;
return ret;
}
}
ret.val = state;
return ret;
}
parse_return parse_number(int i, std::string s)
{
int j = i;
while (j < s.length() && isdigit(s[j]))
{
j++;
}
parse_return ret;
std::string substr = s.substr(i, j);
if (substr.length() == 0)
{
ret.i = j;
ret.err = true;
return ret;
}
ret.i = j;
ret.val = std::stoi(substr);
return ret;
}
parse_return parse_term(int i, std::string s)
{
parse_return ret;
if (i >= s.length())
{
ret.err = true;
return ret;
}
ret = parse_number(i, s);
if (ret.err)
{
return ret;
}
i = ret.i;
int n = ret.val;
i = skip_leading_whitespace(ret.i, s);
if (i >= s.length() || s[i] != '*' && s[i] != '/')
{
ret.i = i;
ret.val = n;
return ret;
}
char symbol = s[i];
i = skip_leading_whitespace(i + 1, s);
if (symbol == '*')
{
ret = parse_term(i, s);
ret.val = n * ret.val;
return ret;
}
else if (symbol == '/')
{
ret = parse_term(i, s);
ret.val = n / ret.val;
return ret;
}
std::cerr << "wrong token in term " << s[i] << std::endl;
ret.err = true;
return ret;
}
int skip_leading_whitespace(int i, std::string s)
{
for (int j = i; j < s.length(); j++)
{
if (!isspace(s[j]))
{
return j;
}
}
return i;
} | [
"[email protected]"
]
| |
ba63b77e13961f73362976a354111896789f472d | 06464ea42a4620e6c934e96286afc29d9fde7d0c | /src/clients/c++/request.cc | c8bd985215d3453b145b8613087831f63bb1c09c | [
"BSD-3-Clause"
]
| permissive | xinli94/dl-inference-server | 9a085bb7fa9b3620bd2ca1fb8658aec1ac529f16 | f81dc8c2a67828a6b56b62e007db2810953f0f06 | refs/heads/master | 2020-04-08T13:28:10.121510 | 2018-11-21T17:55:10 | 2018-11-21T17:55:10 | 159,392,396 | 0 | 0 | BSD-3-Clause | 2018-11-27T20:05:19 | 2018-11-27T20:05:18 | null | UTF-8 | C++ | false | false | 73,193 | cc | // Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
//
// 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.
// * Neither the name of NVIDIA CORPORATION 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 ``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.
#include "src/clients/c++/request.h"
#include <iostream>
#include <memory>
#include <curl/curl.h>
#include <google/protobuf/text_format.h>
#include "src/core/constants.h"
namespace nvidia { namespace inferenceserver { namespace client {
//==============================================================================
// Global initialization for libcurl. Libcurl requires global
// initialization before any other threads are created and before any
// curl methods are used. The curl_global static object is used to
// perform this initialization.
class CurlGlobal {
public:
CurlGlobal();
~CurlGlobal();
const Error& Status() const { return err_; }
private:
Error err_;
};
CurlGlobal::CurlGlobal()
: err_(RequestStatusCode::SUCCESS)
{
if (curl_global_init(CURL_GLOBAL_ALL) != 0) {
err_ = Error(RequestStatusCode::INTERNAL, "global initialization failed");
}
}
CurlGlobal::~CurlGlobal()
{
curl_global_cleanup();
}
static CurlGlobal curl_global;
//==============================================================================
// Use map to keep track of gRPC channels. <key, value> : <url, Channel*>
// If context is created on url that has established Channel, then reuse it.
std::map<std::string, std::shared_ptr<grpc::Channel>> grpc_channel_map_;
std::shared_ptr<grpc::Channel> GetChannel(const std::string& url)
{
const auto& channel_itr = grpc_channel_map_.find(url);
if (channel_itr != grpc_channel_map_.end()) {
return channel_itr->second;
} else {
grpc::ChannelArguments arguments;
arguments.SetMaxSendMessageSize(MAX_GRPC_MESSAGE_SIZE);
arguments.SetMaxReceiveMessageSize(MAX_GRPC_MESSAGE_SIZE);
std::shared_ptr<grpc::Channel> channel = grpc::CreateCustomChannel(
url, grpc::InsecureChannelCredentials(), arguments);
grpc_channel_map_.insert(std::make_pair(url, channel));
return channel;
}
}
//==============================================================================
const Error Error::Success(RequestStatusCode::SUCCESS);
Error::Error(RequestStatusCode code, const std::string& msg)
: code_(code), msg_(msg), request_id_(0)
{
}
Error::Error(RequestStatusCode code)
: code_(code), request_id_(0)
{
}
Error::Error(const RequestStatus& status)
: Error(status.code(), status.msg())
{
server_id_ = status.server_id();
request_id_ = status.request_id();
}
std::ostream&
operator<<(std::ostream& out, const Error& err)
{
out
<< "[" << err.server_id_ << " " << err.request_id_ << "] "
<< RequestStatusCode_Name(err.code_);
if (!err.msg_.empty()) {
out << " - " << err.msg_;
}
return out;
}
//==============================================================================
ServerHealthContext::ServerHealthContext(bool verbose)
: verbose_(verbose)
{
}
//==============================================================================
ServerStatusContext::ServerStatusContext(bool verbose)
: verbose_(verbose)
{
}
//==============================================================================
class OptionsImpl : public InferContext::Options {
public:
OptionsImpl();
~OptionsImpl() = default;
size_t BatchSize() const override { return batch_size_; }
void SetBatchSize(size_t batch_size) override { batch_size_ = batch_size; }
Error AddRawResult(
const std::shared_ptr<InferContext::Output>& output) override;
Error AddClassResult(
const std::shared_ptr<InferContext::Output>& output, uint64_t k) override;
// Options for an output
struct OutputOptions {
OutputOptions(InferContext::Result::ResultFormat f, uint64_t n=0)
: result_format(f), u64(n) { }
InferContext::Result::ResultFormat result_format;
uint64_t u64;
};
using OutputOptionsPair =
std::pair<std::shared_ptr<InferContext::Output>, OutputOptions>;
const std::vector<OutputOptionsPair>& Outputs() const { return outputs_; }
private:
size_t batch_size_;
std::vector<OutputOptionsPair> outputs_;
};
OptionsImpl::OptionsImpl()
: batch_size_(0)
{
}
Error
OptionsImpl::AddRawResult(const std::shared_ptr<InferContext::Output>& output)
{
outputs_.emplace_back(
std::make_pair(
output, OutputOptions(InferContext::Result::ResultFormat::RAW)));
return Error::Success;
}
Error
OptionsImpl::AddClassResult(
const std::shared_ptr<InferContext::Output>& output, uint64_t k)
{
outputs_.emplace_back(
std::make_pair(
output, OutputOptions(InferContext::Result::ResultFormat::CLASS, k)));
return Error::Success;
}
Error
InferContext::Options::Create(std::unique_ptr<InferContext::Options>* options)
{
options->reset(new OptionsImpl());
return Error::Success;
}
//==============================================================================
class InputImpl : public InferContext::Input {
public:
InputImpl(const ModelInput& mio);
InputImpl(const InputImpl& obj);
~InputImpl() = default;
const std::string& Name() const override { return mio_.name(); }
size_t ByteSize() const override { return byte_size_; }
DataType DType() const override { return mio_.data_type(); }
ModelInput::Format Format() const override { return mio_.format(); }
const DimsList& Dims() const override { return mio_.dims(); }
void SetBatchSize(size_t batch_size) { batch_size_ = batch_size; }
Error Reset() override;
Error SetRaw(const std::vector<uint8_t>& input) override;
Error SetRaw(const uint8_t* input, size_t input_byte_size) override;
// Copy into 'buf' up to 'size' bytes of this input's data. Return
// the actual amount copied in 'input_bytes' and if the end of input
// is reached in 'end_of_input'
Error GetNext(
uint8_t* buf, size_t size, size_t* input_bytes, bool* end_of_input);
// Copy the pointer of the raw buffer at 'batch_idx' into 'buf'
Error GetRaw(size_t batch_idx, const uint8_t** buf) const;
// Prepare to send this input as part of a request.
Error PrepareForRequest();
private:
const ModelInput mio_;
const size_t byte_size_;
size_t batch_size_;
std::vector<const uint8_t*> bufs_;
size_t bufs_idx_, buf_pos_;
};
InputImpl::InputImpl(const ModelInput& mio)
: mio_(mio), byte_size_(GetSize(mio)),
batch_size_(0), bufs_idx_(0), buf_pos_(0)
{
}
InputImpl::InputImpl(const InputImpl& obj)
: mio_(obj.mio_), byte_size_(obj.byte_size_),
batch_size_(obj.batch_size_), bufs_idx_(0), buf_pos_(0)
{
// Set raw inputs
for (size_t batch_idx = 0; batch_idx < batch_size_; batch_idx++) {
const uint8_t* data_ptr;
obj.GetRaw(batch_idx, &data_ptr);
SetRaw(data_ptr, byte_size_);
}
}
Error
InputImpl::SetRaw(const uint8_t* input, size_t input_byte_size)
{
if (input_byte_size != byte_size_) {
bufs_.clear();
return
Error(
RequestStatusCode::INVALID_ARG,
"invalid size " + std::to_string(input_byte_size) +
" bytes for input '" + Name() + "', expects " +
std::to_string(byte_size_) + " bytes");
}
if (bufs_.size() >= batch_size_) {
bufs_.clear();
return
Error(
RequestStatusCode::INVALID_ARG,
"expecting " + std::to_string(batch_size_) +
" invocations of SetRaw for input '" + Name() +
"', one per batch entry");
}
bufs_.push_back(input);
return Error::Success;
}
Error
InputImpl::SetRaw(const std::vector<uint8_t>& input)
{
return SetRaw(&input[0], input.size());
}
Error
InputImpl::GetNext(
uint8_t* buf, size_t size, size_t* input_bytes, bool* end_of_input)
{
size_t total_size = 0;
while ((bufs_idx_ < bufs_.size()) && (size > 0)) {
const size_t csz = std::min(byte_size_ - buf_pos_, size);
if (csz > 0) {
const uint8_t* input_ptr = bufs_[bufs_idx_] + buf_pos_;
std::copy(input_ptr, input_ptr + csz, buf);
buf_pos_ += csz;
buf += csz;
size -= csz;
total_size += csz;
}
if (buf_pos_ == byte_size_) {
bufs_idx_++;
buf_pos_ = 0;
}
}
*input_bytes = total_size;
*end_of_input = (bufs_idx_ >= bufs_.size());
return Error::Success;
}
Error
InputImpl::GetRaw(
size_t batch_idx, const uint8_t** buf) const
{
if (batch_idx >= batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
" requested for input '" + Name() +
"', batch size is " + std::to_string(batch_size_));
}
*buf = bufs_[batch_idx];
return Error::Success;
}
Error
InputImpl::Reset()
{
bufs_.clear();
bufs_idx_ = 0;
buf_pos_ = 0;
return Error::Success;
}
Error
InputImpl::PrepareForRequest()
{
if (bufs_.size() != batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"expecting " + std::to_string(batch_size_) +
" invocations of SetRaw for input '" + Name() +
"', have " + std::to_string(bufs_.size()));
}
// Reset position so request sends entire input.
bufs_idx_ = 0;
buf_pos_ = 0;
return Error::Success;
}
//==============================================================================
class OutputImpl : public InferContext::Output {
public:
OutputImpl(const ModelOutput& mio);
~OutputImpl() = default;
const std::string& Name() const override { return mio_.name(); }
size_t ByteSize() const override { return byte_size_; }
DataType DType() const override { return mio_.data_type(); }
const DimsList& Dims() const override { return mio_.dims(); }
InferContext::Result::ResultFormat ResultFormat() const {
return result_format_;
}
void SetResultFormat(InferContext::Result::ResultFormat result_format) {
result_format_ = result_format;
}
private:
const ModelOutput mio_;
const size_t byte_size_;
InferContext::Result::ResultFormat result_format_;
};
OutputImpl::OutputImpl(const ModelOutput& mio)
: mio_(mio), byte_size_(GetSize(mio)),
result_format_(InferContext::Result::ResultFormat::RAW)
{
}
//==============================================================================
class ResultImpl : public InferContext::Result {
public:
ResultImpl(
const std::shared_ptr<InferContext::Output>& output, uint64_t batch_size,
InferContext::Result::ResultFormat result_format);
~ResultImpl() = default;
const std::string& ModelName() const override { return model_name_; }
uint32_t ModelVersion() const override { return model_version_; }
const std::shared_ptr<InferContext::Output> GetOutput() const override {
return output_;
}
Error GetRaw(
size_t batch_idx, const std::vector<uint8_t>** buf) const override;
Error GetRawAtCursor(
size_t batch_idx, const uint8_t** buf, size_t adv_byte_size) override;
Error GetClassCount(size_t batch_idx, size_t* cnt) const override;
Error GetClassAtCursor(size_t batch_idx, ClassResult* result) override;
Error ResetCursors() override;
Error ResetCursor(size_t batch_idx) override;
// Get the result format for this result.
InferContext::Result::ResultFormat ResultFormat() const {
return result_format_;
}
// Set information about the model that produced this result.
void SetModel(const std::string& name, const uint32_t version) {
model_name_ = name;
model_version_ = version;
}
// Set results for a CLASS format result.
void SetClassResult(const InferResponseHeader::Output& result) {
class_result_ = result;
}
// For RAW format result, copy into the output up to 'size' bytes of
// output data from 'buf'. Return the actual amount copied in
// 'result_bytes'.
Error SetNextRawResult(
const uint8_t* buf, size_t size, size_t* result_bytes);
private:
const std::shared_ptr<InferContext::Output> output_;
const size_t byte_size_;
const size_t batch_size_;
const InferContext::Result::ResultFormat result_format_;
std::vector<std::vector<uint8_t>> bufs_;
size_t bufs_idx_;
std::vector<size_t> bufs_pos_;
std::string model_name_;
uint32_t model_version_;
InferResponseHeader::Output class_result_;
std::vector<size_t> class_pos_;
};
ResultImpl::ResultImpl(
const std::shared_ptr<InferContext::Output>& output, uint64_t batch_size,
InferContext::Result::ResultFormat result_format)
: output_(output), byte_size_(output->ByteSize()),
batch_size_(batch_size), result_format_(result_format),
bufs_(batch_size), bufs_idx_(0), bufs_pos_(batch_size),
class_pos_(batch_size)
{
}
Error
ResultImpl::GetRaw(
size_t batch_idx, const std::vector<uint8_t>** buf) const
{
if (result_format_ != InferContext::Result::ResultFormat::RAW) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"raw result not available for non-RAW output '" +
output_->Name() + "'");
}
if (batch_idx >= batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
" requested for output '" + output_->Name() +
"', batch size is " + std::to_string(batch_size_));
}
*buf = &bufs_[batch_idx];
return Error::Success;
}
Error
ResultImpl::GetRawAtCursor(
size_t batch_idx, const uint8_t** buf, size_t adv_byte_size)
{
if (result_format_ != InferContext::Result::ResultFormat::RAW) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"raw result not available for non-RAW output '" +
output_->Name() + "'");
}
if (batch_idx >= batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
"requested for output '" + output_->Name() +
"', batch size is " + std::to_string(batch_size_));
}
if ((bufs_pos_[batch_idx] + adv_byte_size) > byte_size_) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"attempt to read beyond end of result for output output '" +
output_->Name() + "'");
}
*buf = &bufs_[batch_idx][bufs_pos_[batch_idx]];
bufs_pos_[batch_idx] += adv_byte_size;
return Error::Success;
}
Error
ResultImpl::GetClassCount(size_t batch_idx, size_t* cnt) const
{
if (result_format_ != InferContext::Result::ResultFormat::CLASS) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"class result not available for non-CLASS output '" +
output_->Name() + "'");
}
// Number of classifications should equal expected batch size but
// check both to be careful and to protext class_pos_ accesses.
if ((batch_idx >= (size_t)class_result_.batch_classes().size()) ||
(batch_idx >= batch_size_)) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
"requested for output '" + output_->Name() +
"', batch size is " + std::to_string(batch_size_));
}
const InferResponseHeader::Output::Classes& classes =
class_result_.batch_classes(batch_idx);
*cnt = classes.cls().size();
return Error::Success;
}
Error
ResultImpl::GetClassAtCursor(
size_t batch_idx, InferContext::Result::ClassResult* result)
{
if (result_format_ != InferContext::Result::ResultFormat::CLASS) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"class result not available for non-CLASS output '" +
output_->Name() + "'");
}
// Number of classifications should equal expected batch size but
// check both to be careful and to protext class_pos_ accesses.
if ((batch_idx >= (size_t)class_result_.batch_classes().size()) ||
(batch_idx >= batch_size_)) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
"requested for output '" + output_->Name() +
"', batch size is " + std::to_string(batch_size_));
}
const InferResponseHeader::Output::Classes& classes =
class_result_.batch_classes(batch_idx);
if (class_pos_[batch_idx] >= (size_t)classes.cls().size()) {
return
Error(
RequestStatusCode::UNSUPPORTED,
"attempt to read beyond end of result for output output '" +
output_->Name() + "'");
}
const InferResponseHeader::Output::Class& cls =
classes.cls(class_pos_[batch_idx]);
result->idx = cls.idx();
result->value = cls.value();
result->label = cls.label();
class_pos_[batch_idx]++;
return Error::Success;
}
Error
ResultImpl::ResetCursors()
{
std::fill(bufs_pos_.begin(), bufs_pos_.end(), 0);
std::fill(class_pos_.begin(), class_pos_.end(), 0);
return Error::Success;
}
Error
ResultImpl::ResetCursor(size_t batch_idx)
{
if (batch_idx >= batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"unexpected batch entry " + std::to_string(batch_idx) +
"requested for output '" + output_->Name() +
"', batch size is " + std::to_string(batch_size_));
}
bufs_pos_[batch_idx] = 0;
class_pos_[batch_idx] = 0;
return Error::Success;
}
Error
ResultImpl::SetNextRawResult(
const uint8_t* buf, size_t size, size_t* result_bytes)
{
size_t total_size = 0;
while ((bufs_idx_ < bufs_.size()) && (size > 0)) {
const size_t csz = std::min(byte_size_ - bufs_pos_[bufs_idx_], size);
if (csz > 0) {
std::copy(buf, buf + csz, std::back_inserter(bufs_[bufs_idx_]));
bufs_pos_[bufs_idx_] += csz;
buf += csz;
size -= csz;
total_size += csz;
}
if (bufs_pos_[bufs_idx_] == byte_size_) {
bufs_idx_++;
}
}
*result_bytes = total_size;
return Error::Success;
}
//==============================================================================
InferContext::RequestTimers::RequestTimers()
{
Reset();
}
Error
InferContext::RequestTimers::Reset()
{
request_start_.tv_sec = 0;
request_end_.tv_sec = 0;
send_start_.tv_sec = 0;
send_end_.tv_sec = 0;
receive_start_.tv_sec = 0;
receive_end_.tv_sec = 0;
request_start_.tv_nsec = 0;
request_end_.tv_nsec = 0;
send_start_.tv_nsec = 0;
send_end_.tv_nsec = 0;
receive_start_.tv_nsec = 0;
receive_end_.tv_nsec = 0;
return Error::Success;
}
Error
InferContext::RequestTimers::Record(Kind kind)
{
switch (kind) {
case Kind::REQUEST_START:
clock_gettime(CLOCK_MONOTONIC, &request_start_);
break;
case Kind::REQUEST_END:
clock_gettime(CLOCK_MONOTONIC, &request_end_);
break;
case Kind::SEND_START:
clock_gettime(CLOCK_MONOTONIC, &send_start_);
break;
case Kind::SEND_END:
clock_gettime(CLOCK_MONOTONIC, &send_end_);
break;
case Kind::RECEIVE_START:
clock_gettime(CLOCK_MONOTONIC, &receive_start_);
break;
case Kind::RECEIVE_END:
clock_gettime(CLOCK_MONOTONIC, &receive_end_);
break;
}
return Error::Success;
}
//==============================================================================
class RequestImpl : public InferContext::Request {
public:
virtual ~RequestImpl() = default;
uint64_t Id() const { return id_; };
// Initialize 'requested_results_' according to 'batch_size' and
// 'requested_outs' as the placeholder for the results
Error InitializeRequestedResults(
const std::vector<std::shared_ptr<InferContext::Output>>& requested_outs,
const size_t batch_size);
// Return the results of the request. 'ready_' should always be checked
// before calling GetResults() to ensure the request has been completed.
virtual Error GetResults(
std::vector<std::unique_ptr<InferContext::Result>>* results) = 0;
protected:
RequestImpl(const uint64_t id);
// Helper function called after inference to set non-RAW results in
// 'requested_results_'.
Error PostRunProcessing(
std::vector<std::unique_ptr<InferContext::Result>>& results,
const InferResponseHeader& infer_response);
friend class InferContext;
// Identifier seen by user
uint64_t id_;
// Internal identifier for asynchronous call
uintptr_t run_index_;
// Indicating if the request has been completed.
bool ready_;
// The timer for infer request.
InferContext::RequestTimers timer_;
// Results being collected for the requested outputs from inference
// server response.
std::vector<std::unique_ptr<InferContext::Result>> requested_results_;
// Current positions within output vectors when processing response.
size_t result_pos_idx_;
};
RequestImpl::RequestImpl(const uint64_t id)
: id_(id), ready_(false), result_pos_idx_(0)
{
}
Error
RequestImpl::InitializeRequestedResults(
const std::vector<std::shared_ptr<InferContext::Output>>& requested_outs,
const size_t batch_size)
{
// Initialize the results vector to collect the requested results.
requested_results_.clear();
for (const auto& io : requested_outs) {
std::unique_ptr<ResultImpl>
rp(
new ResultImpl(
io, batch_size,
reinterpret_cast<OutputImpl*>(io.get())->ResultFormat()));
requested_results_.emplace_back(std::move(rp));
}
return Error::Success;
}
Error
RequestImpl::PostRunProcessing(
std::vector<std::unique_ptr<InferContext::Result>>& results,
const InferResponseHeader& infer_response)
{
// At this point, the RAW requested results have their result values
// set. Now need to initialize non-RAW results.
for (auto& rr : results) {
ResultImpl* r = reinterpret_cast<ResultImpl*>(rr.get());
r->SetModel(infer_response.model_name(), infer_response.model_version());
switch (r->ResultFormat()) {
case InferContext::Result::ResultFormat::RAW:
r->ResetCursors();
break;
case InferContext::Result::ResultFormat::CLASS: {
for (const auto& ir : infer_response.output()) {
if (ir.name() == r->GetOutput()->Name()) {
r->SetClassResult(ir);
break;
}
}
break;
}
}
}
return Error::Success;
}
//==============================================================================
InferContext::InferContext(
const std::string& model_name, int model_version, bool verbose)
: model_name_(model_name), model_version_(model_version),
verbose_(verbose), total_input_byte_size_(0), batch_size_(0),
async_request_id_(0), worker_(), exiting_(true)
{
}
Error
InferContext::GetInput(
const std::string& name, std::shared_ptr<Input>* input) const
{
for (const auto& io : inputs_) {
if (io->Name() == name) {
*input = io;
return Error::Success;
}
}
return
Error(
RequestStatusCode::INVALID_ARG,
"unknown input '" + name + "' for '" + model_name_ + "'");
}
Error
InferContext::GetOutput(
const std::string& name, std::shared_ptr<Output>* output) const
{
for (const auto& io : outputs_) {
if (io->Name() == name) {
*output = io;
return Error::Success;
}
}
return
Error(
RequestStatusCode::INVALID_ARG,
"unknown output '" + name + "' for '" + model_name_ + "'");
}
Error
InferContext::SetRunOptions(const InferContext::Options& boptions)
{
const OptionsImpl& options = reinterpret_cast<const OptionsImpl&>(boptions);
if (options.BatchSize() > max_batch_size_) {
return
Error(
RequestStatusCode::INVALID_ARG,
"run batch size " + std::to_string(options.BatchSize()) +
" exceeds maximum batch size " + std::to_string(max_batch_size_) +
" allowed for model '" + model_name_ + "'");
}
batch_size_ = options.BatchSize();
total_input_byte_size_ = 0;
// Create the InferRequestHeader protobuf. This protobuf will be
// used for all subsequent requests.
infer_request_.Clear();
infer_request_.set_batch_size(batch_size_);
for (const auto& io : inputs_) {
reinterpret_cast<InputImpl*>(io.get())->SetBatchSize(batch_size_);
total_input_byte_size_ += io->ByteSize() * batch_size_;
auto rinput = infer_request_.add_input();
rinput->set_name(io->Name());
rinput->set_byte_size(io->ByteSize());
}
requested_outputs_.clear();
for (const auto& p : options.Outputs()) {
const std::shared_ptr<Output>& output = p.first;
const OptionsImpl::OutputOptions& ooptions = p.second;
reinterpret_cast<OutputImpl*>(output.get())->
SetResultFormat(ooptions.result_format);
requested_outputs_.emplace_back(output);
auto routput = infer_request_.add_output();
routput->set_name(output->Name());
routput->set_byte_size(output->ByteSize());
if (ooptions.result_format == Result::ResultFormat::CLASS) {
routput->mutable_cls()->set_count(ooptions.u64);
}
}
return Error::Success;
}
Error
InferContext::GetStat(Stat* stat)
{
stat->completed_request_count = context_stat_.completed_request_count;
stat->cumulative_total_request_time_ns =
context_stat_.cumulative_total_request_time_ns;
stat->cumulative_send_time_ns = context_stat_.cumulative_send_time_ns;
stat->cumulative_receive_time_ns = context_stat_.cumulative_receive_time_ns;
return Error::Success;
}
Error InferContext::UpdateStat(const RequestTimers& timer)
{
uint64_t request_start_ns =
timer.request_start_.tv_sec * NANOS_PER_SECOND +
timer.request_start_.tv_nsec;
uint64_t request_end_ns =
timer.request_end_.tv_sec * NANOS_PER_SECOND +
timer.request_end_.tv_nsec;
uint64_t send_start_ns =
timer.send_start_.tv_sec * NANOS_PER_SECOND +
timer.send_start_.tv_nsec;
uint64_t send_end_ns =
timer.send_end_.tv_sec * NANOS_PER_SECOND +
timer.send_end_.tv_nsec;
uint64_t receive_start_ns =
timer.receive_start_.tv_sec * NANOS_PER_SECOND +
timer.receive_start_.tv_nsec;
uint64_t receive_end_ns =
timer.receive_end_.tv_sec * NANOS_PER_SECOND +
timer.receive_end_.tv_nsec;
if ((request_start_ns >= request_end_ns) ||
(send_start_ns > send_end_ns) || (receive_start_ns > receive_end_ns)) {
return Error(RequestStatusCode::INVALID_ARG, "Timer not set correctly.");
}
uint64_t request_time_ns = request_end_ns - request_start_ns;
uint64_t send_time_ns = send_end_ns - send_start_ns;
uint64_t receive_time_ns = receive_end_ns - receive_start_ns;
context_stat_.completed_request_count++;
context_stat_.cumulative_total_request_time_ns += request_time_ns;
context_stat_.cumulative_send_time_ns += send_time_ns;
context_stat_.cumulative_receive_time_ns += receive_time_ns;
return Error::Success;
}
Error
InferContext::GetReadyAsyncRequest(
std::shared_ptr<Request>* request, bool wait)
{
if (ongoing_async_requests_.size() == 0) {
return Error(
RequestStatusCode::UNAVAILABLE,
"No asynchronous requests have been sent");
}
Error err;
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait(lock,
[&err, request, this, wait] {
for (auto& ongoing_async_request : this->ongoing_async_requests_) {
if (std::static_pointer_cast<RequestImpl>(
ongoing_async_request.second)->ready_) {
*request = ongoing_async_request.second;
err = Error::Success;
return true;
}
}
if (!wait) {
err = Error(RequestStatusCode::UNAVAILABLE, "No completed request.");
return true;
} else {
return false;
}
});
lock.unlock();
return err;
}
Error
InferContext::IsRequestReady(
const std::shared_ptr<Request>& async_request, bool wait)
{
if (ongoing_async_requests_.size() == 0) {
return Error(
RequestStatusCode::INVALID_ARG,
"No asynchronous requests have been sent");
}
std::shared_ptr<RequestImpl> request =
std::static_pointer_cast<RequestImpl>(async_request);
auto itr = ongoing_async_requests_.find(request->run_index_);
if (itr == ongoing_async_requests_.end()) {
return Error(
RequestStatusCode::INVALID_ARG, "No matched asynchronous request found.");
}
Error err = Error::Success;
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait(lock,
[&err, &request, wait] {
if (!request->ready_) {
if (wait) {
return false;
} else {
err = Error(RequestStatusCode::UNAVAILABLE, "Request is not ready.");
}
}
return true;
});
if (!err.IsOk()) {
lock.unlock();
return err;
} else {
ongoing_async_requests_.erase(itr->first);
}
lock.unlock();
return Error::Success;
}
//==============================================================================
ProfileContext::ProfileContext(bool verbose)
: verbose_(verbose)
{
}
Error
ProfileContext::StartProfile()
{
return SendCommand("start");
}
Error
ProfileContext::StopProfile()
{
return SendCommand("stop");
}
//==============================================================================
Error
ServerHealthHttpContext::Create(
std::unique_ptr<ServerHealthContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ServerHealthContext*>(
new ServerHealthHttpContext(server_url, verbose)));
return Error::Success;
}
ServerHealthHttpContext::ServerHealthHttpContext(
const std::string& server_url, bool verbose)
: ServerHealthContext(verbose), url_(server_url + "/" + kHealthRESTEndpoint)
{
}
Error
ServerHealthHttpContext::GetHealth(const std::string& url, bool* health)
{
if (!curl_global.Status().IsOk()) {
return curl_global.Status();
}
CURL* curl = curl_easy_init();
if (!curl) {
return
Error(RequestStatusCode::INTERNAL, "failed to initialize HTTP client");
}
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");
if (verbose_) {
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
}
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) {
curl_easy_cleanup(curl);
return
Error(
RequestStatusCode::INTERNAL, "HTTP client failed: " +
std::string(curl_easy_strerror(res)));
}
// Must use 64-bit integer with curl_easy_getinfo
int64_t http_code;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_easy_cleanup(curl);
*health = (http_code == 200) ? true : false;
return Error::Success;
}
Error
ServerHealthHttpContext::GetReady(bool* ready)
{
return GetHealth(url_ + "/ready", ready);
}
Error
ServerHealthHttpContext::GetLive(bool* live)
{
return GetHealth(url_ + "/live", live);
}
//==============================================================================
Error
ServerStatusHttpContext::Create(
std::unique_ptr<ServerStatusContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ServerStatusContext*>(
new ServerStatusHttpContext(server_url, verbose)));
return Error::Success;
}
Error
ServerStatusHttpContext::Create(
std::unique_ptr<ServerStatusContext>* ctx,
const std::string& server_url, const std::string& model_name, bool verbose)
{
ctx->reset(
static_cast<ServerStatusContext*>(
new ServerStatusHttpContext(server_url, model_name, verbose)));
return Error::Success;
}
ServerStatusHttpContext::ServerStatusHttpContext(
const std::string& server_url, bool verbose)
: ServerStatusContext(verbose), url_(server_url + "/" + kStatusRESTEndpoint)
{
}
ServerStatusHttpContext::ServerStatusHttpContext(
const std::string& server_url, const std::string& model_name, bool verbose)
: ServerStatusContext(verbose),
url_(server_url + "/" + kStatusRESTEndpoint + "/" + model_name)
{
}
Error
ServerStatusHttpContext::GetServerStatus(ServerStatus* server_status)
{
server_status->Clear();
request_status_.Clear();
response_.clear();
if (!curl_global.Status().IsOk()) {
return curl_global.Status();
}
CURL* curl = curl_easy_init();
if (!curl) {
return
Error(RequestStatusCode::INTERNAL, "failed to initialize HTTP client");
}
// Want binary representation of the status.
std::string full_url = url_ + "?format=binary";
curl_easy_setopt(curl, CURLOPT_URL, full_url.c_str());
curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");
if (verbose_) {
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
}
// response headers handled by ResponseHeaderHandler()
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, ResponseHeaderHandler);
curl_easy_setopt(curl, CURLOPT_HEADERDATA, this);
// response data handled by ResponseHandler()
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ResponseHandler);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, this);
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) {
curl_easy_cleanup(curl);
return
Error(
RequestStatusCode::INTERNAL, "HTTP client failed: " +
std::string(curl_easy_strerror(res)));
}
// Must use 64-bit integer with curl_easy_getinfo
int64_t http_code;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_easy_cleanup(curl);
// Should have a request status, if not then create an error status.
if (request_status_.code() == RequestStatusCode::INVALID) {
request_status_.Clear();
request_status_.set_code(RequestStatusCode::INTERNAL);
request_status_.set_msg("status request did not return status");
}
// If request has failing HTTP status or the request's explicit
// status is not SUCCESS, then signal an error.
if ((http_code != 200) ||
(request_status_.code() != RequestStatusCode::SUCCESS)) {
return Error(request_status_);
}
// Parse the response as a ModelConfigList...
if (!server_status->ParseFromString(response_)) {
return Error(RequestStatusCode::INTERNAL, "failed to parse server status");
}
if (verbose_) {
std::cout << server_status->DebugString() << std::endl;
}
return Error(request_status_);
}
size_t
ServerStatusHttpContext::ResponseHeaderHandler(
void* contents, size_t size, size_t nmemb, void* userp)
{
ServerStatusHttpContext* ctx =
reinterpret_cast<ServerStatusHttpContext*>(userp);
char* buf = reinterpret_cast<char*>(contents);
size_t byte_size = size * nmemb;
size_t idx = strlen(kStatusHTTPHeader);
if ((idx < byte_size) &&
!strncasecmp(buf, kStatusHTTPHeader, idx)) {
while ((idx < byte_size) && (buf[idx] != ':')) {
++idx;
}
if (idx < byte_size) {
std::string hdr(buf + idx + 1, byte_size - idx - 1);
if (!google::protobuf::TextFormat::ParseFromString(
hdr, &ctx->request_status_)) {
ctx->request_status_.Clear();
}
}
}
return byte_size;
}
size_t
ServerStatusHttpContext::ResponseHandler(
void* contents, size_t size, size_t nmemb, void* userp)
{
ServerStatusHttpContext* ctx =
reinterpret_cast<ServerStatusHttpContext*>(userp);
uint8_t* buf = reinterpret_cast<uint8_t*>(contents);
size_t result_bytes = size * nmemb;
std::copy(buf, buf + result_bytes, std::back_inserter(ctx->response_));
return result_bytes;
}
//==============================================================================
class HttpRequestImpl : public RequestImpl {
public:
HttpRequestImpl(
const uint64_t id,
const std::vector<std::shared_ptr<InferContext::Input>> inputs);
~HttpRequestImpl();
// Initialize the request for HTTP transfer on top of
// RequestImpl.InitializeRequestedResults()
Error InitializeRequest(
const std::vector<std::shared_ptr<InferContext::Output>>& requested_outputs,
const size_t batch_size);
// Copy into 'buf' up to 'size' bytes of input data. Return the
// actual amount copied in 'input_bytes'.
Error GetNextInput(uint8_t* buf, size_t size, size_t* input_bytes);
// Copy into the context 'size' bytes of result data from
// 'buf'. Return the actual amount copied in 'result_<bytes'.
Error SetNextRawResult(
const uint8_t* buf, size_t size, size_t* result_bytes);
// @see RequestImpl.GetResults()
Error GetResults(
std::vector<std::unique_ptr<InferContext::Result>>* results) override;
private:
friend class InferHttpContext;
// Pointer to easy handle that is processing the request
CURL* easy_handle_;
// Pointer to the list of the HTTP request header, keep it such that it will
// be valid during the transfer and can be freed once transfer is completed.
struct curl_slist * header_list_;
// Status code for the HTTP request.
CURLcode http_status_;
// RequestStatus received in server response.
RequestStatus request_status_;
// Buffer that accumulates the serialized InferResponseHeader at the
// end of the body.
std::string infer_response_buffer_;
// The inputs for the request. For asynchronous request, it should
// be a deep copy of the inputs set by the user in case the user modifies
// them for another request during the HTTP transfer.
std::vector<std::shared_ptr<InferContext::Input>> inputs_;
// Current positions within input vectors when sending request.
size_t input_pos_idx_;
};
HttpRequestImpl::HttpRequestImpl(
const uint64_t id,
const std::vector<std::shared_ptr<InferContext::Input>> inputs)
: RequestImpl(id), easy_handle_(curl_easy_init()), header_list_(NULL),
inputs_(inputs), input_pos_idx_(0)
{
if (easy_handle_ != NULL) {
run_index_ = reinterpret_cast<uintptr_t>(easy_handle_);
}
}
HttpRequestImpl::~HttpRequestImpl()
{
if (easy_handle_ != NULL) {
curl_easy_cleanup(easy_handle_);
}
}
Error
HttpRequestImpl::InitializeRequest(
const std::vector<std::shared_ptr<InferContext::Output>>& requested_outputs,
const size_t batch_size)
{
infer_response_buffer_.clear();
// Reset all the position indicators so that we send all inputs
// correctly.
request_status_.Clear();
for (auto& io : inputs_) {
reinterpret_cast<InputImpl*>(io.get())->PrepareForRequest();
}
input_pos_idx_ = 0;
result_pos_idx_ = 0;
return RequestImpl::InitializeRequestedResults(requested_outputs, batch_size);
}
Error
HttpRequestImpl::GetNextInput(uint8_t* buf, size_t size, size_t* input_bytes)
{
*input_bytes = 0;
while ((size > 0) && (input_pos_idx_ < inputs_.size())) {
InputImpl* io =
reinterpret_cast<InputImpl*>(inputs_[input_pos_idx_].get());
size_t ib = 0;
bool eoi = false;
Error err = io->GetNext(buf, size, &ib, &eoi);
if (!err.IsOk()) {
return err;
}
// If input was completely read then move to the next.
if (eoi) {
input_pos_idx_++;
}
if (ib != 0) {
*input_bytes += ib;
size -= ib;
buf += ib;
}
}
// Sent all input bytes
if (input_pos_idx_ >= inputs_.size()) {
timer_.Record(InferContext::RequestTimers::Kind::SEND_END);
}
return Error::Success;
}
Error
HttpRequestImpl::SetNextRawResult(
const uint8_t* buf, size_t size, size_t* result_bytes)
{
*result_bytes = 0;
while ((size > 0) && (result_pos_idx_ < requested_results_.size())) {
ResultImpl* io =
reinterpret_cast<ResultImpl*>(requested_results_[result_pos_idx_].get());
size_t ob = 0;
// Only try to read raw result for RAW
if (io->ResultFormat() == InferContext::Result::ResultFormat::RAW) {
Error err = io->SetNextRawResult(buf, size, &ob);
if (!err.IsOk()) {
return err;
}
}
// If output couldn't accept any more bytes then move to the next.
if (ob == 0) {
result_pos_idx_++;
} else {
*result_bytes += ob;
size -= ob;
buf += ob;
}
}
// If there is any bytes left then they belong to the response
// header, since all the RAW results have been filled.
if (size > 0) {
infer_response_buffer_.append(reinterpret_cast<const char*>(buf), size);
*result_bytes += size;
}
return Error::Success;
}
Error
HttpRequestImpl::GetResults(
std::vector<std::unique_ptr<InferContext::Result>>* results)
{
InferResponseHeader infer_response;
if (http_status_ != CURLE_OK) {
curl_slist_free_all(header_list_);
requested_results_.clear();
return
Error(
RequestStatusCode::INTERNAL, "HTTP client failed: " +
std::string(curl_easy_strerror(http_status_)));
}
// Must use 64-bit integer with curl_easy_getinfo
int64_t http_code;
curl_easy_getinfo(easy_handle_, CURLINFO_RESPONSE_CODE, &http_code);
curl_slist_free_all(header_list_);
// Should have a request status, if not then create an error status.
if (request_status_.code() == RequestStatusCode::INVALID) {
request_status_.Clear();
request_status_.set_code(RequestStatusCode::INTERNAL);
request_status_.set_msg("infer request did not return status");
}
// If request has failing HTTP status or the request's explicit
// status is not SUCCESS, then signal an error.
if ((http_code != 200) ||
(request_status_.code() != RequestStatusCode::SUCCESS)) {
requested_results_.clear();
return Error(request_status_);
}
// The infer response header should be available...
if (infer_response_buffer_.empty()) {
requested_results_.clear();
return
Error(
RequestStatusCode::INTERNAL,
"infer request did not return result header");
}
infer_response.ParseFromString(infer_response_buffer_);
PostRunProcessing(requested_results_, infer_response);
results->swap(requested_results_);
return Error(request_status_);
}
//==============================================================================
Error
InferHttpContext::Create(
std::unique_ptr<InferContext>* ctx, const std::string& server_url,
const std::string& model_name, int model_version, bool verbose)
{
InferHttpContext* ctx_ptr =
new InferHttpContext(server_url, model_name, model_version, verbose);
// Get status of the model and create the inputs and outputs.
std::unique_ptr<ServerStatusContext> sctx;
Error err =
ServerStatusHttpContext::Create(
&sctx, server_url, model_name, verbose);
if (err.IsOk()) {
ServerStatus server_status;
err = sctx->GetServerStatus(&server_status);
if (err.IsOk()) {
const auto& itr = server_status.model_status().find(model_name);
if (itr == server_status.model_status().end()) {
err =
Error(
RequestStatusCode::INTERNAL,
"unable to find status information for \"" + model_name + "\"");
} else {
const ModelConfig& model_info = itr->second.config();
ctx_ptr->max_batch_size_ =
static_cast<uint64_t>(std::max(0, model_info.max_batch_size()));
// Create inputs and outputs
for (const auto& io : model_info.input()) {
ctx_ptr->inputs_.emplace_back(std::make_shared<InputImpl>(io));
}
for (const auto& io : model_info.output()) {
ctx_ptr->outputs_.emplace_back(std::make_shared<OutputImpl>(io));
}
}
}
}
// Create request context for synchronous request.
ctx_ptr->sync_request_.reset(
static_cast<Request*>(new HttpRequestImpl(0, ctx_ptr->inputs_)));
if (err.IsOk()) {
ctx->reset(static_cast<InferContext*>(ctx_ptr));
} else {
ctx->reset();
}
return err;
}
InferHttpContext::InferHttpContext(
const std::string& server_url, const std::string& model_name,
int model_version, bool verbose)
: InferContext(model_name, model_version, verbose),
multi_handle_(curl_multi_init())
{
// Process url for HTTP request
// URL doesn't contain the version portion if using the latest version.
url_ = server_url + "/" + kInferRESTEndpoint + "/" + model_name;
if (model_version_ >= 0) {
url_ += "/" + std::to_string(model_version_);
}
}
InferHttpContext::~InferHttpContext()
{
exiting_ = true;
// thread not joinable if AsyncRun() is not called
// (it is default constructed thread before the first AsyncRun() call)
if (worker_.joinable()) {
cv_.notify_all();
worker_.join();
}
if (multi_handle_ != NULL) {
for (auto& request : ongoing_async_requests_) {
CURL* easy_handle =
std::static_pointer_cast<HttpRequestImpl>(request.second)->easy_handle_;
// Just remove, easy_cleanup will be done in ~HttpRequestImpl()
curl_multi_remove_handle(multi_handle_, easy_handle);
}
curl_multi_cleanup(multi_handle_);
}
}
Error
InferHttpContext::Run(std::vector<std::unique_ptr<Result>>* results)
{
std::shared_ptr<HttpRequestImpl> sync_request =
std::static_pointer_cast<HttpRequestImpl>(sync_request_);
if (!curl_global.Status().IsOk()) {
return curl_global.Status();
}
Error err = PreRunProcessing(sync_request_);
if (!err.IsOk()) {
return err;
}
// Take run time
sync_request->timer_.Reset();
sync_request->timer_.Record(RequestTimers::Kind::REQUEST_START);
sync_request->timer_.Record(RequestTimers::Kind::SEND_START);
sync_request->http_status_ = curl_easy_perform(sync_request->easy_handle_);
sync_request->timer_.Record(RequestTimers::Kind::RECEIVE_END);
sync_request->timer_.Record(RequestTimers::Kind::REQUEST_END);
err = UpdateStat(sync_request->timer_);
if (!err.IsOk()) {
std::cerr << "Failed to update context stat: " << err << std::endl;
}
return sync_request->GetResults(results);
}
Error
InferHttpContext::AsyncRun(std::shared_ptr<Request>* async_request)
{
if (!multi_handle_) {
return Error(
RequestStatusCode::INTERNAL, "failed to start HTTP asynchronous client");
} else if (exiting_) {
// abusing variable here, exiting_ is true either when destructor is called
// or the worker thread is not acutally created.
exiting_ = false;
worker_ = std::thread(&InferHttpContext::AsyncTransfer, this);
}
// Make a copy of the current inputs
std::vector<std::shared_ptr<Input>> inputs;
for (const auto& io : inputs_) {
InputImpl* input = reinterpret_cast<InputImpl*>(io.get());
inputs.emplace_back(std::make_shared<InputImpl>(*input));
}
HttpRequestImpl* current_context =
new HttpRequestImpl(async_request_id_++, inputs);
async_request->reset(static_cast<Request*>(current_context));
if (!current_context->easy_handle_) {
return
Error(RequestStatusCode::INTERNAL, "failed to initialize HTTP client");
}
Error err = PreRunProcessing(*async_request);
{
std::lock_guard<std::mutex> lock(mutex_);
auto insert_result = ongoing_async_requests_.emplace(
std::make_pair(
reinterpret_cast<uintptr_t>(current_context->easy_handle_),
*async_request));
if (!insert_result.second) {
return Error(
RequestStatusCode::INTERNAL,
"Failed to insert new asynchronous request context.");
}
curl_multi_add_handle(multi_handle_, current_context->easy_handle_);
current_context->timer_.Reset();
current_context->timer_.Record(RequestTimers::Kind::REQUEST_START);
current_context->timer_.Record(RequestTimers::Kind::SEND_START);
}
cv_.notify_all();
return Error(RequestStatusCode::SUCCESS);
}
Error
InferHttpContext::GetAsyncRunResults(
std::vector<std::unique_ptr<Result>>* results,
const std::shared_ptr<Request>& async_request, bool wait)
{
Error err = IsRequestReady(async_request, wait);
if (!err.IsOk()) {
return err;
}
std::shared_ptr<HttpRequestImpl> http_request =
std::static_pointer_cast<HttpRequestImpl>(async_request);
{
std::lock_guard<std::mutex> lock(mutex_);
curl_multi_remove_handle(multi_handle_, http_request->easy_handle_);
}
err = UpdateStat(http_request->timer_);
if (!err.IsOk()) {
std::cerr << "Failed to update context stat: " << err << std::endl;
}
return http_request->GetResults(results);
}
size_t
InferHttpContext::RequestProvider(
void* contents, size_t size, size_t nmemb, void* userp)
{
HttpRequestImpl* request = reinterpret_cast<HttpRequestImpl*>(userp);
size_t input_bytes = 0;
Error err =
request->GetNextInput(
reinterpret_cast<uint8_t*>(contents), size * nmemb, &input_bytes);
if (!err.IsOk()) {
std::cerr << "RequestProvider: " << err << std::endl;
return CURL_READFUNC_ABORT;
}
return input_bytes;
}
size_t
InferHttpContext::ResponseHeaderHandler(
void* contents, size_t size, size_t nmemb, void* userp)
{
HttpRequestImpl* request = reinterpret_cast<HttpRequestImpl*>(userp);
char* buf = reinterpret_cast<char*>(contents);
size_t byte_size = size * nmemb;
size_t idx = strlen(kStatusHTTPHeader);
if ((idx < byte_size) &&
!strncasecmp(buf, kStatusHTTPHeader, idx)) {
while ((idx < byte_size) && (buf[idx] != ':')) {
++idx;
}
if (idx < byte_size) {
std::string hdr(buf + idx + 1, byte_size - idx - 1);
if (!google::protobuf::TextFormat::ParseFromString(
hdr, &request->request_status_)) {
request->request_status_.Clear();
}
}
}
return byte_size;
}
size_t
InferHttpContext::ResponseHandler(
void* contents, size_t size, size_t nmemb, void* userp)
{
HttpRequestImpl* request = reinterpret_cast<HttpRequestImpl*>(userp);
size_t result_bytes = 0;
if (request->timer_.receive_start_.tv_sec == 0) {
request->timer_.Record(RequestTimers::Kind::RECEIVE_START);
}
Error err =
request->SetNextRawResult(
reinterpret_cast<uint8_t*>(contents), size * nmemb, &result_bytes);
if (!err.IsOk()) {
std::cerr << "ResponseHandler: " << err << std::endl;
return 0;
}
return result_bytes;
}
Error
InferHttpContext::PreRunProcessing(std::shared_ptr<Request>& request)
{
std::shared_ptr<HttpRequestImpl> http_request =
std::static_pointer_cast<HttpRequestImpl>(request);
http_request->InitializeRequest(requested_outputs_, batch_size_);
CURL* curl = http_request->easy_handle_;
if (!curl) {
return
Error(RequestStatusCode::INTERNAL, "failed to initialize HTTP client");
}
std::string full_url = url_ + "?format=binary";
curl_easy_setopt(curl, CURLOPT_URL, full_url.c_str());
curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");
curl_easy_setopt(curl, CURLOPT_POST, 1L);
curl_easy_setopt(curl, CURLOPT_TCP_NODELAY, 1L);
if (verbose_) {
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
}
// request data provided by RequestProvider()
curl_easy_setopt(curl, CURLOPT_READFUNCTION, RequestProvider);
curl_easy_setopt(curl, CURLOPT_READDATA, http_request.get());
// response headers handled by ResponseHeaderHandler()
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, ResponseHeaderHandler);
curl_easy_setopt(curl, CURLOPT_HEADERDATA, http_request.get());
// response data handled by ResponseHandler()
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, ResponseHandler);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, http_request.get());
// set the expected POST size. If you want to POST large amounts of
// data, consider CURLOPT_POSTFIELDSIZE_LARGE
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, total_input_byte_size_);
// Headers to specify input and output tensors
infer_request_str_.clear();
infer_request_str_ =
std::string(kInferRequestHTTPHeader) + ":" +
infer_request_.ShortDebugString();
struct curl_slist *list = NULL;
list = curl_slist_append(list, "Expect:");
list = curl_slist_append(list, "Content-Type: application/octet-stream");
list = curl_slist_append(list, infer_request_str_.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, list);
// The list should be freed after the request
http_request->header_list_ = list;
return Error::Success;
}
void
InferHttpContext::AsyncTransfer()
{
int place_holder = 0;
CURLMsg* msg = NULL;
do {
bool has_completed = false;
// sleep if no work is available
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait(lock,
[this] {
if (this->exiting_) {
return true;
}
// wake up if at least one request is not ready
for (auto& ongoing_async_request : this->ongoing_async_requests_) {
if (std::static_pointer_cast<HttpRequestImpl>(
ongoing_async_request.second)->ready_ == false) {
return true;
}
}
return false;
});
curl_multi_perform(multi_handle_, &place_holder);
while ((msg = curl_multi_info_read(multi_handle_, &place_holder))) {
// update request status
uintptr_t identifier = reinterpret_cast<uintptr_t>(msg->easy_handle);
auto itr = ongoing_async_requests_.find(identifier);
// This shouldn't happen
if (itr == ongoing_async_requests_.end()) {
fprintf(stderr, "Unexpected error: received completed request that" \
" is not in the list of asynchronous requests.\n");
curl_multi_remove_handle(multi_handle_, msg->easy_handle);
curl_easy_cleanup(msg->easy_handle);
continue;
}
std::shared_ptr<HttpRequestImpl> http_request =
std::static_pointer_cast<HttpRequestImpl>(itr->second);
if (msg->msg != CURLMSG_DONE) {
// Something wrong happened.
fprintf(stderr, "Unexpected error: received CURLMsg=%d\n", msg->msg);
} else {
http_request->timer_.Record(RequestTimers::Kind::RECEIVE_END);
http_request->timer_.Record(RequestTimers::Kind::REQUEST_END);
}
http_request->http_status_ = msg->data.result;
http_request->ready_ = true;
has_completed = true;
}
lock.unlock();
// if it has completed tasks, send signal in case the main thread is waiting
if (has_completed) {
cv_.notify_all();
}
} while (!exiting_);
}
//==============================================================================
Error
ProfileHttpContext::Create(
std::unique_ptr<ProfileContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ProfileContext*>(
new ProfileHttpContext(server_url, verbose)));
return Error::Success;
}
ProfileHttpContext::ProfileHttpContext(
const std::string& server_url, bool verbose)
: ProfileContext(verbose), url_(server_url + "/" + kProfileRESTEndpoint)
{
}
Error
ProfileHttpContext::SendCommand(const std::string& cmd_str)
{
request_status_.Clear();
if (!curl_global.Status().IsOk()) {
return curl_global.Status();
}
CURL* curl = curl_easy_init();
if (!curl) {
return
Error(RequestStatusCode::INTERNAL, "failed to initialize HTTP client");
}
// Want binary representation of the status.
std::string full_url = url_ + "?cmd=" + cmd_str;
curl_easy_setopt(curl, CURLOPT_URL, full_url.c_str());
curl_easy_setopt(curl, CURLOPT_USERAGENT, "libcurl-agent/1.0");
if (verbose_) {
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
}
// response headers handled by ResponseHeaderHandler()
curl_easy_setopt(curl, CURLOPT_HEADERFUNCTION, ResponseHeaderHandler);
curl_easy_setopt(curl, CURLOPT_HEADERDATA, this);
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) {
curl_easy_cleanup(curl);
return
Error(
RequestStatusCode::INTERNAL, "HTTP client failed: " +
std::string(curl_easy_strerror(res)));
}
// Must use 64-bit integer with curl_easy_getinfo
int64_t http_code;
curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_easy_cleanup(curl);
// Should have a request status, if not then create an error status.
if (request_status_.code() == RequestStatusCode::INVALID) {
request_status_.Clear();
request_status_.set_code(RequestStatusCode::INTERNAL);
request_status_.set_msg("profile request did not return status");
}
return Error(request_status_);
}
size_t
ProfileHttpContext::ResponseHeaderHandler(
void* contents, size_t size, size_t nmemb, void* userp)
{
ProfileHttpContext* ctx = reinterpret_cast<ProfileHttpContext*>(userp);
char* buf = reinterpret_cast<char*>(contents);
size_t byte_size = size * nmemb;
size_t idx = strlen(kStatusHTTPHeader);
if ((idx < byte_size) &&
!strncasecmp(buf, kStatusHTTPHeader, idx)) {
while ((idx < byte_size) && (buf[idx] != ':')) {
++idx;
}
if (idx < byte_size) {
std::string hdr(buf + idx + 1, byte_size - idx - 1);
if (!google::protobuf::TextFormat::ParseFromString(
hdr, &ctx->request_status_)) {
ctx->request_status_.Clear();
}
}
}
return byte_size;
}
//==============================================================================
Error
ServerHealthGrpcContext::Create(
std::unique_ptr<ServerHealthContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ServerHealthContext*>(
new ServerHealthGrpcContext(server_url, verbose)));
return Error::Success;
}
ServerHealthGrpcContext::ServerHealthGrpcContext(
const std::string& server_url, bool verbose)
: ServerHealthContext(verbose),
stub_(GRPCService::NewStub(GetChannel(server_url)))
{
}
Error
ServerHealthGrpcContext::GetHealth(const std::string& mode, bool* health)
{
Error err;
HealthRequest request;
HealthResponse response;
grpc::ClientContext context;
request.set_mode(mode);
grpc::Status grpc_status = stub_->Health(&context, request, &response);
if (grpc_status.ok()) {
*health = response.health();
err = Error(response.request_status());
} else {
// Something wrong with the gRPC conncection
err =
Error(
RequestStatusCode::INTERNAL, "gRPC client failed: " +
std::to_string(grpc_status.error_code()) + ": " +
grpc_status.error_message());
}
if (verbose_ && err.IsOk()) {
std::cout << mode << ": " << *health << std::endl;
}
return err;
}
Error
ServerHealthGrpcContext::GetReady(bool* ready)
{
return GetHealth("ready", ready);
}
Error
ServerHealthGrpcContext::GetLive(bool* live)
{
return GetHealth("live", live);
}
//==============================================================================
Error
ServerStatusGrpcContext::Create(
std::unique_ptr<ServerStatusContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ServerStatusContext*>(
new ServerStatusGrpcContext(server_url, verbose)));
return Error::Success;
}
Error
ServerStatusGrpcContext::Create(
std::unique_ptr<ServerStatusContext>* ctx,
const std::string& server_url, const std::string& model_name, bool verbose)
{
ctx->reset(
static_cast<ServerStatusContext*>(
new ServerStatusGrpcContext(server_url, model_name, verbose)));
return Error::Success;
}
ServerStatusGrpcContext::ServerStatusGrpcContext(
const std::string& server_url, bool verbose)
: ServerStatusContext(verbose), model_name_(""),
stub_(GRPCService::NewStub(GetChannel(server_url)))
{
}
ServerStatusGrpcContext::ServerStatusGrpcContext(
const std::string& server_url, const std::string& model_name, bool verbose)
: ServerStatusContext(verbose), model_name_(model_name),
stub_(GRPCService::NewStub(GetChannel(server_url)))
{
}
Error
ServerStatusGrpcContext::GetServerStatus(ServerStatus* server_status)
{
server_status->Clear();
Error grpc_status;
StatusRequest request;
StatusResponse response;
grpc::ClientContext context;
request.set_model_name(model_name_);
grpc::Status status = stub_->Status(&context, request, &response);
if (status.ok()) {
server_status->Swap(response.mutable_server_status());
grpc_status = Error(response.request_status());
} else {
// Something wrong with the gRPC conncection
grpc_status = Error(RequestStatusCode::INTERNAL, "gRPC client failed: " +
std::to_string(status.error_code()) + ": " + status.error_message());
}
// Log server status if request is SUCCESS and verbose is true.
if (grpc_status.Code() == RequestStatusCode::SUCCESS && verbose_) {
std::cout << server_status->DebugString() << std::endl;
}
return grpc_status;
}
//==============================================================================
class GrpcRequestImpl : public RequestImpl {
public:
GrpcRequestImpl(const uint64_t id, const uintptr_t run_index);
// @see RequestImpl.GetResults()
Error GetResults(
std::vector<std::unique_ptr<InferContext::Result>>* results) override;
private:
// Unmarshall and process 'grpc_response_' into 'requested_results'
Error SetRawResult();
friend class InferGrpcContext;
// Variables for gRPC call
grpc::ClientContext grpc_context_;
grpc::Status grpc_status_;
InferResponse grpc_response_;
};
GrpcRequestImpl::GrpcRequestImpl(const uint64_t id, const uintptr_t run_index)
: RequestImpl(id)
{
run_index_ = run_index;
}
Error
GrpcRequestImpl::SetRawResult()
{
result_pos_idx_ = 0;
for (std::string output : grpc_response_.raw_output()) {
const uint8_t* buf = reinterpret_cast<uint8_t*>(&output[0]);
size_t size = output.size();
size_t result_bytes = 0;
// Not using loop as in HTTP Infer because the output size should match
if ((size > 0) && (result_pos_idx_ < requested_results_.size())) {
ResultImpl* io =
reinterpret_cast<ResultImpl*>(
requested_results_[result_pos_idx_].get());
// Only try to read raw result for RAW
if (io->ResultFormat() == InferContext::Result::ResultFormat::RAW) {
Error err = io->SetNextRawResult(buf, size, &result_bytes);
if (!err.IsOk()) {
return err;
}
}
}
if (result_bytes != size) {
return Error(RequestStatusCode::INVALID,
"Written bytes doesn't match received bytes.");
}
result_pos_idx_++;
}
return Error::Success;
}
Error
GrpcRequestImpl::GetResults(
std::vector<std::unique_ptr<InferContext::Result>>* results)
{
results->clear();
InferResponseHeader infer_response;
Error err(RequestStatusCode::SUCCESS);
if (grpc_status_.ok()) {
infer_response.Swap(grpc_response_.mutable_meta_data());
err = Error(grpc_response_.request_status());
if (err.IsOk()) {
Error set_err = SetRawResult();
if (!set_err.IsOk()) {
return set_err;
}
}
} else {
// Something wrong with the gRPC conncection
err = Error(RequestStatusCode::INTERNAL, "gRPC client failed: " +
std::to_string(grpc_status_.error_code()) + ": " +
grpc_status_.error_message());
}
// Only continue to process result if gRPC status is SUCCESS
if (err.Code() == RequestStatusCode::SUCCESS) {
PostRunProcessing(requested_results_, infer_response);
results->swap(requested_results_);
}
return err;
}
//==============================================================================
Error
InferGrpcContext::Create(
std::unique_ptr<InferContext>* ctx, const std::string& server_url,
const std::string& model_name, int model_version, bool verbose)
{
InferGrpcContext* ctx_ptr =
new InferGrpcContext(server_url, model_name, model_version, verbose);
// Create request context for synchronous request.
ctx_ptr->sync_request_.reset(
static_cast<Request*>(new GrpcRequestImpl(0, 0)));
// Get status of the model and create the inputs and outputs.
std::unique_ptr<ServerStatusContext> sctx;
Error err =
ServerStatusGrpcContext::Create(
&sctx, server_url, model_name, verbose);
if (err.IsOk()) {
ServerStatus server_status;
err = sctx->GetServerStatus(&server_status);
if (err.IsOk()) {
const auto& itr = server_status.model_status().find(model_name);
if (itr == server_status.model_status().end()) {
err =
Error(
RequestStatusCode::INTERNAL,
"unable to find status information for \"" + model_name + "\"");
} else {
const ModelConfig& model_info = itr->second.config();
ctx_ptr->max_batch_size_ =
static_cast<uint64_t>(std::max(0, model_info.max_batch_size()));
// Create inputs and outputs
for (const auto& io : model_info.input()) {
ctx_ptr->inputs_.emplace_back(std::make_shared<InputImpl>(io));
}
for (const auto& io : model_info.output()) {
ctx_ptr->outputs_.emplace_back(std::make_shared<OutputImpl>(io));
}
}
}
}
if (err.IsOk()) {
ctx->reset(static_cast<InferContext*>(ctx_ptr));
} else {
ctx->reset();
}
return err;
}
InferGrpcContext::InferGrpcContext(
const std::string& server_url, const std::string& model_name,
int model_version, bool verbose)
: InferContext(model_name, model_version, verbose),
stub_(GRPCService::NewStub(GetChannel(server_url)))
{
}
InferGrpcContext::~InferGrpcContext()
{
exiting_ = true;
// thread not joinable if AsyncRun() is not called
// (it is default constructed thread before the first AsyncRun() call)
if (worker_.joinable()) {
cv_.notify_all();
worker_.join();
}
// Close complete queue and drain its content
async_request_completion_queue_.Shutdown();
bool has_next = true;
void* tag;
bool ok;
do {
has_next = async_request_completion_queue_.Next(&tag, &ok);
} while (has_next);
}
Error
InferGrpcContext::Run(std::vector<std::unique_ptr<Result>>* results)
{
grpc::ClientContext context;
std::shared_ptr<GrpcRequestImpl> sync_request =
std::static_pointer_cast<GrpcRequestImpl>(sync_request_);
sync_request->InitializeRequestedResults(requested_outputs_, batch_size_);
sync_request->timer_.Reset();
// Use send timer to measure time for marshalling infer request
sync_request->timer_.Record(RequestTimers::Kind::SEND_START);
PreRunProcessing(sync_request_);
sync_request->timer_.Record(RequestTimers::Kind::SEND_END);
sync_request->timer_.Record(RequestTimers::Kind::REQUEST_START);
sync_request->grpc_status_ =
stub_->Infer(&context, request_, &sync_request->grpc_response_);
sync_request->timer_.Record(RequestTimers::Kind::REQUEST_END);
sync_request->timer_.Record(RequestTimers::Kind::RECEIVE_START);
Error request_status = sync_request->GetResults(results);
sync_request->timer_.Record(RequestTimers::Kind::RECEIVE_END);
Error err = UpdateStat(sync_request->timer_);
if (!err.IsOk()) {
std::cerr << "Failed to update context stat: " << err << std::endl;
}
return request_status;
}
Error
InferGrpcContext::AsyncRun(std::shared_ptr<Request>* async_request)
{
if (exiting_) {
exiting_ = false;
worker_ = std::thread(&InferGrpcContext::AsyncTransfer, this);
}
uintptr_t run_index;
if (reusable_slot_.empty()) {
run_index = ongoing_async_requests_.size();
} else {
run_index = reusable_slot_.back();
reusable_slot_.pop_back();
}
GrpcRequestImpl* current_context =
new GrpcRequestImpl(async_request_id_++, run_index);
async_request->reset(static_cast<Request*>(current_context));
auto insert_result = ongoing_async_requests_.emplace(
std::make_pair(run_index, *async_request));
if (!insert_result.second) {
return Error(
RequestStatusCode::INTERNAL,
"Failed to insert new asynchronous request context.");
}
current_context->timer_.Reset();
current_context->timer_.Record(RequestTimers::Kind::SEND_START);
PreRunProcessing(*async_request);
current_context->timer_.Record(RequestTimers::Kind::SEND_END);
current_context->timer_.Record(RequestTimers::Kind::REQUEST_START);
std::unique_ptr<grpc::ClientAsyncResponseReader<InferResponse>> rpc(
stub_->PrepareAsyncInfer(
¤t_context->grpc_context_, request_,
&async_request_completion_queue_));
rpc->StartCall();
rpc->Finish(
¤t_context->grpc_response_,
¤t_context->grpc_status_,
(void*)run_index);
cv_.notify_all();
return Error(RequestStatusCode::SUCCESS);
}
Error
InferGrpcContext::GetAsyncRunResults(
std::vector<std::unique_ptr<Result>>* results,
const std::shared_ptr<Request>& async_request, bool wait)
{
Error err = IsRequestReady(async_request, wait);
if (!err.IsOk()) {
return err;
}
std::shared_ptr<GrpcRequestImpl> grpc_request =
std::static_pointer_cast<GrpcRequestImpl>(async_request);
reusable_slot_.push_back(grpc_request->run_index_);
grpc_request->timer_.Record(RequestTimers::Kind::RECEIVE_START);
Error request_status = grpc_request->GetResults(results);
grpc_request->timer_.Record(RequestTimers::Kind::RECEIVE_END);
err = UpdateStat(grpc_request->timer_);
if (!err.IsOk()) {
std::cerr << "Failed to update context stat: " << err << std::endl;
}
return request_status;
}
Error
InferGrpcContext::PreRunProcessing(std::shared_ptr<Request>& request)
{
std::shared_ptr<GrpcRequestImpl> grpc_request =
std::static_pointer_cast<GrpcRequestImpl>(request);
grpc_request->InitializeRequestedResults(requested_outputs_, batch_size_);
for (auto& io : inputs_) {
reinterpret_cast<InputImpl*>(io.get())->PrepareForRequest();
}
request_.Clear();
request_.set_model_name(model_name_);
request_.set_version(std::to_string(model_version_));
request_.mutable_meta_data()->MergeFrom(infer_request_);
size_t input_pos_idx = 0;
while (input_pos_idx < inputs_.size()) {
InputImpl* io =
reinterpret_cast<InputImpl*>(inputs_[input_pos_idx].get());
std::string* new_input = request_.add_raw_input();
// Append all batches of one input together
for (size_t batch_idx = 0; batch_idx < batch_size_; batch_idx++) {
const uint8_t* data_ptr;
io->GetRaw(batch_idx, &data_ptr);
new_input->append(
reinterpret_cast<const char*>(data_ptr), io->ByteSize());
}
input_pos_idx++;
}
return Error::Success;
}
void
InferGrpcContext::AsyncTransfer()
{
do {
// sleep if no work is available
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait(lock,
[this] {
if (this->exiting_) {
return true;
}
// wake up if at least one request is not ready
for (auto& ongoing_async_request : this->ongoing_async_requests_) {
if (std::static_pointer_cast<GrpcRequestImpl>(
ongoing_async_request.second)->ready_ == false) {
return true;
}
}
return false;
});
lock.unlock();
// gRPC async APIs are thread-safe https://github.com/grpc/grpc/issues/4486
if (!exiting_) {
size_t got;
bool ok = true;
bool status = async_request_completion_queue_.Next((void**)(&got), &ok);
{
std::lock_guard<std::mutex> lock(mutex_);
if (!ok) {
fprintf(stderr, "Unexpected not ok on client side.");
}
if (!status) {
fprintf(stderr, "Completion queue is closed.");
}
auto itr = ongoing_async_requests_.find(got);
if (itr == ongoing_async_requests_.end()) {
fprintf(stderr, "Unexpected error: received completed request that" \
" is not in the list of asynchronous requests.\n");
continue;
}
std::shared_ptr<GrpcRequestImpl> grpc_request =
std::static_pointer_cast<GrpcRequestImpl>(itr->second);
grpc_request->timer_.Record(RequestTimers::Kind::REQUEST_END);
grpc_request->ready_ = true;
}
// send signal in case the main thread is waiting
cv_.notify_all();
}
} while (!exiting_);
}
//==============================================================================
Error
ProfileGrpcContext::Create(
std::unique_ptr<ProfileContext>* ctx,
const std::string& server_url, bool verbose)
{
ctx->reset(
static_cast<ProfileContext*>(
new ProfileGrpcContext(server_url, verbose)));
return Error::Success;
}
ProfileGrpcContext::ProfileGrpcContext(
const std::string& server_url, bool verbose)
: ProfileContext(verbose),
stub_(GRPCService::NewStub(GetChannel(server_url)))
{
}
Error
ProfileGrpcContext::SendCommand(const std::string& cmd_str)
{
ProfileRequest request;
ProfileResponse response;
grpc::ClientContext context;
request.set_cmd(cmd_str);
grpc::Status status = stub_->Profile(&context, request, &response);
if (status.ok()) {
return Error(response.request_status());
} else {
// Something wrong with the gRPC conncection
return Error(RequestStatusCode::INTERNAL, "gRPC client failed: " +
std::to_string(status.error_code()) + ": " + status.error_message());
}
}
}}} // namespace nvidia::inferenceserver::client
| [
"[email protected]"
]
| |
c81ebf2223011d05bc1721b9b76fde4c0e05b930 | 5cb9dccbcccb8a2137368dd0615fe3e3c7761707 | /simulations/kinova/devel/.private/moveit_msgs/include/moveit_msgs/QueryPlannerInterfacesRequest.h | e692a07a7654f61f77160777e1a097cc70f67dbd | []
| no_license | Simon-Steinmann/sim2real-modular-RL-project | b2467a393014e106043f6128a026f5eac934a83d | 4027590ac94de2d5c914731c09efcf2f318b9ca3 | refs/heads/master | 2020-07-29T01:30:56.450919 | 2019-10-12T09:33:00 | 2019-10-12T09:33:00 | 209,605,548 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,877 | h | // Generated by gencpp from file moveit_msgs/QueryPlannerInterfacesRequest.msg
// DO NOT EDIT!
#ifndef MOVEIT_MSGS_MESSAGE_QUERYPLANNERINTERFACESREQUEST_H
#define MOVEIT_MSGS_MESSAGE_QUERYPLANNERINTERFACESREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
namespace moveit_msgs
{
template <class ContainerAllocator>
struct QueryPlannerInterfacesRequest_
{
typedef QueryPlannerInterfacesRequest_<ContainerAllocator> Type;
QueryPlannerInterfacesRequest_()
{
}
QueryPlannerInterfacesRequest_(const ContainerAllocator& _alloc)
{
(void)_alloc;
}
typedef boost::shared_ptr< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> const> ConstPtr;
}; // struct QueryPlannerInterfacesRequest_
typedef ::moveit_msgs::QueryPlannerInterfacesRequest_<std::allocator<void> > QueryPlannerInterfacesRequest;
typedef boost::shared_ptr< ::moveit_msgs::QueryPlannerInterfacesRequest > QueryPlannerInterfacesRequestPtr;
typedef boost::shared_ptr< ::moveit_msgs::QueryPlannerInterfacesRequest const> QueryPlannerInterfacesRequestConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace moveit_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False}
// {'shape_msgs': ['/opt/ros/melodic/share/shape_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'moveit_msgs': ['/home/acis/sim2real/simulations/kinova/devel/.private/moveit_msgs/share/moveit_msgs/msg', '/home/acis/sim2real/simulations/kinova/src/moveit_msgs/msg'], 'trajectory_msgs': ['/opt/ros/melodic/share/trajectory_msgs/cmake/../msg'], 'sensor_msgs': ['/opt/ros/melodic/share/sensor_msgs/cmake/../msg'], 'object_recognition_msgs': ['/opt/ros/melodic/share/object_recognition_msgs/cmake/../msg'], 'octomap_msgs': ['/opt/ros/melodic/share/octomap_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/melodic/share/geometry_msgs/cmake/../msg'], 'actionlib_msgs': ['/opt/ros/melodic/share/actionlib_msgs/cmake/../msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
{
static const char* value()
{
return "d41d8cd98f00b204e9800998ecf8427e";
}
static const char* value(const ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0xd41d8cd98f00b204ULL;
static const uint64_t static_value2 = 0xe9800998ecf8427eULL;
};
template<class ContainerAllocator>
struct DataType< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
{
static const char* value()
{
return "moveit_msgs/QueryPlannerInterfacesRequest";
}
static const char* value(const ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
{
static const char* value()
{
return "\n"
;
}
static const char* value(const ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream&, T)
{}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct QueryPlannerInterfacesRequest_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream&, const std::string&, const ::moveit_msgs::QueryPlannerInterfacesRequest_<ContainerAllocator>&)
{}
};
} // namespace message_operations
} // namespace ros
#endif // MOVEIT_MSGS_MESSAGE_QUERYPLANNERINTERFACESREQUEST_H
| [
"[email protected]"
]
| |
b501d3731061d6110b0a6012e188c276812483ee | 8a175299e2897b7d7e87c9ce4b928f20bf2d8dd2 | /ESP32_WS_007_3/effet.ino | b6db5861a2160cc46d45de154830a52ebeb6df31 | []
| no_license | ririfonfon/ESP32_WS | 63ae7d75917e05e8517e1438f283a6c7822fbd71 | 0359e7538c214e57cde9a9f9524c4ef99609ccd2 | refs/heads/master | 2020-04-11T09:02:51.795543 | 2019-05-10T16:14:11 | 2019-05-10T16:14:11 | 161,664,262 | 1 | 2 | null | 2019-05-02T09:33:33 | 2018-12-13T16:16:16 | C++ | UTF-8 | C++ | false | false | 10,523 | ino |
////////////////// FX THREAD
void fx_task( void * pvParameters ) {
while (true) {
if (_Fx_type <= 11) effet();
else delay(1);
leds_show();
yield(); // rend la main
}
vTaskDelete(NULL);
}// fx_task( void * pvParameters )
////////////////// FX CONFIG
// Indicate which strip is active (true) or background (false)
// for each "_Fx_type"
//
bool activeStrip[12][NUM_STRIPS] = {
{true, true, true, true}, // _Fx_type = 0 ru all
{true, false, false, false}, // _Fx_type = 1 ru 1
{false, true, false, false}, // _Fx_type = 2 ru 2
{false, false, true, false}, // _Fx_type = 3 ru 3
{false, false, false, true}, // _Fx_type = 4 ru 4
{true, true, false, false}, // _Fx_type = 5 ru 1 2
{true, false, true, false}, // _Fx_type = 6 ru 1 3
{true, false, false, true}, // _Fx_type = 7 ru 1 4
{false, true, true, false}, // _Fx_type = 8 ru 2 3
{false, true, false, true}, // _Fx_type = 9 ru 2 4
{false, false, true, true}, // _Fx_type = 10 ru 3 4
{true, true, true, true} // _Fx_type = 11 ?????
};
// Decide if pixel is active or is background
//
bool isActive(int strip, int i) {
// check if strip is active for this "_Fx_type"
if (_Fx_type <= 11 && !activeStrip[_Fx_type][strip]) return false;
// check if i is in range
if (_Fx_type == 0) return true;
else if (_Fx_type <= 10) return (i >= (_Pix_pos) && i <= _Pix_start + (_Pix_pos));
else if (_Fx_type == 11) return (i >= M_g[strip][0] && i <= M_g[strip][1]);
return true;
}
int ref_pix_pos;
//float pix_coef;
//float pix_coefi;
//float pix_coef_fond;
//float pix_coefi_fond;
//////////////////// FX FUNTION
void effet() {
if (_Pix_mod == 0) {
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i))
pix_buffer[s][i] = pix_colorA[s][i];
else
pix_buffer[s][i] = pix_colorB[s][i];
}//_Pix_mod 0
if (_Pix_mod == 1) {
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i))
pix_buffer[s][i] = pix_colorA[s][i];
else
pix_buffer[s][i] = pix_colorB[s][i];
}//_Pix_mod 10
if (_Pix_mod == 2) {
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i))
pix_buffer[s][p] = pix_colorA[s][p];
else
pix_buffer[s][p] = pix_colorB[s][p];
}
}//_Pix_mod 20
if (_Pix_mod == 3) {
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
pix_coefi = (((i - _Pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
pix_buffer[s][i] = pix_colorA[s][i] * pix_coef;
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 30
if (_Pix_mod == 4) {
ref_pix_pos = (_Pix_start + _Pix_pos);
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
pix_coefi = (((_Pix_pos - ref_pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos--;
pix_buffer[s][i] = pix_colorA[s][i] * pix_coef;
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 40
if (_Pix_mod == 5) {
ref_pix_pos = (_Pix_start + _Pix_pos);
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
if (i <= _Pix_center) {
pix_coefi = ((((i - _Pix_pos + 1)) * 200) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
}
else if (i >= _Pix_center) {
pix_coefi = ((((_Pix_pos - ref_pix_pos)) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos = ref_pix_pos - 2;
}
if (pix_coef > 1) pix_coef = 1;
pix_buffer[s][i] = pix_colorA[s][i] * pix_coef;
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 50
if (_Pix_mod == 6) {
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
pix_coefi = (((i - _Pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
pix_buffer[s][p] = pix_colorA[s][p] * pix_coef;
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 60
if (_Pix_mod == 7) {
ref_pix_pos = (_Pix_start + _Pix_pos);
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
pix_coefi = (((_Pix_pos - ref_pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos--;
pix_buffer[s][p] = pix_colorA[s][p] * pix_coef;
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 70
if (_Pix_mod == 8) {
ref_pix_pos = (_Pix_start + _Pix_pos);
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
if (i <= _Pix_center) {
pix_coefi = ((((i - _Pix_pos + 1)) * 200) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
}
else if (i >= _Pix_center) {
pix_coefi = ((((_Pix_pos - ref_pix_pos)) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos = ref_pix_pos - 2;
}
if (pix_coef > 1) pix_coef = 1;
pix_buffer[s][p] = pix_colorA[s][p] * pix_coef;
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 80
if (_Pix_mod == 8) {
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
pix_coefi = (((i - _Pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
pix_buffer[s][i] = (pix_colorA[s][i] * pix_coef) + (pix_colorB[s][i] * pix_coef_fond);
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 90
if (_Pix_mod == 10) {
ref_pix_pos = (_Pix_start + _Pix_pos);
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
pix_coefi = (((_Pix_pos - ref_pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
ref_pix_pos--;
pix_buffer[s][i] = (pix_colorA[s][i] * pix_coef) + (pix_colorB[s][i] * pix_coef_fond);
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 100
if (_Pix_mod == 11) {
ref_pix_pos = (_Pix_start + _Pix_pos);
for (int s = 0 ; s < NUM_STRIPS ; s++)
for (int i = 0 ; i < NUM_LEDS_PER_STRIP ; i++)
if (isActive(s, i)) {
if (i <= _Pix_center) {
pix_coefi = ((((i - _Pix_pos + 1)) * 200) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
}
else if (i >= _Pix_center) {
pix_coefi = ((((_Pix_pos - ref_pix_pos)) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos = ref_pix_pos - 2;
}
if (pix_coef > 1) pix_coef = 1;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
pix_buffer[s][i] = (pix_colorA[s][i] * pix_coef) + (pix_colorB[s][i] * pix_coef_fond);
}
else {
pix_buffer[s][i] = pix_colorB[s][i];
}
}//_Pix_mod 110
if (_Pix_mod == 12) {
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
pix_coefi = (((i - _Pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
pix_buffer[s][p] = (pix_colorA[s][p] * pix_coef) + (pix_colorB[s][p] * pix_coef_fond);
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 120
if (_Pix_mod == 13) {
ref_pix_pos = (_Pix_start + _Pix_pos);
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
pix_coefi = (((_Pix_pos - ref_pix_pos) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos--;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
pix_buffer[s][p] = (pix_colorA[s][p] * pix_coef) + (pix_colorB[s][p] * pix_coef_fond);
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 130
if (_Pix_mod == 14) {
ref_pix_pos = (_Pix_start + _Pix_pos);
int s, p = 0;
for (int i = 0 ; i < numberOfLed ; i++) {
s = i / NUM_LEDS_PER_STRIP;
p = i % NUM_LEDS_PER_STRIP;
if (isActive(s, i)) {
if (i <= _Pix_center) {
pix_coefi = ((((i - _Pix_pos + 1)) * 200) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
}
else if (i >= _Pix_center) {
pix_coefi = ((((_Pix_pos - ref_pix_pos)) * 100) / _Pix_start_v) * 0.01;
pix_coef = pix_coefi * pix_coefi;
ref_pix_pos = ref_pix_pos - 2;
}
if (pix_coef > 1) pix_coef = 1;
pix_coefi_fond = map ((pix_coef * 100), 0, 100, 100, 0);
pix_coef_fond = pix_coefi_fond / 100;
pix_buffer[s][p] = (pix_colorA[s][p] * pix_coef) + (pix_colorB[s][p] * pix_coef_fond);
}
else {
pix_buffer[s][p] = pix_colorB[s][p];
}
}//for i
}//_Pix_mod 140
}// do_effet
| [
"[email protected]"
]
| |
69e9898f505aaa97452e1f0bf2be0820c8fb45c1 | cd84fc75487a5d5ea4b7ea4af10a10de789a85ab | /project_code/com/drollic/graphics/painting/nativeprocessing/INativeMomentsPainter.cpp | 4a4ecd568b58f786fe0d4802316548ac849f8218 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
]
| permissive | drollicdotcom/devart-template | be11d8992bb3f726bc775ee17548ec12b09d2861 | 4e59a8b4f7e0e94cccc33911a2c58dd981dfbee5 | refs/heads/master | 2020-05-20T18:17:59.649841 | 2014-03-27T02:53:05 | 2014-03-27T02:53:05 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 31,959 | cpp | /*
Copyright © 2006, Drollic
All rights reserved.
http://www.drollic.com
Redistribution of this software in source or binary forms, with or
without modification, is expressly prohibited. You may not reverse-assemble,
reverse-compile, or otherwise reverse-engineer this software in any way.
THIS SOFTWARE ("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 "stdafx.h"
#include <tchar.h> // For queryperformancecounter
#include <windows.h> // For queryperformancecounter
#include "INativeMomentsPainter.h"
#include "TwoDVector.h"
#include "NativeStroke.h"
#include "ComputationProgress.h"
#include "SegmentedRegion.h"
//#include "wmvFile.h"
#include <math.h>
#include <time.h>
#include <iostream>
using namespace std;
namespace com
{
namespace drollic
{
namespace graphics
{
namespace painting
{
namespace native
{
namespace processing
{
#define iround(x) (int) (x + 0.5)
#define MAX(x,y) ((x)>(y)?(x):(y))
#define swap(a,b) \
do { \
float *tmp; \
tmp = a; \
a = b; \
b = tmp; \
} while (0)
INativeMomentsPainter::INativeMomentsPainter(int theWidth, int theHeight, int theS, std::vector<FastRawImage*> &theStrokes)
: width(theWidth), height(theHeight), S(theS), strokes(theStrokes), generateMovie(false)
{
}
INativeMomentsPainter::~INativeMomentsPainter()
{
}
void INativeMomentsPainter::EnableMovieGeneration(std::vector<FastRawImage*> frames, char *filename)
{
this->introFrames = frames;
this->generateMovie = true;
this->movieFilename = filename;
}
inline int INativeMomentsPainter::ComputeMoments(FastRawImage &input, PixelData &bgr, int S, double &m00, double &m01, double &m10, double &m11, double &m02, double &m20)
{
double Ival;
m00 = m01 = m10 = m11 = m02 = m20 = 0;
PixelData c;
for (int y = 1; y <= S; y++)
{
for (int x = 1; x <= S; x++)
{
Ival = 0.0;
if ((x < input.Width) && (y < input.Height))
{
c = input.GetColor(x, y);
Ival = MomentI(c, bgr) * 255.0;
}
m00 += Ival;
m01 += y * Ival;
m10 += x * Ival;
m11 += y * x * Ival;
m02 += y * y * Ival;
m20 += x * x * Ival;
}
}
return 1;
}
IStrokeGenerationResult INativeMomentsPainter::GenerateStroke(FastRawImage *input, int x, int y, int s, int factor, int level, NativeStroke &stroke)
{
double m00, m01, m10, m11, m02, m20;
double a, b, c;
double tempval;
double dw, dxc, dyc;
int xc, yc;
double theta;
float w, l;
m00 = m01 = m10 = m11 = m02 = m20 = 0;
PixelData firstColor = input->GetColor(x, y);
FastRawImage piece(s, s, false);
input->Crop(x, y, s, s, piece);
ComputeMoments(piece, firstColor, s, m00, m01, m10, m11, m02, m20);
// Sanity check data
if (m00 <= 0)
return InvalidStroke;
dxc = m10 / m00;
dyc = m01 / m00;
a = (m20 / m00) - (double)((dxc)*(dxc));
b = 2 * (m11 / m00 - (double)((dxc)*(dyc)));
c = (m02 / m00) - (double)((dyc)*(dyc));
theta = atan2(b, (a-c)) / 2;
tempval = sqrt(b*b + (a-c)*(a-c));
// Sanity check
if (((a+c - tempval) < 0.0) || ((a+c + tempval) < 0.0))
return InvalidStroke;
dw = sqrt(6 * (a+c - tempval));
w = (float)(sqrt(6 * (a+c - tempval)));
l = (float)(sqrt(6 * (a+c + tempval)));
xc = (int)(x + iround(dxc - s/2));
yc = (int)(y + iround(dyc - s/2));
stroke.xc = factor*xc;
stroke.yc = factor*yc;
// TODO: If painting looks off, take out this rounding.
stroke.w = iround(factor*w);
stroke.l = iround(factor*l);
stroke.area = stroke.l * stroke.w;
stroke.theta = (float) theta;
stroke.rgb.R = firstColor.R;
stroke.rgb.G = firstColor.G;
stroke.rgb.B = firstColor.B;
stroke.level = level;
return ValidStroke;
}
FastRawImage* INativeMomentsPainter::Dither(FastRawImage* inImage, double s, double p)
{
int width = inImage->Width;
int height = inImage->Height;
TwoDVector<int> input(height, width);
FastRawImage* img = new FastRawImage(width, height);
int w, h;
float error, val;
float a = (float) ((s - 1) / pow(255.0, p));
TwoDVector<int> inputPrime(height, width);
// Convert into collection of Color objects
int r;
for (int y = 0; y < inImage->Height; y++)
{
for (int x = 0; x < inImage->Width; x++)
{
r = inImage->GetColor(x, y).R;
input.SetAt(y, x, r);
}
}
// Seed random number system
srand(static_cast<unsigned int>(time(NULL)));
w = width;
h = height;
// Allocate the buffers
float *cur = new float [w];
float *nxt = new float [w];
for (int x = 0; x < w; x++)
{
nxt[x] = MAX(1.0f /(a * (float)(pow(static_cast<double>(input[0][x]), p)) + 1), 0.5f);
}
int yClone = 0;
for (int y=0; y < h-1; y++, yClone = y)
{
// The next line becomes current line
swap(cur, nxt);
// Copy the next line to buffer
nxt[0] = MAX(1.0f /(a *(float)(pow(static_cast<double>(input[y+1][0]), p)) + 1), 0.5f);
for (int x = 1; x < w; x++)
{
nxt[x] = 1.0f / (a * (float)(pow(static_cast<double>(input[y+1][x]), p)) + 1);
}
// Spread out the error value
int xClone = 0;
for (int x = 0; x < w-1; x++, xClone = x)
{
val = cur[x] > 1.0f ? 1.0f : 0.0f;
error = cur[x] - val;
inputPrime[y][x] = val > 0.0 ? 0 : 255;
switch (rand() % 4)
{
case 0:
nxt[x + 1] += error/16.0f;
if (x > 0)
nxt[x - 1] += 3*error/16.0f;
nxt[x] += 5*error/16.0f;
cur[x + 1] += 7*error/16.0f;
break;
case 1:
nxt[x + 1] += 7*error/16.0f;
if (x > 0)
nxt[x - 1] += error/16.0f;
nxt[x] += 3*error/16.0f;
cur[x + 1] += 5*error/16.0f;
break;
case 2:
nxt[x + 1] += 5*error/16.0f;
if (x > 0)
nxt[x - 1] += 7*error/16.0f;
nxt[x] += error/16.0f;
cur[x + 1] += 3*error/16.0f;
break;
case 3:
nxt[x + 1] += 3*error/16.0f;
if (x > 0)
nxt[x - 1] += 5*error/16.0f;
nxt[x] += 7*error/16.0f;
cur[x + 1] += error/16.0f;
break;
}
}
inputPrime.SetAt(y, xClone, cur[xClone] > 1.0 ? 0 : 255);
}
// Clip the last line
for (int x = 0; x < w; x++)
inputPrime.SetAt(yClone, x, nxt[x] > 1.0 ? 0 : 255);
// Generate bitmap
for (int y2=0; y2 < height; y2++)
for (int x2=0; x2 < width; x2++)
img->SetColor(x2, y2, PixelData(inputPrime[y2][x2], inputPrime[y2][x2], inputPrime[y2][x2]));
// Clean up
delete [] cur;
delete [] nxt;
return img;
}
////////////////////////
/*
FastRawImage* NativeMomentPainter::CreateSegmentedCompositePainting(int width, int height, std::vector<FastRawImage*> &originals, std::vector<FastRawImage*> &strokes, int S)
{
unsigned int totalOriginals = originals.size();
float totalOriginalsf = static_cast<float>(totalOriginals);
// Return if we somehow got no originals
if (totalOriginals <= 0)
{
ComputationProgress::Instance()->percentComplete = 100;
return NULL;
}
float percentWorkForAllImageAnalysis = 45.0;
float percentWorkPerImage = percentWorkForAllImageAnalysis / totalOriginalsf;
std::pair<int, int> zeroOffset(0, 0);
// First, determine the segment size based upon
int widthSum = 0;
int heightSum = 0;
for (unsigned int i=0; i < totalOriginals; i++)
{
widthSum += originals[i]->Width;
heightSum += originals[i]->Height;
}
int segmentWidth = (widthSum / totalOriginals) / 4;
int segmentHeight = (heightSum / totalOriginals) / 3;
list<SegmentedRegion> regions;
list<SegmentedRegion>::iterator regionsIter;
// Seed random number generator on first red value
srand(time(NULL));
for (unsigned int i=0; i < totalOriginals; i++)
{
SegmentedRegion region;
region.SetDimensions(segmentWidth, segmentHeight, originals[i]->Width, originals[i]->Height);
GeneratePaintingStrokes(originals[i], S, region, zeroOffset, percentWorkPerImage);
// Generate the interesting segments which are basically above
// a given percentile in terms of number of strokes
double interestingSegmentBaseThreshold = 10.0;
int interestingSegmentPossibleRange = 25;
double interestingSegmentsAreAboveThisPercentile = interestingSegmentBaseThreshold + (rand() % interestingSegmentPossibleRange);
regions.push_back(region.AboveThresholdSegments(interestingSegmentsAreAboveThisPercentile));
//std::cout << "Completed. Threshold was " << interestingSegmentsAreAboveThisPercentile << std::endl;
}
ComputationProgress::Instance()->percentComplete = 50;
SegmentedRegion finalRegion;
finalRegion.SetDimensions(segmentWidth, segmentHeight, width, height);
for (regionsIter = regions.begin(); regionsIter != regions.end(); regionsIter++)
{
finalRegion.AttemptIncorporation(*regionsIter);
}
NativeStroke stroke;
FastRawImage *scaledStroke;
FastRawImage *painting = new FastRawImage(width, height);
painting->WhiteOut();
StrokeContainer *strokeContainer = finalRegion.UnifyStrokes();
StrokeContainer::AreaToDimensionsMapType::iterator iter;
StrokeContainer::DimensionToStrokesMapType::iterator strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator start_strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator end_strokeIter;
std::set< std::pair<int, int> >::iterator dimensionsIter;
std::pair<int, int> dimensions;
int totalStrokes = 0;
int totalScalings = 0;
int totalAreaValues = 0;
float maxAreaValues = static_cast<float>(strokeContainer->areaToStrokeDimensionsMap.size());
for(iter = strokeContainer->areaToStrokeDimensionsMap.begin(); iter != strokeContainer->areaToStrokeDimensionsMap.end(); ++iter)
{
totalAreaValues++;
ComputationProgress::Instance()->percentComplete = ((static_cast<float>(totalAreaValues+1) / maxAreaValues) * 50) + 50;
for (dimensionsIter = iter->second.begin(); dimensionsIter != iter->second.end(); ++dimensionsIter)
{
dimensions = *dimensionsIter;
scaledStroke = FastRawImage::Scale(strokes[rand() % strokes.size()], static_cast<int>(dimensions.first), static_cast<int>(dimensions.second));
totalScalings++;
start_strokeIter = strokeContainer->strokeDimensionsToStrokesMap.lower_bound(*dimensionsIter);
end_strokeIter = strokeContainer->strokeDimensionsToStrokesMap.upper_bound(*dimensionsIter);
int max = (scaledStroke->Width > scaledStroke->Height) ? scaledStroke->Width : scaledStroke->Height;
// TODO: This object is on the stack but the underlying singledata is still on the heap, and it's not freed. MEMORY PENALTY
FastRawImage rotatedStroke(max + max, max + max);
for (strokeIter = start_strokeIter; strokeIter != end_strokeIter; ++strokeIter)
{
rotatedStroke.BlackOut();
FastRawImage::Rotate(scaledStroke, strokeIter->second.theta, rotatedStroke);
FastRawImage::Blend(painting, rotatedStroke, strokeIter->second.rgb, strokeIter->second.xc, strokeIter->second.yc);
totalStrokes++;
}
delete scaledStroke;
}
}
return painting;
}
////////////////////////
FastRawImage* NativeMomentPainter::CreateCompositePainting(int width, int height, std::vector<FastRawImage*> &originals, std::vector<std::pair<int, int> > &locations, std::vector<FastRawImage*> &strokes, int S)
{
StrokeContainer strokeContainer;
StrokeContainer::AreaToDimensionsMapType::iterator iter;
unsigned int totalOriginals = originals.size();
float totalOriginalsf = static_cast<float>(totalOriginals);
float percentWorkForAllImageAnalysis = 45.0;
float percentWorkPerImage = percentWorkForAllImageAnalysis / totalOriginalsf;
for (unsigned int i=0; i < totalOriginals; i++)
{
GeneratePaintingStrokes(originals[i], S, strokeContainer, locations[i], percentWorkPerImage);
}
ComputationProgress::Instance()->percentComplete = 50;
NativeStroke stroke;
FastRawImage *scaledStroke;
FastRawImage *painting = new FastRawImage(width, height);
painting->WhiteOut();
StrokeContainer::DimensionToStrokesMapType::iterator strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator start_strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator end_strokeIter;
std::set< std::pair<int, int> >::iterator dimensionsIter;
std::pair<int, int> dimensions;
int totalStrokes = 0;
int totalScalings = 0;
int totalAreaValues = 0;
float maxAreaValues = static_cast<float>(strokeContainer.areaToStrokeDimensionsMap.size());
for(iter = strokeContainer.areaToStrokeDimensionsMap.begin(); iter != strokeContainer.areaToStrokeDimensionsMap.end(); ++iter)
{
totalAreaValues++;
ComputationProgress::Instance()->percentComplete = ((static_cast<float>(totalAreaValues+1) / maxAreaValues) * 50) + 50;
for (dimensionsIter = iter->second.begin(); dimensionsIter != iter->second.end(); ++dimensionsIter)
{
dimensions = *dimensionsIter;
scaledStroke = FastRawImage::Scale(strokes[rand() % strokes.size()], static_cast<int>(dimensions.first), static_cast<int>(dimensions.second));
totalScalings++;
start_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.lower_bound(*dimensionsIter);
end_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.upper_bound(*dimensionsIter);
int max = (scaledStroke->Width > scaledStroke->Height) ? scaledStroke->Width : scaledStroke->Height;
// TODO: This object is on the stack but the underlying singledata is still on the heap, and it's not freed. MEMORY PENALTY
FastRawImage rotatedStroke(max + max, max + max);
//StackBasedRawImage rotatedStroke(max + max, max + max);
for (strokeIter = start_strokeIter; strokeIter != end_strokeIter; ++strokeIter)
{
rotatedStroke.BlackOut();
//rotatedStroke = FastRawImage::Rotate(scaledStroke, strokeIter->second.theta);
FastRawImage::Rotate(scaledStroke, strokeIter->second.theta, rotatedStroke);
FastRawImage::Blend(painting, rotatedStroke, strokeIter->second.rgb, strokeIter->second.xc, strokeIter->second.yc);
//delete rotatedStroke;
totalStrokes++;
}
delete scaledStroke;
}
}
return painting;
}
FastRawImage* NativeMomentPainter::CreatePainting(FastRawImage* input, FastRawImage* strokeImage, int S)
{
ComputationProgress::Instance()->percentComplete = 0;
StrokeContainer strokeContainer;
StrokeContainer::AreaToDimensionsMapType::iterator iter;
GeneratePaintingStrokes(input, S, strokeContainer);
NativeStroke stroke;
FastRawImage *scaledStroke;
FastRawImage *painting = new FastRawImage(input->Width, input->Height);
painting->WhiteOut();
StrokeContainer::DimensionToStrokesMapType::iterator strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator start_strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator end_strokeIter;
std::set< std::pair<int, int> >::iterator dimensionsIter;
std::pair<int, int> dimensions;
int totalStrokes = 0;
int totalScalings = 0;
int totalAreaValues = 0;
for(iter = strokeContainer.areaToStrokeDimensionsMap.begin(); iter != strokeContainer.areaToStrokeDimensionsMap.end(); ++iter)
{
for (dimensionsIter = iter->second.begin(); dimensionsIter != iter->second.end(); ++dimensionsIter)
{
dimensions = *dimensionsIter;
scaledStroke = FastRawImage::Scale(strokeImage, static_cast<int>(dimensions.first), static_cast<int>(dimensions.second));
totalScalings++;
start_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.lower_bound(*dimensionsIter);
end_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.upper_bound(*dimensionsIter);
int max = (scaledStroke->Width > scaledStroke->Height) ? scaledStroke->Width : scaledStroke->Height;
// TODO: This object is on the stack but the underlying singledata is still on the heap, and it's not freed. MEMORY PENALTY
FastRawImage rotatedStroke(max + max, max + max);
//StackBasedRawImage rotatedStroke(max + max, max + max);
for (strokeIter = start_strokeIter; strokeIter != end_strokeIter; ++strokeIter)
{
rotatedStroke.BlackOut();
//rotatedStroke = FastRawImage::Rotate(scaledStroke, strokeIter->second.theta);
FastRawImage::Rotate(scaledStroke, strokeIter->second.theta, rotatedStroke);
FastRawImage::Blend(painting, rotatedStroke, strokeIter->second.rgb, strokeIter->second.xc, strokeIter->second.yc);
//delete rotatedStroke;
totalStrokes++;
}
delete scaledStroke;
}
}
return painting;
}
*/
void INativeMomentsPainter::GeneratePaintingStrokes(FastRawImage* input, int S, IStrokeContainer &strokeContainer, std::pair<int, int> strokeOffset, float percentWorkToBeCompletedInThisCall)
{
float halfPercentage = percentWorkToBeCompletedInThisCall / 2.0f;
FastRawImage *areaImage = ComputeAreaImageFast2(input, S);
ComputationProgress::Instance()->percentComplete += static_cast<int>(halfPercentage);
int factor = 1;
int level = 1;
int size = MAX(input->Width, input->Height);
while (size > 4*S)
{
GetStrokes(input, S, areaImage, factor, level, strokeContainer, strokeOffset);
size /= 2;
factor *= 2;
level++;
}
ComputationProgress::Instance()->percentComplete += static_cast<int>(halfPercentage);
delete areaImage;
}
void INativeMomentsPainter::GetStrokes(FastRawImage* input, int S, FastRawImage* area, int factor, int level, IStrokeContainer &strokeContainer, std::pair<int, int> strokeOffset)
{
int x, y;
FastRawImage* scaledWidth = FastRawImage::ScaleWidth(area, area->Width / factor);
FastRawImage* scaledAreaImg = FastRawImage::ScaleHeight(scaledWidth, area->Height / factor);
LARGE_INTEGER start, stop, freq;
QueryPerformanceCounter(&start);
FastRawImage* dithered = Dither(scaledAreaImg, 4*S/sqrt(static_cast<double>(level)), 2.0f/level);
// your function code here
QueryPerformanceCounter(&stop);
QueryPerformanceFrequency(&freq);
printf("Dither took %f ms\n", (double)(stop.QuadPart - start.QuadPart) / (double)freq.QuadPart * 1000.0);
QueryPerformanceCounter(&start);
FastRawImage* inputScaledWidth = FastRawImage::ScaleWidth(input, input->Width / factor);
FastRawImage* inscaled = FastRawImage::ScaleHeight(inputScaledWidth, input->Height / factor);
QueryPerformanceCounter(&stop);
QueryPerformanceFrequency(&freq);
printf("Scaling took %f ms\n", (double)(stop.QuadPart - start.QuadPart) / (double)freq.QuadPart * 1000.0);
int maxY = dithered->Height;
int maxX = dithered->Width;
NativeStroke s;
pair<int, int> lwPair;
QueryPerformanceCounter(&start);
for (y = 0; y < maxY; y++)
{
for (x = 0; x < maxX; x++)
{
if (dithered->GetColor(x, y).R == 0)
{
if (GenerateStroke(inscaled, x, y, S, factor, level, s) == ValidStroke)
{
s.xc += strokeOffset.first;
s.yc += strokeOffset.second;
strokeContainer.AddStroke(s);
//strokeContainer.areaToStrokeDimensionsMap[s.area].insert( pair<int, int>(s.l, s.w) );
//strokeContainer.strokeDimensionsToStrokesMap.insert(pair< std::pair<int, int>, NativeStroke>(pair<int, int>(s.l, s.w), s));
}
}
}
}
QueryPerformanceCounter(&stop);
QueryPerformanceFrequency(&freq);
printf("All GenerateStroke calls took %f ms\n", (double)(stop.QuadPart - start.QuadPart) / (double)freq.QuadPart * 1000.0);
// Clean up
delete scaledWidth;
delete scaledAreaImg;
delete dithered;
delete inputScaledWidth;
delete inscaled;
//return list.size;
}
FastRawImage* INativeMomentsPainter::ComputeAreaImageFast2(FastRawImage* inMem, int s)
{
FastRawImage* strokeAreaImage = new FastRawImage(inMem->Width, inMem->Height);
int pixel = 0;
FastRawImage piece(s, s, false);
for (int i = 0; i < inMem->Height; i++)
{
//StatusReporter::Instance->SetPercentComplete(((float)i / (float)input->Height) * 100.0f);
for (int j = 0; j < inMem->Width; j++)
{
inMem->Crop(j, i, s, s, piece);
PixelData topColor = inMem->GetColor(j, i);
double m = Moment00Fast2(piece, topColor);
pixel = (int)(255.0 * m / (piece.Width * piece.Height));
strokeAreaImage->SetColor(j, i, PixelData(pixel, pixel, pixel));
// For fast access
//strokeAreaImage->singledata[i * strokeAreaImage->Width + j] = PixelData(pixel, pixel, pixel);
}
}
return strokeAreaImage;
}
inline double INativeMomentsPainter::MomentI(PixelData &bgrxy, PixelData &bgr)
{
double d2, r2;
static double d02 = 150.0 * 150.0;
d2 = ColorDistance(bgrxy, bgr);
if (d2 >= d02)
return 0.0;
r2 = d2 / d02;
return ((1 - r2) * (1 - r2));
}
inline double INativeMomentsPainter::Moment00Fast2(FastRawImage &piece, PixelData &bgr)
{
double m = 0.0;
for (int i = 0; i < piece.Height; i++)
{
for (int j = 0; j < piece.Width; j++)
{
PixelData c = piece.GetColor(j, i); //[i * width + j];
m += MomentI(c, bgr);
}
}
return m;
}
/*
DWORD MakeDwordColor(int r, int g, int b)
{
DWORD dwStuff = ((r << 16) | (g << 8) | (b));
return dwStuff;
}
*/
int INativeMomentsPainter::ComputeTotalStrokes(StrokeContainer &strokeContainer)
{
StrokeContainer::DimensionToStrokesMapType::iterator strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator start_strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator end_strokeIter;
std::set< std::pair<int, int> >::iterator dimensionsIter;
std::pair<int, int> dimensions;
int strokeCounter = 0;
for(StrokeContainer::AreaToDimensionsMapType::iterator iter = strokeContainer.areaToStrokeDimensionsMap.begin(); iter != strokeContainer.areaToStrokeDimensionsMap.end(); ++iter)
{
for (dimensionsIter = iter->second.begin(); dimensionsIter != iter->second.end(); ++dimensionsIter)
{
dimensions = *dimensionsIter;
start_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.lower_bound(*dimensionsIter);
end_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.upper_bound(*dimensionsIter);
for (strokeIter = start_strokeIter; strokeIter != end_strokeIter; ++strokeIter)
{
strokeCounter++;
}
}
}
return strokeCounter;
}
//int INativeMomentsPainter::GenerateMovieFrames(CwmvFile *wmvFile, FastRawImage *sourceImageData, int frames)
//{
// int counter = 0;
// int totalVideoArrayElements = (sourceImageData->Height * sourceImageData->Width) - 1;
// DWORD* dwArray = (DWORD*) malloc(sourceImageData->Height * sourceImageData->Width * sizeof(DWORD));
// // First, construct data array from source Image
// for(int y=(sourceImageData->Height-1); y >= 0; y--)
// {
// for(int x=0; x < sourceImageData->Width; x++)
// {
// PixelData &colorData = sourceImageData->GetColor(x,y);
// dwArray[counter++] = ((colorData.R << 16) | (colorData.G << 8) | (colorData.B)); //MakeDwordColor(colorData.R, colorData.G, colorData.B);
// }
// }
// // Next, generate the requested number of frames
// int generatedFrames = 0;
// for (int i=0; i < frames; i++)
// {
// if(FAILED(wmvFile->AppendNewFrame(sourceImageData->Width, sourceImageData->Height, dwArray, 32)))
// {
// // TODO: How to handle this error?
// }
// else
// {
// generatedFrames++;
// }
// }
// free(dwArray);
// dwArray = NULL;
// // Return number of generated frames
// return generatedFrames;
//}
FastRawImage* INativeMomentsPainter::Render(StrokeContainer &strokeContainer)
{
//std::cout << "Entering INativeMomentsPainter::Render" << std::endl;
NativeStroke stroke;
FastRawImage *scaledStroke;
FastRawImage *painting = new FastRawImage(width, height);
painting->WhiteOut();
StrokeContainer::DimensionToStrokesMapType::iterator strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator start_strokeIter;
StrokeContainer::DimensionToStrokesMapType::iterator end_strokeIter;
std::set< std::pair<int, int> >::iterator dimensionsIter;
std::pair<int, int> dimensions;
int totalStrokes = 0;
int totalScalings = 0;
int totalAreaValues = 0;
float maxAreaValues = static_cast<float>(strokeContainer.areaToStrokeDimensionsMap.size());
//CwmvFile wmvFile;
int precomputedTotalStrokes = 0;
int strokeVideoModulo = 3;
int framesPerSecond = 100;
float desiredPaintingTimeInSeconds = 8;
int desiredFrames = desiredPaintingTimeInSeconds * framesPerSecond;
int totalFrames = 0;
if (this->generateMovie)
{
precomputedTotalStrokes = ComputeTotalStrokes(strokeContainer);
strokeVideoModulo = static_cast<int>(static_cast<float>(precomputedTotalStrokes) / static_cast<float>(desiredFrames));
if (strokeVideoModulo == 0)
{
strokeVideoModulo = 1;
}
std::cout << precomputedTotalStrokes << " strokes " << std::flush;
/*
wmvFile.PrepareToGenerate(WMProfile_V80_384Video, 1, this->movieFilename);
for (int introFrameIndex=0; introFrameIndex < this->introFrames.size(); introFrameIndex++)
{
totalFrames += GenerateMovieFrames(&wmvFile, this->introFrames[introFrameIndex], 300);
}*/
}
for(StrokeContainer::AreaToDimensionsMapType::iterator iter = strokeContainer.areaToStrokeDimensionsMap.begin(); iter != strokeContainer.areaToStrokeDimensionsMap.end(); ++iter)
{
totalAreaValues++;
ComputationProgress::Instance()->percentComplete = static_cast<int>(((static_cast<float>(totalAreaValues+1) / maxAreaValues) * 50) + 50);
for (dimensionsIter = iter->second.begin(); dimensionsIter != iter->second.end(); ++dimensionsIter)
{
dimensions = *dimensionsIter;
scaledStroke = FastRawImage::Scale(strokes[rand() % strokes.size()], static_cast<int>(dimensions.first), static_cast<int>(dimensions.second));
totalScalings++;
start_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.lower_bound(*dimensionsIter);
end_strokeIter = strokeContainer.strokeDimensionsToStrokesMap.upper_bound(*dimensionsIter);
int max = (scaledStroke->Width > scaledStroke->Height) ? scaledStroke->Width : scaledStroke->Height;
// TODO: This object is on the stack but the underlying singledata is still on the heap, and it's not freed. MEMORY PENALTY
FastRawImage rotatedStroke(max + max, max + max);
//StackBasedRawImage rotatedStroke(max + max, max + max);
for (strokeIter = start_strokeIter; strokeIter != end_strokeIter; ++strokeIter)
{
rotatedStroke.BlackOut();
//rotatedStroke = FastRawImage::Rotate(scaledStroke, strokeIter->second.theta);
FastRawImage::Rotate(scaledStroke, strokeIter->second.theta, rotatedStroke);
FastRawImage::Blend(painting, rotatedStroke, strokeIter->second.rgb, strokeIter->second.xc, strokeIter->second.yc);
//delete rotatedStroke;
// Generate movie frames, if enabled
/*
if (this->generateMovie)
{
if ((totalStrokes % strokeVideoModulo) == 0)
{
totalFrames += GenerateMovieFrames(&wmvFile, painting, 1);
}
}
*/
totalStrokes++;
}
delete scaledStroke;
}
}
// Finally, render the final frame for another few seconds
if (this->generateMovie)
{
int totalFinalFrames = framesPerSecond * 3; // Hold final for 3 seconds
//totalFrames += GenerateMovieFrames(&wmvFile, painting, totalFinalFrames);
}
std::cout << totalFrames << " frames..." << std::flush;
//std::cout << "Exiting INativeMomentsPainter::Render" << std::endl;
return painting;
}
}
}
}
}
}
}
| [
"[email protected]"
]
| |
9b1fe9f828c426a115f1ce5084ac0a7cc651438c | 084006eb442b60b82b3d85d61a3b53d21c5c8855 | /shared/Entity/SelectButtonWithCustomInputComponent.h | 7f525a14b9eaddc8df80f18c21149857a6047de6 | [
"XFree86-1.1",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
]
| permissive | SethRobinson/proton | 7aadcb38bc676c136dce01b8f6773fd75fa33d55 | 6b1474e75a2acf48d848c70fcb043ce8223001a9 | refs/heads/master | 2023-08-31T11:04:21.575522 | 2023-08-29T07:44:50 | 2023-08-29T07:44:50 | 142,253,855 | 81 | 31 | NOASSERTION | 2023-08-07T22:02:41 | 2018-07-25T05:55:38 | C++ | UTF-8 | C++ | false | false | 1,084 | h | // ***************************************************************
// SelectButtonWithCustomInputComponent - Creation date: 8/27/2010
// -------------------------------------------------------------
// Robinson Technologies Copyright (C) 2010 - All Rights Reserved
//
// ***************************************************************
// Programmer(s): Seth A. Robinson ([email protected])
// ***************************************************************
#ifndef SelectButtonWithCustomInputComponent_h__
#define SelectButtonWithCustomInputComponent_h__
#include "Entity/Component.h"
class SelectButtonWithCustomInputComponent: public EntityComponent
{
public:
SelectButtonWithCustomInputComponent();
virtual ~SelectButtonWithCustomInputComponent();
virtual void OnAdd(Entity *pEnt);
virtual void OnRemove();
private:
string * m_pKeys;
void OnInput( VariantList *pVList );
void ClickButton();
void OnInputRaw( VariantList *pVList );
uint32 *m_pDisabled;
uint32 *m_pKeyCode;
};
#endif // SelectButtonWithCustomInputComponent_h__ | [
"[email protected]"
]
| |
9b51a0e21765c846c5460cb6352b112553f489a4 | c47f85f33897c32b41dfd79eb9ecc34fcc0fe2c6 | /Modules/Meshing/Filter/.svn/text-base/vtkMimxPlanarTrilinearInterpolation.h.svn-base | 7a24eb1d6e6b26b200d7421810eb1be65a303a77 | [
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-3dslicer-1.0",
"BSD-3-Clause"
]
| permissive | pieper/ModelDraw | 1193b716209fdac6a38d48d42a8b9ffcf067a43c | 2ec77974b2c1a8f666704957be854877238e0f0c | refs/heads/master | 2020-05-21T00:19:35.884629 | 2015-06-25T08:42:14 | 2015-06-25T08:42:14 | 2,093,941 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,346 | /*=========================================================================
Program: MIMX Meshing Toolkit
Module: $RCSfile: vtkMimxPlanarTrilinearInterpolation.h,v $
Language: C++
Date: $Date: 2007/07/12 14:15:21 $
Version: $Revision: 1.6 $
Musculoskeletal Imaging, Modelling and Experimentation (MIMX)
Center for Computer Aided Design
The University of Iowa
Iowa City, IA 52242
http://www.ccad.uiowa.edu/mimx/
Copyright (c) The University of Iowa. All rights reserved.
See MIMXCopyright.txt or http://www.ccad.uiowa.edu/mimx/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
// .NAME vtkMimxPlanarTrilinearInterpolation - Create a solid structured grid
// given the number of nodes along each face and the position of these nodes.
// .SECTION Description
// vtkMimxPlanarTrilinearInterpolation is a filter that takes in list of points and
// number of divisions along parametric co-ordinate axes I and J. the output contains
// the co-ordinates of the interior nodes which could be used to create a structured grid.
#ifndef __vtkMimxPlanarTrilinearInterpolation_h
#define __vtkMimxPlanarTrilinearInterpolation_h
#include "vtkPointSetAlgorithm.h"
#include "vtkMimxFilterWin32Header.h"
class VTK_MIMXFILTER_EXPORT vtkMimxPlanarTrilinearInterpolation : public vtkPointSetAlgorithm
{
public:
static vtkMimxPlanarTrilinearInterpolation *New();
vtkTypeRevisionMacro(vtkMimxPlanarTrilinearInterpolation,vtkPointSetAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Number of nodes along the parametric axes I, J, and K.
vtkSetMacro(IDiv,int);
vtkGetMacro(IDiv,int);
vtkSetMacro(JDiv,int);
vtkGetMacro(JDiv,int);
protected:
vtkMimxPlanarTrilinearInterpolation();
~vtkMimxPlanarTrilinearInterpolation();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
int IDiv, JDiv;
private:
vtkMimxPlanarTrilinearInterpolation(const vtkMimxPlanarTrilinearInterpolation&); // Not implemented.
void operator=(const vtkMimxPlanarTrilinearInterpolation&); // Not implemented.
};
#endif
| [
"[email protected]"
]
| ||
4b7cda1589a2a71eb7ea2d9f18e20b191239cdf0 | 6c036ed6dc4ac3d521984b8421c469e4f442146f | /Project Komgraf Space Impact/LodeRunner/cPelor.cpp | 92a9a4263a0d0c8a5d12057e033cc9e634d93bbc | []
| no_license | coolize/broken-spaceimpact | 978b690ae0353ee75ef882d7af4b7e71b8426d88 | 4616eafeac0b0981233c88476b72f484ff65232b | refs/heads/master | 2021-01-20T17:46:18.232002 | 2016-06-01T17:13:34 | 2016-06-01T17:13:34 | 60,185,440 | 0 | 0 | null | 2016-06-01T15:45:07 | 2016-06-01T14:44:59 | C++ | UTF-8 | C++ | false | false | 1,830 | cpp | #include "cPelor.h"
#include "cGame.h"
#include "cPlayer.h"
cPelor::cPelor()
{
}
cPelor::~cPelor()
{
}
void cPelor::Render()
{
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D, bulletSheet->at(animControl->Index())->Texture());
glBegin(GL_QUADS);
//TODO: NANTI GANTI JADI 50 Z nya biar peluru dari blkg pesawat
glTexCoord2f(bulletSheet->at(animControl->Index())->X0(), bulletSheet->at(animControl->Index())->Y1()); glVertex3i(x, y, 50);
glTexCoord2f(bulletSheet->at(animControl->Index())->X1(), bulletSheet->at(animControl->Index())->Y1()); glVertex3i(x + Width(), y, 50);
glTexCoord2f(bulletSheet->at(animControl->Index())->X1(), bulletSheet->at(animControl->Index())->Y0()); glVertex3i(x + Width(), y + Height(), 50);
glTexCoord2f(bulletSheet->at(animControl->Index())->X0(), bulletSheet->at(animControl->Index())->Y0()); glVertex3i(x, y + Height(), 50);
glEnd();
glDisable(GL_TEXTURE_2D);
}
void cPelor::Init()
{
animControl = new cAnimControl();
animControl->AddAnim("NoLoop", "bullet_forward", 0, 0, 0.2f);
}
void cPelor::Update(float tpf)
{
animControl->UpdateAnim(tpf);
if (keys[32]) {
if (
animControl->ActiveName() != "bullet_forward")
animControl->SetActiveAnim("bullet_forward");
}
if (y < GAME_HEIGHT && y>0) {
y += 10 * unitpersec;
}
}
void cPelor::ReadKeyboard(unsigned char key, int x, int y, bool press)
{
if (press)
{
keys[key] = true;
}
else
{
keys[key] = false;
}
}
void cPelor::ReadSpecialKeyboard(unsigned char key, int x, int y, bool press)
{
if (press)
{
keys[key] = true;
}
else
{
keys[key] = false;
}
}
void cPelor::ReadMouse(int button, int state, int x, int y)
{
}
void cPelor::sety(int y)
{
this->y = y;
}
void cPelor::setx(int x)
{
this->x = x;
}
| [
"[email protected]"
]
| |
bf858bf44db384adc3cf7e8d3c4b91ca674bd664 | cd584fbc26ecf1dbc2d2bf97ff5d169502aa18c3 | /2012/LAMPS_SiCsI/Suhyun_modified/src/examplePrimaryGeneratorAction.cc | 94c630f5991e232df997a4fde35647073732b84f | []
| no_license | SongkyoLee/KUNPL | 10b63177354c2416a28c8ddb9761113ad93613fe | f3200a70fa07a3d1873d67e1c52a2d502b506679 | refs/heads/master | 2016-09-12T15:15:17.911319 | 2016-05-09T12:07:44 | 2016-05-09T12:07:44 | 58,053,105 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,266 | cc | #include "examplePrimaryGeneratorAction.hh"
#include "TMath.h"
#include "Randomize.hh"
#include "G4ParticleGun.hh"
#include "G4Event.hh"
#include "G4IonTable.hh"
#include "G4UnitsTable.hh"
#include "G4ThreeVector.hh"
#include "G4ParticleDefinition.hh"
examplePrimaryGeneratorAction::examplePrimaryGeneratorAction()
{
particleGun = new G4ParticleGun;
gunPosition = G4ThreeVector(0*cm, 0*cm, 0*cm); //KYO
particleGun -> SetParticlePosition(gunPosition);
G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
G4ParticleDefinition* proton = particleTable -> FindParticle("pi+");
particleGun -> SetParticleDefinition(proton);
kineticEnergy = 100*MeV; //KYO
particleGun -> SetParticleEnergy(kineticEnergy);
}
examplePrimaryGeneratorAction::~examplePrimaryGeneratorAction()
{
delete particleGun;
}
void examplePrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
{
G4double rand = G4UniformRand();
G4double mz = TMath::Tan((14+10*rand)*degree);
// momentumDirection = G4ThreeVector(0, mz, 1);
momentumDirection = G4ThreeVector(10, 18, 55); //KYO
particleGun -> SetParticleMomentumDirection(momentumDirection);
particleGun -> GeneratePrimaryVertex(anEvent);
}
| [
"[email protected]"
]
| |
762811bd242f865343ab87c5bab0e8298736aa38 | 081e5e8cc28e84bb16d6c4fc8b12b75a7bac2a16 | /button.h | 644fe11445b2f974e466169b78fb7f07ba34d6fb | []
| no_license | amtlib-dot-dll/UI-Framework-UI | 64f4a0bbb9035ab32370870f2b89367da6cba20d | 78dba9cc86760ebb8e31e8f50031e3aa1a61194c | refs/heads/master | 2021-01-13T10:55:30.849965 | 2016-10-30T12:36:46 | 2016-10-30T12:52:07 | 72,275,961 | 0 | 0 | null | 2016-10-30T12:52:07 | 2016-10-29T09:23:05 | C++ | UTF-8 | C++ | false | false | 333 | h | #ifndef INCLUDE_GUARD_BUTTON_H
#define INCLUDE_GUARD_BUTTON_H
#include "window.h"
#include <memory>
#include <string>
class button_t {
class impl_t;
std::unique_ptr<impl_t> impl_;
public:
button_t(uintptr_t id, std::string text, int x, int y, int width, int height, window_t& window);
~button_t();
};
#endif | [
"[email protected]"
]
| |
2791b45429448205d5d1b843c5da8739d91934c1 | 9faee3f44035d5557b85c9a8690e9790babdf3a7 | /v6/cpp_module_02/TargetGenerator.cpp | 660477f4084b406c04f414abef642ced1a4d6eb9 | []
| no_license | d-r-e/exam-rank-05 | 81c795bc2b8aeb6876fc4712a53e19d763118d7c | 5e2591f2a615e469328d6d31c777b21dd7f9c03e | refs/heads/master | 2022-12-27T08:41:39.077136 | 2020-10-09T07:17:14 | 2020-10-09T07:17:14 | 292,661,917 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,044 | cpp | #include "TargetGenerator.hpp"
TargetGenerator::TargetGenerator()
{
}
TargetGenerator::~TargetGenerator()
{
for (std::vector<ATarget*>::iterator it = targets.begin(); it != targets.end();
++it)
{
delete *it;
}
targets.clear();
}
void
TargetGenerator::learnTargetType(ATarget *target)
{
if (target)
{
for (std::vector<ATarget*>::iterator it = targets.begin();
it != targets.end(); ++it)
{
if ((*it)->getType() == target->getType())
return;
}
targets.push_back(target->clone());
}
}
void
TargetGenerator::forgetTargetType(std::string const &name)
{
std::vector<ATarget*>::iterator it = targets.begin();
while(it != targets.end())
{
if (name == (*it)->getType())
{
delete *it;
it = targets.erase(it);
}
else
++it;
}
}
ATarget *TargetGenerator::createTarget(std::string const & typeName) {
std::vector<ATarget*>::iterator ite = targets.end();
for (std::vector<ATarget*>::iterator it = targets.begin(); it != ite; ++it) {
if ((*it)->getType() == typeName)
return *it;
}
return NULL;
}
| [
"[email protected]"
]
| |
9215230c69a94e2cadfe89b8597a155749241e92 | 21769b17a88f9ce4b289ef7648427e81d234fe07 | /SPOJ/NATUREZA.cpp | 8255994555bae816d8b6091267e18874c4c7878e | []
| no_license | jessicaione101/online-judge-solutions | 74deea11ada9cbfa19d1bbf7afa052c7b8a8e47b | 2067f65d9eb18dadff7cbb6bc4f8d21f2fcc1a10 | refs/heads/master | 2021-08-23T12:13:21.423364 | 2017-12-04T21:34:35 | 2017-12-04T21:34:35 | 113,095,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,408 | cpp | // http://br.spoj.com/problems/NATUREZA/
#include <iostream>
#include <vector>
#include <map>
#include <string>
#include <queue>
int countFoodChain(const std::vector<std::vector<int>>& nature, int animal) {
std::vector<bool> visited(nature.size());
std::queue<int> to_visit;
to_visit.push(animal);
visited[animal] = true;
int size = 1;
while (!to_visit.empty()) {
animal = to_visit.front();
to_visit.pop();
for (size_t i = 0; i < nature[animal].size(); ++i) {
if (!visited[nature[animal][i]]) {
visited[nature[animal][i]] = true;
to_visit.push(nature[animal][i]);
++size;
}
}
}
return size;
}
int main() {
int c, r;
std::cin >> c >> r;
while (c != 0 || r != 0) {
std::map<std::string, int> animals;
std::vector<std::vector<int>> nature(c);
int value = 0;
while (c-- > 0) {
std::string animal;
std::cin >> animal;
animals[animal] = value++;
}
while (r-- > 0) {
std::string prey, predator;
std::cin >> prey >> predator;
nature[animals[predator]].push_back(animals[prey]);
nature[animals[prey]].push_back(animals[predator]);
}
int max = 0;
for (size_t i = 0; i < nature.size(); ++i) {
int size = countFoodChain(nature, i);
if (size > max)
max = size;
}
std::cout << max << std::endl;
std::cin >> c >> r;
}
return 0;
}
| [
"[email protected]"
]
| |
c9f0fb1b716e373a1b977c2c1ca68af450bbd2f0 | 6cd1bf6544347c85cabaf672a5ed2dad94a18b63 | /TopCoder/SRM836/B.cpp | 2e59b51c7458ba7b1ad9bf3a389fb061cd393f11 | []
| no_license | Shell-Wataru/AtCoder | 0a35f12478ac0ab54711171f653ce7bed5189c92 | 0ba32250f4e4a44459a4cd231ff47a5f46c4fe87 | refs/heads/master | 2023-01-10T04:21:25.199532 | 2023-01-09T04:16:30 | 2023-01-09T04:16:30 | 89,144,933 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,433 | cpp | #include <string>
#include <cmath>
#include <cstring>
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <queue>
#include <iostream>
#include <iomanip>
using namespace std;
using ll = long long;
// template <typename T>
// struct V : vector<T>
// {
// using vector<T>::vector;
// };
// V()->V<int>;
// V(size_t)->V<int>;
// template <typename T>
// V(size_t, T) -> V<T>;
// template <typename T>
// vector<T> make_vec(size_t n, T a) { return vector<T>(n, a); }
// template <typename... Ts>
// auto make_vec(size_t n, Ts... ts) { return vector<decltype(make_vec(ts...))>(n, make_vec(ts...)); }
// template <typename T>
// ostream &operator<<(ostream &os, const vector<T> &v)
// {
// for (auto &e : v)
// os << e << ' ';
// return os;
// }
// struct fast_ios
// {
// fast_ios()
// {
// cin.tie(nullptr);
// ios::sync_with_stdio(false);
// cout << fixed << setprecision(20);
// };
// } fast_ios_;
class DoubleWordLadder
{
public:
vector<string> transform(string A, string B)
{
ll N = A.size();
vector<ll> changes;
for (int i = 0; i < N; i++)
{
if (A[i] != B[i])
{
changes.push_back(i);
}
}
if (changes.size() == 0)
{
return {A};
}
else
{
if (changes.size() == 1)
{
if (A[0] == B[0])
{
changes.push_back(0);
}
else
{
changes.push_back(1);
}
}
vector<string> ans = {A};
for (auto c : changes)
{
for (int j = 0; j < 26; j++)
{
if (j != A[c] - 'a' && j != B[c] - 'a')
{
A[c] = 'a' + j;
break;
}
}
ans.push_back(A);
}
// cout << "!" << endl;
for (auto c : changes)
{
A[c] = B[c];
ans.push_back(A);
}
return ans;
}
}
};
// int main()
// {
// DoubleWordLadder m;
// cout << m.transform(
// "aa",
// "ba"
// )
// << endl;
// return 0;
// } | [
"[email protected]"
]
| |
615be1c84d7e46dc8d379914a91e7874470451f9 | 751c4f8f57604ee74238fb2b7f2013217db29ea2 | /2-10.cpp | 93f36abc423211cd8883dbac6e3f4fb20ce91d98 | []
| no_license | ligenkang/text | 999553df6e9384cbfe37d0a500a96d8f5f6585fe | 4a485d97311f831e9771fdcb05f8eec7db6a871e | refs/heads/master | 2016-09-14T14:39:50.055801 | 2016-04-24T08:45:49 | 2016-04-24T08:45:49 | 56,657,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 303 | cpp | #include<iostream>
using namespace std;
int main(){
int i=0,j=0,n;
cout<<"enter some integers please(enter 0 to quit):"<<endl;
cin>>n;
while(i!=0){
if(n>0)i+=1;
if(n<0)j+=1;
cin>>n;
}
cout<<"Count of positive integers:"<<i<<endl;
cout<<"Count of negative integers:"<<j<<endl;
return 0;
}
| [
"[email protected]"
]
| |
4e308d78c5571d41524491aee40bdc9f34932b6d | f3b91386fe3a639a54c340e65a28147699ede19b | /DS1302.ino | 1b7ad0020fb85eb28c87f0bf9bbdbfec3caaad81 | []
| no_license | DKKowalski/Light-Automation-System | b2b43214a09a78f29b62bfe097cca435f3e48ff7 | 856d471f03dd0732bc81a1727eacc874e3d1e1e0 | refs/heads/master | 2023-05-30T09:24:31.218721 | 2021-06-17T16:39:50 | 2021-06-17T16:39:50 | 375,837,665 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,668 | ino | #include <virtuabotixRTC.h>
#define LEDPin 13
//creation of the Real Time Clock Object
virtuabotixRTC myRTC(6,7,8);
char Incoming_value = 0; //Variable for storing Incoming_value
void setup() {
// put your setup code here, o run once:
Serial.begin(9600);
pinMode(LEDPin,OUTPUT);
myRTC.setDS1302Time(00, 59, 23, 3, 6, 9, 2021);
}
void loop() {
bluetooth();
delay(500);
clockRTC();
}
void clockRTC(){
myRTC.updateTime();
Serial.print("Current Date / Time: ");
Serial.print(myRTC.dayofmonth);
Serial.print("/");
Serial.print(myRTC.month);
Serial.print("/");
Serial.print(myRTC.year);
Serial.print(" ");
Serial.print(myRTC.hours);
Serial.print(":");
Serial.print(myRTC.minutes);
Serial.print(":");
Serial.println(myRTC.seconds);
if (myRTC.seconds == 30 && myRTC.minutes == 59){
digitalWrite(LEDPin, HIGH);
}else if(myRTC.seconds == 00 && myRTC.minutes == 1) {
digitalWrite(LEDPin, LOW);
}
}
void bluetooth(){
if(Serial.available() > 0)
{
Incoming_value = Serial.read(); //Read the incoming data and store it into variable Incoming_value
Serial.print(Incoming_value); //Print Value of Incoming_value in Serial monitor
Serial.print("\n"); //New line
if(Incoming_value == '1') //Checks whether value of Incoming_value is equal to 1
digitalWrite(LEDPin, HIGH); //If value is 1 then LED turns ON
else if(Incoming_value == '0') //Checks whether value of Incoming_value is equal to 0
digitalWrite(LEDPin, LOW); //If value is 0 then LED turns OFF
}
}
| [
"[email protected]"
]
| |
85dbb89b471a7423b25f364ce08a60abf7125658 | 0a6265e93202a96293cc959e5bfd5b0dd60a962b | /include/PublicLib/XYLog.h | e06b4390a8db4b17677c78b701a433d743a74cd5 | []
| no_license | lixuhuli/ios | ffd7661bc6497d970809c38bc58744c234ae7ba0 | 056a7921ff5d1f1b03329e472393f6d55b0407a1 | refs/heads/master | 2020-04-10T11:52:17.941496 | 2019-03-20T07:43:17 | 2019-03-20T07:43:17 | 161,005,138 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 8,744 | h | #pragma once
#include <windows.h>
#include <string>
using namespace std;
enum XYLOG_LEVEL
{
LEVEL_DEAD = 1,//致命日志
LEVEL_ERROR = 2,//错误日志
LEVEL_WARN = 3,//警告日志
LEVEL_INFO = 4,//信息日志
LEVEL_DEBUG = 5,//调试日志
};
enum XYLOG_OUTPUT_MODE
{
OUTPUT_MODE_DATE = 1,//按日期打印日志。即程序每天生成一个日志文件,已追加的方式写入
OUTPUT_MODE_SESSION,//按会话打印日志。每次启动程序生成一个日志文件
};
#define SET_PROCESS_NAME_EX(g_pXyLog,strProcessName) g_pXyLog->SetProcessName(strProcessName)
#define SET_XYLOG_ON_EX(g_pXyLog,bLogOn) g_pXyLog->SetLogOn(bLogOn)
#define SET_XYLOG_OUT_MODE_EX(g_pXyLog,nOutMode) g_pXyLog->SetOutputMode(nOutMode)
#define SET_XYLOG_PATH_EX(g_pXyLog,pszLogPath) g_pXyLog->SetLogPath(pszLogPath)
#define SET_XYNETLOG_LEVEL_EX(g_pXyLog,nLogLevel) g_pXyLog->SetNetLogLevel(nLogLevel)
#define SET_XYLOG_LEVEL_EX(g_pXyLog,nLogLevel) g_pXyLog->SetLogLevel(nLogLevel)
#define SET_XYLOG_FILE_MAX_LEN_EX(g_pXyLog,ulFileMaxLen) g_pXyLog->SetLogFileMaxLen(ulFileMaxLen)
#define SET_XYLOG_LOG_SPACE_EX(g_pXyLog,ulDiskSpace) g_pXyLog->SetLogSpace(ulDiskSpace)
#define OUTPUT_XYLOG_STRING_EX(g_pXyLog,strLog,nLogLevel) g_pXyLog->WriteString(strLog,nLogLevel,__FILEW__,__LINE__)
#define OUTPUT_XYLOG_EX(g_pXyLog,nLogLevel,format, ...) g_pXyLog->WriteLog(nLogLevel,__FILEW__,__LINE__,format, ##__VA_ARGS__)
#define SET_PROCESS_NAME(strProcessName) SET_PROCESS_NAME_EX(CXYLog::GetInstance(),strProcessName)
#define SET_XYLOG_ON(bLogOn) SET_XYLOG_ON_EX(CXYLog::GetInstance(),bLogOn)
#define SET_XYLOG_OUT_MODE(nOutMode) SET_XYLOG_OUT_MODE_EX(CXYLog::GetInstance(),nOutMode)
#define SET_XYLOG_PATH(pszLogPath) SET_XYLOG_PATH_EX(CXYLog::GetInstance(),pszLogPath)
#define SET_XYNETLOG_LEVEL(nLogLevel) SET_XYNETLOG_LEVEL_EX(CXYLog::GetInstance(),nLogLevel)
#define SET_XYLOG_LEVEL(nLogLevel) SET_XYLOG_LEVEL_EX(CXYLog::GetInstance(),nLogLevel)
#define SET_XYLOG_FILE_MAX_LEN(ulFileMaxLen) SET_XYLOG_FILE_MAX_LEN_EX(CXYLog::GetInstance(),ulFileMaxLen)
#define SET_XYLOG_LOG_SPACE(ulDiskSpace) SET_XYLOG_LOG_SPACE_EX(CXYLog::GetInstance(),ulDiskSpace)
#define OUTPUT_XYLOG_STRING(strLog,nLogLevel) OUTPUT_XYLOG_STRING_EX(CXYLog::GetInstance(),strLog,nLogLevel)
#define OUTPUT_XYLOG(nLogLevel,format, ...) OUTPUT_XYLOG_EX(CXYLog::GetInstance(),nLogLevel,format, ##__VA_ARGS__)
class CXYLog
{
public:
CXYLog(void);
~CXYLog();
public:
static CXYLog* GetInstance();
//设置进程名
void SetProcessName( const std::wstring& strProcessName );
/***********************************************************************************************
函数名称:SetSyncWriteLog
实现功能:设置是否同步打印日志,不设置默认异步打印日志
参数列表:bSync:true:同步打印日志 false:异步打印日志
返回值 :NA
***********************************************************************************************/
void SetSyncWriteLog(bool bSync = false);
/***********************************************************************************************
函数名称:SetOutputMode
实现功能:设置是日志输出方式,默认按日期打印日志
参数列表:emOutputMode:OUTPUT_MODE_DATE:默认按日期打印
OUTPUT_MODE_SESSION:按会话打印日志
返回值 :NA
***********************************************************************************************/
void SetOutputMode( XYLOG_OUTPUT_MODE emOutputMode = OUTPUT_MODE_DATE );
/***********************************************************************************************
函数名称:SetLogPath
实现功能:设置日志路径,不设置默认日志打印在exe目录下的log目录,日志名为exe名称
参数列表:strLogPath:日志路径 例如:c:\log\XYClient.log 日志名称会自动在后面添加年月日c:\log\XYClient2015-07-21.log
返回值 :成功或失败
***********************************************************************************************/
bool SetLogPath(LPCTSTR strLogPath);
/***********************************************************************************************
函数名称:SetLogSpace
实现功能:设置所有日志所占最大磁盘空间,单位:M 不设置默认为500M,当超过此值时自动删除出当天外的所有日志
参数列表:ulDiskSpace:日志所占最大磁盘空间,单位:M
返回值 :成功或失败
***********************************************************************************************/
bool SetLogSpace(unsigned long ulDiskSpace);
/***********************************************************************************************
函数名称:SetLogLevel
实现功能:设置日志级别,不设置时默认日志级别为 调试日志
参数列表:nLogLevel:日志级别
返回值 :成功或失败
***********************************************************************************************/
bool SetLogLevel(XYLOG_LEVEL nLogLevel);
/***********************************************************************************************
函数名称:SetNetLogLevel
实现功能:设置网络日志级别,不设置时默认不打印网络日志
参数列表:nLogLevel:网络日志级别
返回值 :成功或失败
***********************************************************************************************/
bool SetNetLogLevel(XYLOG_LEVEL nLogLevel);
/***********************************************************************************************
函数名称:SetLogFileMaxLen
实现功能:设置每个日志文件的大小,单位:M 不设置默认单个日志文件大小为10M,超过此值时自动切换下一个日志打印
参数列表:ulFileMaxLen:每个日志文件的最大长度
返回值 :成功或失败
***********************************************************************************************/
bool SetLogFileMaxLen(unsigned long ulFileMaxLen );
/***********************************************************************************************
函数名称:WriteString
实现功能:写日志数据——字符串
参数列表:str:日志内容 nLogLevel:日志等级 strFile:文件名(__FILEW__) nLine:代码行(__LINE__)
返回值 :成功或失败
***********************************************************************************************/
bool WriteString(LPCTSTR strLog,XYLOG_LEVEL nLogLevel,LPCTSTR strFile,int nLine);
/***********************************************************************************************
函数名称:WriteHex
实现功能:写日志数据——十六进制打印数据
参数列表:pCommand:日志内容 nCount:内容长度 str:日志行头说明
nLogLevel:日志等级 strFile:代码文件名(__FILEW__) nLine:代码行(__LINE__)
返回值 :成功或失败
***********************************************************************************************/
bool WriteHex(BYTE* pCommand,int nCount,LPCTSTR strLog ,XYLOG_LEVEL nLogLevel,LPCTSTR strFile,int nLine);
/***********************************************************************************************
函数名称:WriteLog
实现功能:写日志数据——可变参数日志打印
参数列表:nLogLevel:日志级别 strFile:代码文件名(__FILEW__) nLine:代码行(__LINE__) pszFormat:格式
返回值 :变参打印日志
***********************************************************************************************/
bool WriteLog(XYLOG_LEVEL nLogLevel,LPCTSTR strFile,int nLine,LPCTSTR pszFormat,...);
/***********************************************************************************************
函数名称:GetLogPath
实现功能:获取当前打印日志文件路径
参数列表:NA
返回值 :当前打印日志文件路径
***********************************************************************************************/
wstring GetLogPath();
/***********************************************************************************************
函数名称:StopLogOn
实现功能:设置日志打印开关
参数列表:bLogOn: true:打开日志打印 false:关闭日志打印
返回值 :成功或失败
***********************************************************************************************/
bool SetLogOn( bool bLogOn );
private:
void* m_pLog;
};
| [
"[email protected]"
]
| |
396d2753d98f20768cc31a84f628e3f8dca9afb7 | 0de9688de651ee81660dee187291bd97e5da1ee2 | /tool/code/trunk/cxx/Filtering/Core/templates/itkMeanHistogram.hxx | 684aaeaa3d8e41f75b19833843af0a6daa3fd9f7 | []
| no_license | zengruizhao/Radiomics | 2845cd7f17a46fae95be5d68b135ceda76ed4e44 | 34c1f1bff12fb994c904eaab0691f33819067003 | refs/heads/master | 2022-04-26T11:56:59.338297 | 2020-05-01T08:15:12 | 2020-05-01T08:15:12 | 257,222,358 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,240 | hxx | #ifndef __itkMeanHistogram_hxx
#define __itkMeanHistogram_hxx
////////////////////////////////////////////////////////////////////////////////////////////////////
#include "ccipdDisableWarningsMacro.h"
// itk includes
#include <itkMeanHistogram.h>
#include <itkNumericTraits.h>
#include "ccipdEnableWarningsMacro.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
namespace itk
{
template< class TInputPixel >
MeanHistogram< TInputPixel >
::MeanHistogram():
m_sum(0),
m_count(0),
m_nanCount(0)
{
};
template< class TInputPixel >
void
MeanHistogram< TInputPixel >
::AddPixel(const TInputPixel &p)
{
if (p!=p)
m_nanCount++;
else
m_sum+= p;
m_count++;
}
template< class TInputPixel >
void
MeanHistogram< TInputPixel >
::RemovePixel(const TInputPixel &p)
{
if (p!=p)
m_nanCount--;
else
m_sum-= p;
m_count--;
}
template< class TInputPixel >
TInputPixel
MeanHistogram< TInputPixel >
::GetValue(const TInputPixel &)
{
if( m_nanCount > 0 )
return std::numeric_limits< TInputPixel >::quiet_NaN();
else
{
float m_value = ( m_sum/ (m_count) );
return static_cast< TInputPixel > (m_value);
}
}
} //end namespace itk
#endif | [
"[email protected]"
]
| |
b59e01299a65854b4c92d9e14f96d4f75c049a82 | 16acfcc436e9913c548f722b324577f7c82c2c39 | /client_random_chunk_test.cpp | 6999ec4ddd46de30d0759674ae2687fe2e68be64 | []
| no_license | Anjay-commits/OS_assignment2 | 6f3a93e841681f18214497a2930629613210b93b | 65c35c7071cfe37a75a3f3cfb248e943f53f63d1 | refs/heads/master | 2020-09-05T17:56:40.161894 | 2019-10-15T16:05:38 | 2019-10-15T16:05:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,661 | cpp | #include <cstdio>
#include <cstdlib>
#include <cstring>
#include <netinet/in.h>
#include <unistd.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#define CHUNK_SIZE 524288
int main()
{
int sockfd ;
if((sockfd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
printf("SOcket cannot be created.\n");
struct sockaddr_in s_addr ;
bzero( (char*)&s_addr, sizeof s_addr );
s_addr.sin_family = AF_INET ;
s_addr.sin_port = 42069 ;
s_addr.sin_addr.s_addr = inet_addr("127.0.0.1") ;
if(connect(sockfd, (struct sockaddr*)&s_addr, sizeof s_addr) < 0)
printf("Cannot connect to the server.\n");
int file_size ;
recv(sockfd, &file_size, sizeof file_size, 0);
printf("Server sent me file size : %d\n", file_size);
int num_chunks = file_size / CHUNK_SIZE + (file_size % CHUNK_SIZE == 0 ? 0 : 1);
int ack = 1 ;
FILE* fp ;
fp = fopen("t_video.mp4", "wb");
int bytes_recv ;
int vals[18] = {5, 6, 1, 2, 3, 18, 17, 16, 15, 14, 7, 8, 9, 10, 13, 12, 11, 4} ;
for(int i = 0 ; i < 18 ; ++i)
{
int ack = vals[i] ;
int size_to_recv = (ack == num_chunks ? file_size - (CHUNK_SIZE * (num_chunks-1)) : CHUNK_SIZE) ;
fseek(fp, CHUNK_SIZE*(ack-1), SEEK_SET) ;
send(sockfd, &ack, sizeof ack, 0) ;
printf("Sent request for : %d\n", ack) ;
char buf[512] ;
//int chunk_sent = 0;
while( size_to_recv > 0 && (bytes_recv = recv(sockfd, buf, sizeof buf, 0)) > 0)
{
//printf("%d\n", ++chunk_sent);
fwrite(buf, sizeof(char), bytes_recv, fp);
size_to_recv -= bytes_recv ;
//printf("%d\n", size_to_recv) ;
}
printf("Received chunk %d\n", ack) ;
//file_size -= CHUNK_SIZE ;
}
fclose(fp) ;
close(sockfd) ;
return 0 ;
} | [
"[email protected]"
]
| |
8489d3e3d6f81dd0b7e1b9a2585650a2a326b093 | e02bd4b6b09218714a2f77b3db992c1b2a6f7f69 | /Player.cpp | d03a3d5fe1cc468c85f212302ae4d09c121f5a5d | []
| no_license | kmonteith25/KevinMonteithHomeworkTwo | 6ea0dd615070bd20427d230f44ac509ff71eb75b | 32fe3c00d8244425bf39cf758b389eca2da56a06 | refs/heads/master | 2021-01-06T08:34:29.129104 | 2020-02-20T03:53:43 | 2020-02-20T03:53:43 | 241,262,823 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 798 | cpp | #include "Player.h"
//returns current hand total
int Player::getHandTotal()
{
return hand->getTotal();
}
//adds card to hadn
void Player::addCardToHand(Card* card)
{
this->hand->addCard(card);
}
//clears hand of all cards
void Player::clearHand()
{
this->hand->clearHand();
}
//request hit from dealer
void Player::requestHit(Dealer* dealer)
{
this->addCardToHand(dealer->hit());
}
//request the dealer to deal initial cards
void Player::requestDeal(Dealer* dealer)
{
this->addCardToHand(dealer->hit());
this->addCardToHand(dealer->hit());
}
//print hand
void Player::printHand()
{
hand->printHand();
}
void Player::requestStand()
{
}
//checks is player has busted
bool Player::isHandBust()
{
return hand->isBust();
}
Player::Player()
{
hand = new Hand();
}
Player::~Player()
{
}
| [
"[email protected]"
]
| |
075c3adb218a531dc558060ee7a2beb2826f562e | 493a80313571bdf1163771818f5ac2e72d40428d | /PP10.Polymorphism/Enemy.h | faf517146e1e94bc4ee67c764a6aaa160e3953ee | []
| no_license | tjdqls1258/GameFramwork | d66cc622b982caf74c159122fe8cc58fe07c2e41 | cbb1318f40372552188720f7ae77253de067ae06 | refs/heads/master | 2020-03-28T06:10:39.779149 | 2018-11-09T03:16:14 | 2018-11-09T03:16:14 | 147,818,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 259 | h | #include "GameObject.h"
class Enemy : public GameObject
{
public:
Enemy(const LoaderParams* pPap) {}
Enemy(){ }
void load(int x, int y, int width, int height,
std::string textureID);
void draw(SDL_Renderer* pRenderer);
void update();
void clean();
}; | [
"[email protected]"
]
| |
e0e1cc079e4c035cdcb394252256c5c6139cdfb6 | 875eca0881a375fa7f646cd273e23dbacd61f7ae | /project/Optional_05_03/Optional_05_03/system/system.h | e33f240de90faf9363fe71caf3abe834aa86c9d8 | []
| no_license | nezumimusume/DirectX_3_2021 | 30d974142d5b76b92395c3f60fb15ea4e93f419e | 107f1a64f0b6b989edd83c8aadec17e04506e7c0 | refs/heads/master | 2023-08-20T07:00:27.686112 | 2021-10-20T23:56:40 | 2021-10-20T23:56:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | h | #pragma once
class GraphicsEngine;
extern HWND g_hWnd ; //ウィンドウハンドル。
//ゲームの初期化。
void InitGame(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow, const TCHAR* appName);
//ウィンドウメッセージをディスパッチ。falseが返ってきたら、ゲーム終了。
bool DispatchWindowMessage();
| [
"[email protected]"
]
| |
e2e14566af6fa1eb5b8ab6dbff04553ddbd2dffe | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/chromium_org/components/autofill/core/browser/autofill_regexes.h | ffe4d0f15dae52fcc9288f8a97f000987b381e01 | [
"BSD-3-Clause"
]
| permissive | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C++ | false | false | 463 | h | // Copyright 2013 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 COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEXES_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_REGEXES_H_
#include "base/strings/string16.h"
namespace autofill {
bool MatchesPattern(const base::string16& input,
const base::string16& pattern);
}
#endif
| [
"[email protected]"
]
| |
5cb6b6a444d68a990432d504290fd8355456306c | 57d94c5f460292c62a445467c3a759546cdd6d7a | /StudentDB.cpp | c6f34dcef221e632c8fc8f6ee7e8594b22365091 | []
| no_license | TodkarPrem/MiniProjects | 4ad45093c76926ee0fefe03bd610d6207d7e921d | 8947d788a601d0ecc45f95e5c49a64ab7bf53079 | refs/heads/master | 2022-11-26T13:27:45.941596 | 2020-08-13T12:42:01 | 2020-08-13T12:42:01 | 263,821,756 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,159 | cpp | #include <iostream>
#include <stdio.h>
#include <fstream>
#include <string.h>
using namespace std;
class college
{
char snm[20], stnm[20], std[20], admdate[10], dec;
int rn, age, f;
fstream fs;
public:
void putread();
void display();
void rollnumberwise();
void studentsearch();
void deletestudent();
};
void college::putread()
{
fs.open("college.txt", ios::out | ios::app);
do {
cout << "\nEnter Name, age, class, rollnumber, admission date: \n";
cin >> stnm >> age >> std >> rn >> admdate;
fs << stnm << "\t" << age << "\t" << std << "\t" << rn << "\t" << admdate << endl;
cout << "\nWant to repeat (y/n)? : ";
cin >> dec;
} while (dec == 'y' || dec == 'Y');
fs.close();
}
void college::display()
{
fs.open("college.txt", ios::out | ios::in);
while (fs) {
fs >> stnm >> age >> std >> rn >> admdate;
if (fs.eof() == 0)
cout << stnm << "\t" << age << "\t" << std << "\t" << rn << "\t" << admdate << endl;
}
fs.close();
}
void college::studentsearch()
{
fs.open("college.txt", ios::out | ios::in);
f = 0;
cout << "\nEnter student name to search : ";
cin >> snm;
while (fs) {
fs >> stnm >> age >> std >> rn >> admdate;
if (fs.eof() == 0)
if (strcmp(stnm, snm) == 0) {
f = 1;
cout << stnm << "\t" << age << "\t" << std << "\t" << rn << "\t" << admdate << endl;
}
}
fs.close();
if (f == 0)
cout << "\nRecord not found in database...\n";
}
void college::rollnumberwise()
{
int rn1;
fs.open("college.txt", ios::in);
f = 0;
cout << "\nEnter student roll number to search : ";
cin >> rn1;
while (fs) {
fs >> stnm >> age >> std >> rn >> admdate;
if (fs.eof() == 0)
if (rn == rn1) {
f = 1;
cout << stnm << "\t" << age << "\t" << std << "\t" << rn << "\t" << admdate << endl;
}
}
fs.close();
if (f == 0)
cout << "\nRecord not found in database...\n";
}
void college::deletestudent()
{
int flag = 0;
fstream temp;
fs.open("college.txt", ios::in);
temp.open("temp.dat", ios::out);
cout << "Enter name to delete from database : ";
cin >> snm;
while (fs) {
fs >> stnm >> age >> std >> rn >> admdate;
if (fs.eof() == 0) {
if (strcmp(snm, stnm) != 0)
temp << stnm << "\t" << age << "\t" << std << "\t" << rn << "\t" << admdate << endl;
else
flag = 1;
}
}
fs.close();
temp.close();
remove("college.txt");
rename("temp.dat", "college.txt");
if (flag == 0)
cout << "\nRecord not found in database...\n";
else
cout << "Record deleted...\n";
}
int main()
{
college ct;
int ch;
while (1) {
cout << "\n\n\t\t*** Welcome To College Information System ***\n\n";
cout << "1. Add Student.\n2. Student List.\n3. Student Search using Name.\n";
cout << "4. Student search using Roll number.\n5. Delete Student Record.\n";
cout << "6. Exit from Database.\n\n";
cout << "Enter your choice : ";
cin >> ch;
switch (ch) {
case 1:
ct.putread();
break;
case 2:
ct.display();
break;
case 3:
ct.studentsearch();
break;
case 4:
ct.rollnumberwise();
break;
case 5:
ct.deletestudent();
break;
case 6:
return 0;
default:
cout << "Enter valid choice...\n";
}
}
}
| [
"[email protected]"
]
| |
b0d9195a6e9ad25235ee1b3c7a6d0426df729428 | a7d2b1676395353dd5d5a6a16ba4885d679c76cf | /GFG/Array/Longest Sub-Array with Sum K.cpp | 4917eb1bd16d6f0f939c4aecf385ec72f76698e9 | []
| no_license | Mithilesh0079/Coding_practice | db8143f1d395c5db273deb72faeaa765f206aa0f | 611296b03bf7464ee643d156aed37b9ae75f23fc | refs/heads/master | 2023-01-02T21:41:24.987267 | 2020-10-26T08:42:04 | 2020-10-26T08:42:04 | 282,682,392 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 593 | cpp | #include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n, k;
cin>>n>>k;
int arr[n];
for(int i=0; i<n; i++)
cin>>arr[i];
unordered_map<int, int >m;
int maxx=0, current=0;
for(int i=0; i<n ; i++)
{
current= current+arr[i];
if(current==k)
maxx= max(maxx, i+1);
if(m[current]==0)
m[current]= i+1;
if(m[current-k]!=0)
{
maxx= max(maxx, i+1-m[current-k]);
}
}
cout<<maxx<<endl;
}
return 0;
}
| [
"[email protected]"
]
| |
eb9bb1506e5726d3cd5dc4acc4996f2dccbe627d | 13a32b92b1ba8ffb07e810dcc8ccdf1b8b1671ab | /home--tommy--mypy/mypy/lib/python2.7/site-packages/pystan/stan/lib/stan_math/test/unit/math/prim/scal/fun/fmin_test.cpp | 54a7e916fd9e90d11ee604233ee8d08f235fbbae | [
"Unlicense",
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | tommybutler/mlearnpy2 | 8ec52bcd03208c9771d8d02ede8eaa91a95bda30 | 9e5d377d0242ac5eb1e82a357e6701095a8ca1ff | refs/heads/master | 2022-10-24T23:30:18.705329 | 2022-10-17T15:41:37 | 2022-10-17T15:41:37 | 118,529,175 | 0 | 2 | Unlicense | 2022-10-15T23:32:18 | 2018-01-22T23:27:10 | Python | UTF-8 | C++ | false | false | 1,054 | cpp | #include <stan/math/prim/scal.hpp>
#include <boost/math/special_functions/fpclassify.hpp>
#include <gtest/gtest.h>
#include <limits>
TEST(MathFunctions, fminFinite) {
using stan::math::fmin;
EXPECT_FLOAT_EQ(1.0, fmin(1, 2));
EXPECT_FLOAT_EQ(1.0, fmin(1.0, 2));
EXPECT_FLOAT_EQ(1.0, fmin(1, 2.0));
EXPECT_FLOAT_EQ(1.0, fmin(1.0, 2.0));
EXPECT_FLOAT_EQ(1.0, fmin(2, 1));
EXPECT_FLOAT_EQ(1.0, fmin(2, 1.0));
EXPECT_FLOAT_EQ(1.0, fmin(2.0, 1));
EXPECT_FLOAT_EQ(1.0, fmin(2.0, 1.0));
}
TEST(MathFunctions, fminNaN) {
using stan::math::fmin;
double nan = std::numeric_limits<double>::quiet_NaN();
EXPECT_FLOAT_EQ(1.0, fmin(1, nan));
EXPECT_FLOAT_EQ(1.0, fmin(nan, 1));
EXPECT_PRED1(boost::math::isnan<double>,
stan::math::fmin(nan, nan));
}
TEST(MathFunctions, fminInf) {
using stan::math::fmin;
double inf = std::numeric_limits<double>::infinity();
EXPECT_FLOAT_EQ(1, fmin(inf, 1));
EXPECT_FLOAT_EQ(1, fmin(1, inf));
EXPECT_FLOAT_EQ(-inf, fmin(inf, -inf));
EXPECT_FLOAT_EQ(-inf, fmin(-inf, inf));
}
| [
"[email protected]"
]
| |
bbdb81fae33dfd43e3f827ad43b42c6082902ff2 | 09e3925e225e2d3ea40245d48e8588dcf7ae3c07 | /RegexMatching(DP).cpp | 14e66507cca480d73c726b2de82e9873eff29d26 | []
| no_license | frankenstein32/Dynamic-Programming | f5e12e176184ff4c5efcdeb534ae6285bc3216c7 | b81a2cdd65d19bd27ce9815d8b0bef8a688b9357 | refs/heads/master | 2021-10-10T12:03:00.238303 | 2021-10-01T09:08:19 | 2021-10-01T09:08:19 | 211,931,412 | 0 | 2 | null | 2020-10-06T13:34:35 | 2019-09-30T18:47:56 | Java | UTF-8 | C++ | false | false | 3,547 | cpp | #include "algorithm"
#include "iostream"
#include "numeric"
#include "iomanip"
#include "cstring"
#include "math.h"
#include "bitset"
#include "string"
#include "vector"
#include "ctime"
#include "queue"
#include "stack"
#include "map"
#include "set"
#include "ext/pb_ds/assoc_container.hpp" // Common file
#include "ext/pb_ds/tree_policy.hpp" // Including tree_order_statistics_node_update
#include "ext/pb_ds/detail/standard_policies.hpp"
using namespace std;
using namespace __gnu_pbds;
#define f first
#define lgn 25
#define endl '\n'
#define sc second
#define pb push_back
#define N (int)2e3+5
#define PI acos(-1.0)
#define int long long
#define vi vector<int>
#define mod 1000000007
#define ld long double
#define eb emplace_back
#define mii map<int,int>
#define vpii vector<pii>
#define pii pair<int,int>
#define pq priority_queue
#define BLOCK (int)sqrt(N)
#define test(x) while(x--)
#define all(x) begin(x),end(x)
#define allr(x) x.rbegin(),x.rend()
#define fo(i,a,n) for(int i=a;i<n;i++)
#define rfo(i,n,a) for(int i=n;i>=a;i--)
#define FAST ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define time() cerr << "Time : " << (double)clock() / (double)CLOCKS_PER_SEC << "s\n"
#define bug(...) __f (#__VA_ARGS__, __VA_ARGS__)
typedef tree< int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update >
OS ;
template <typename Arg1>
void __f (const char* name, Arg1&& arg1) { cout << name << " : " << arg1 << endl; }
template <typename Arg1, typename... Args>
void __f (const char* names, Arg1&& arg1, Args&&... args)
{
const char* comma = strchr (names + 1, ',');
cout.write (names, comma - names) << " : " << arg1 << " | "; __f (comma + 1, args...);
}
const int inf = 0x3f3f3f3f;
const int INF = 0x3f3f3f3f3f3f3f3f;
int n,m,k,q;
string s , t;
void go()
{
cin >> s >> t;
n = (int)s.size();
m = (int)t.size();
s = " " + s;
t = " " + t;
vi dp(m + 1 , 0);
dp[0] = 1; // both empty string
for( int j = 1; j <= m; j++) // filling for text = empty string with pattern
{
//if( t[j] == '.' ) dp[j] = 1; // This is wrong -beacause '.' matches a character but we only have one character which we have matched with 0th
if( t[j] == '*' and ( j - 2) >= 0 )
{
dp[j] = dp[j-2];
}
}
for( int i = 1; i <= n; i++)
{
vi ndp( m+ 1 , 0); // since dp state only depend on previous row and current row
for( int j = 1; j <= m; j++)
{
if( s[i] == t[j] or t[j] == '.' ) ndp[j] = dp[j-1];
else
{
if( t[j] == '*' and j - 2 >= 0 )
{
bool xx = ( s[i] == t[j-1] or t[j-1] == '.' ); // checking if j-1 th character matches ith character
ndp[j] = ndp[j-2] | ( xx and dp[j] ); // dp[j] -> denotes previous row and if xx = 1 , then we have to
// also check whether till jth index both string matches or not
// ndp[j-2] -> denotes that we are not considering any occurences of character before '*'
}
}
}
swap( dp , ndp ); // preserving current row for next row
}
cout << dp[m] << endl;
}
int32_t main()
{
FAST;
int t=1;
// cin>>t;
test(t) go();
}
| [
"[email protected]"
]
| |
3a62718ec4b3c5632b56125b87cf87edadfbfe8b | fb57197aa1c76258c80ce033116f79ec6d61e8a2 | /non_Client_server/Vector.cpp | 88aee6069433b57e707928b310432aafe20d9c2d | []
| no_license | dredddddd/Cluster_analysys | 68966159b23b9885ddfc154e5fb1715ec73eb80b | 3b96c713e9a898cebe8349344b9df859c3896be5 | refs/heads/main | 2023-08-13T23:23:14.960871 | 2021-09-30T14:08:34 | 2021-09-30T14:08:34 | 372,872,312 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,950 | cpp | #include "Vector.h"
Vector::Vector()
{
first_coordinate = second_coordinate = function_value = vector_id = 0;
}
Vector::Vector(double x, double y)
{
first_coordinate = x;
second_coordinate = y;
function_value = (first_coordinate * first_coordinate - second_coordinate * second_coordinate) / 10 + 5;
// function_value = sin(first_coordinate + second_coordinate) + 2;
vector_id = 0;
}
Vector::Vector(const Vector& v)
{
first_coordinate = v.first_coordinate;
second_coordinate = v.second_coordinate;
function_value = v.function_value;
vector_id = v.vector_id;
}
Vector operator+(const Vector& v, const Vector& u)
{
return Vector(v.first_coordinate + u.first_coordinate, v.second_coordinate + u.second_coordinate);
}
Vector operator-(const Vector& v, const Vector& u)
{
return Vector(v.first_coordinate - u.first_coordinate, v.second_coordinate - u.second_coordinate);
}
Vector operator*(double lambda, const Vector& v)
{
return Vector(lambda * v.first_coordinate, lambda * v.second_coordinate);
}
Vector operator*(const Vector& v, double lambda)
{
return Vector(lambda * v.first_coordinate, lambda * v.second_coordinate);
}
const Vector& Vector::operator=(const Vector& v)
{
first_coordinate = v.first_coordinate;
second_coordinate = v.second_coordinate;
function_value = v.function_value;
vector_id = v.vector_id;
return *this;
}
double Vector::length() { return sqrt(first_coordinate * first_coordinate + second_coordinate * second_coordinate); }
double Vector::get_first_coordinate() { return first_coordinate; }
double Vector::get_second_coordinate() { return second_coordinate; }
double Vector::get_function_value() { return function_value; }
int Vector::get_vector_id() { return vector_id; }
void Vector::assign_vector_id(int id) { vector_id = id; }
void Vector::print_vector(ofstream& file) { file << first_coordinate << " " << second_coordinate << endl; } | [
"[email protected]"
]
| |
3a836080ef9df171c919b52f2945a44a8631334f | aa276a75321aa6fc10ff55e3c24e48326efdb84a | /IgnitionKey.h | 4287d926f189db40de77c7a20d5ffcafc829efe4 | []
| no_license | tteskac/Truck_Simulator_Controller | fc31be7d6f46c789ea96db20235d559097b9776b | e18ad14dd1910cc4c0421508720dbb9336f3edb9 | refs/heads/master | 2020-03-29T05:37:25.078151 | 2017-06-17T23:55:44 | 2017-06-17T23:55:44 | 94,655,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | h |
#ifndef IgnitionKey_h
#define IgnitionKey_h
#include "Arduino.h"
class IgnitionKey
{
//CONSTANTS
const bool PRESS = 1;
const bool RELEASE = 0;
public:
void setup(
int ignitionKeyPin1,
int ignitionKeyPin2,
int ignitionKeyPin3,
int joyButton);
void loop();
private:
int _ignitionKeyPin1, _ignitionKeyPin2, _ignitionKeyPin3; //ignitionKey pins
int _joyButton; // the number of the joystick button for on/off
int _ignitionKeyState; // the current reading from the input pins
int _lastIgnitionKeyState = 0; // the previous reading from the input pin
long _lastDebounceTime = 0; // the last time the output pin was toggled
long _debounceDelay = 50;
bool _ignitionOn = false;
void btnEvent(int btn, int state);
};
#endif
| [
"[email protected]"
]
| |
7c6a4dbbd076b32fcb8c49e5c235760c44e0fa70 | 80bad4ebcf6ddb60feb275d89751f670b1d32f6e | /rgb_controller/rgb_controller.ino | 08d9a374dedd0485da8ea3a730a0ffc61785451c | []
| no_license | andrewpmaus/lab1 | 9903c69b63ed2fe57d5608d68d9b07e33a6956a7 | dab7347dffc0487ed97458f49710e46074faa977 | refs/heads/master | 2021-05-11T19:17:47.348554 | 2018-02-01T04:35:20 | 2018-02-01T04:35:20 | 117,863,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,416 | ino | /*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
//paste look-up table here from References in ES432 folder
#define LED_R 6
#define LED_G 5
#define LED_B 3
#define R_IN A0
#define G_IN A1
#define B_IN A2
int redVal, bluVal, grnVal;
// the setup routine runs once when you press reset:
// Gamma correction for biology
const uint8_t PROGMEM gamma8[] = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2,
2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5,
5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10,
10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16,
17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 24, 24, 25,
25, 26, 27, 27, 28, 29, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36,
37, 38, 39, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 50,
51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68,
69, 70, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89,
90, 92, 93, 95, 96, 98, 99,101,102,104,105,107,109,110,112,114,
115,117,119,120,122,124,126,127,129,131,133,135,137,138,140,142,
144,146,148,150,152,154,156,158,160,162,164,167,169,171,173,175,
177,180,182,184,186,189,191,193,196,198,200,203,205,208,210,213,
215,218,220,223,225,228,231,233,236,239,241,244,247,249,252,255 };
void setup() {
Serial.begin(9600); //Open Serial Port
}
// the loop routine runs over and over again forever:
void loop() {
/* Read values from the potentiometers */
redVal = analogRead(R_IN)/4; //Divide by 4 in order
grnVal = analogRead(G_IN)/4;
bluVal = analogRead(B_IN)/4;
/* Print RGB Values to serial port */
// Format is: R,G,B
Serial.print(redVal);
Serial.print(",");
Serial.print(grnVal);
Serial.print(",");
Serial.println(bluVal);
/* Gamma-correct the read values */
redVal = pgm_read_byte(&gamma8[redVal]);
grnVal = pgm_read_byte(&gamma8[grnVal]);
bluVal = pgm_read_byte(&gamma8[bluVal]);
/* Change LED inputs to read values from potentiometers */
analogWrite(LED_R, redVal); // turn the LED on (HIGH is the voltage level) // wait for a second
analogWrite(LED_G, grnVal);
analogWrite(LED_B, bluVal);
}
| [
"[email protected]"
]
| |
75b59a330ce756d95c7a99242ceb40da6252c3ee | 9b48da12e8d70fb3d633b988b9c7d63a954434bf | /ECC8.1/Server/kennel/服务端/scasvapi(8.1.3 web)/otherfunc.h | b11671a5b2a0f1760fcf0c1ee8978c96854b91f6 | []
| no_license | SiteView/ECC8.1.3 | 446e222e33f37f0bb6b67a9799e1353db6308095 | 7d7d8c7e7d7e7e03fa14f9f0e3ce5e04aacdb033 | refs/heads/master | 2021-01-01T18:07:05.104362 | 2012-08-30T08:58:28 | 2012-08-30T08:58:28 | 4,735,167 | 1 | 3 | null | null | null | null | GB18030 | C++ | false | false | 5,020 | h |
#ifndef SITEVIEW_SCASVAPI_OTHERFUNC_H
#define SITEVIEW_SCASVAPI_OTHERFUNC_H
#include <string>
#include "svapi.h"
#include "svdbapi.h"
void SetNodeNumNetworkNum(string nodenum, string networknum);
bool CheckLicenseIsOk();
bool GetForestDataToCheckPoint(string nodenum, string networknum);
bool QueryRecordsByTime(ForestList & fmap, const NodeData & inwhat, string & estr);
bool QueryRecordsByCount(ForestList & fmap, const NodeData & inwhat, string & estr);
bool QueryAlertLog(ForestList & fmap, const NodeData & inwhat, string & estr);
bool QuerySVSE(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool QueryGroup(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool QueryEntity(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool QueryMonitor(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetTreeData2(ForestList & flist, const NodeData & inwhat, string & estr);
bool FilterForestData(ForestList & flist, const NodeData & inwhat, string & estr);
bool SetChildSumForestData(ForestList & flist, const NodeData & inwhat, string & estr);
bool SetBeyondLicenseForestData(ForestList & flist);
bool TryToLogin(ForestMap & fmap, const NodeData & inwhat, string & estr, bool & isTrial);
bool encrypt(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool decrypt(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetDynamicData(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool RefreshMonitors(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetLatestRefresh(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetRefreshed(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool TryDecryptValue(ForestMap & fmap, string section, string type, string & estr, bool isDecrypt);
bool CanAddMorePoint(const string & entityid, string & estr, string action="", int monitorAddNum=1);
bool CheckMonitorBelongToETpl(string monitorid, string entityid, string & estr, string sv_monitortype="");
bool TestEntity(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetEntityDynamicData(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool CheckNetWork(string sv_devicetype);
bool SetSv_intpos(string id, OBJECT obj);
bool GetMonitorConditon(string id, OBJECT objMonitor, string & monitorName , string & monitorType , string & monitorFreq, string & errorCon, string & warnCon, string & okCon );
bool QueryReportData(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool QueryAllMonitorInfo(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool QueryInfo(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool AdvaceAddManyMonitor(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool AddManyMonitor(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool AppendOperateLog(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool BuildMonitor(OBJECT obj, string pid, string value, string & estr);
bool SmsTest(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool EmailTest(ForestMap & fmap, const NodeData & inwhat, string & estr);
int DirDllName(NodeData & ndata);
bool SmsTestByDll(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool DeleteRecords(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool WriteOrDelIniFileData(int isDel, ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetAllView(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool AddView(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool DeleteView(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool DeleteViewItem(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool AddViewItem(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool SetValueInManyMonitor(ForestMap & fmap, const NodeData & inwhat, string & estr);
bool GetViewData(ForestList & flist, const NodeData & inwhat, string & estr);
//----------------------------------------------------------
// 下列函数用于url监测器的步数设置
//----------------------------------------------------------
bool StepUrlSetup( ForestMap& fmap, const NodeData& inwhat, string& estr);
bool EditUrlStep( ForestMap& fmap, const NodeData& inwhat, string& estr);
bool AddUrlStep( ForestMap& fmap, const NodeData& inwhat, string& estr);
bool SaveUrlStep( ForestMap& fmap, const NodeData& inwhat, string& estr);
bool DelUrlStep( ForestMap& fmap, const NodeData& inwhat, string& estr);
//----------------------------------------------------------
// 增加接口:查询指定序列的报警日志数据,不限制记录条数
// 增加人:邹晓
// 增加时间:2009.06.04
//----------------------------------------------------------
bool QueryMassAlertLog(ForestList & fmap, const NodeData & inwhat, string & estr);
#endif
| [
"[email protected]"
]
| |
a93b7995214234046ff38f07e6066299d7ccc08f | 926c748e05d491c020656f5d23fff40238f2ec2d | /bifurcationdialog.cpp | 4fb671b5db127fa555ce926b708a0f953357fe24 | []
| no_license | digitallumens/dlterm | a4be421a22fbf59ef801c60fcc0f8dbbe34b8262 | bbccf1acbcc4fae85f5ea0d0fdfa334e5d14e527 | refs/heads/master | 2021-01-10T12:06:22.910897 | 2015-12-10T20:56:39 | 2015-12-10T20:56:39 | 43,558,098 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,496 | cpp | #include "bifurcationdialog.h"
#include "dllib.h"
#include "ui_bifurcationdialog.h"
BifurcationDialog::BifurcationDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::BifurcationDialog)
{
ui->setupUi(this);
}
BifurcationDialog::~BifurcationDialog()
{
delete ui;
}
void BifurcationDialog::setNetworkList(QStringList & strList)
{
ui->listWidget->clear();
QString s, itemStr;
QStringList splitStrList;
unsigned long long panid;
unsigned int panid_group, panid_freq;
unsigned short shortpanid;
bool ok;
foreach(s, strList) {
splitStrList = s.split(QChar(','));
panid = splitStrList[0].toULongLong(&ok, 16);
if (ok) {
shortpanid = splitStrList[1].toUInt(&ok, 16);
if (ok) {
if (panid == LR_FACTORY_DEFAULT_NETWORK_PANID) {
itemStr = tr("Factory Default Network [%1]")
.arg(shortpanid, 4, 16, QLatin1Char('0'));
} else {
panid_group = LR_PANID_CHANNEL_GROUP(panid);
if (!LR_CHANNEL_GROUP_ISVALID(panid_group))
DLDebug(1, DL_FUNC_INFO) << "Bug: Illegal panid_group from panid:" << panid;
panid_freq = LR_PANID_CHANNEL_FREQ(panid);
if (!LR_CHANNEL_FREQ_ISVALID(panid_freq))
DLDebug(1, DL_FUNC_INFO) << "Bug: Illegal panid_freq from panid:" << panid;
itemStr = QString("%1%2 [%3]").arg(QChar(panid_group+'A'-1))
.arg(panid_freq, 2, 10, QLatin1Char('0'))
.arg(shortpanid, 4, 16, QLatin1Char('0'));
}
QListWidgetItem *item = new QListWidgetItem(itemStr, ui->listWidget);
item->setData(Qt::UserRole, s); // save the originating string
ui->listWidget->addItem(item);
} else {
DLDebug(1, DL_FUNC_INFO) << "Bug: Failed to convert str to short panid:" << s[1];
}
} else {
DLDebug(1, DL_FUNC_INFO) << "Bug: Failed to convert str to panid:" << s[0];
}
}
}
QString BifurcationDialog::getNetworkStr()
{
QString s = ui->listWidget->currentItem()->data(Qt::UserRole).toString();
return s;
}
void BifurcationDialog::on_join_pushButton_pressed()
{
accept();
}
void BifurcationDialog::on_cancel_pushButton_pressed()
{
reject();
}
| [
"[email protected]"
]
| |
a84b8163237794a8dd1b54b1b4a48c155bf2813b | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /CodesNew/3965.cpp | 0d6c8a040a450bad18f802e9240af3deaf6074fe | []
| no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 600 | cpp | #include <bits/stdc++.h>
using namespace std;
#define clr(i, j) memset(i, j, sizeof(i))
#define pb push_back
#define mp make_pair
typedef long long ll;
int main()
{
vector<ll>s; int n,k;cin>>n>>k;int arr[20000];
for(int i=0;i<n;i++){
ll a,b;cin>>a;
s.push_back(a);
if(i){s[i]+=s[i-1];}
}ll sum=0;
for(int i=0;i<k;i++){
ll l;
cin>>l;sum+=l;
int d=upper_bound(s.begin(),s.end(),sum)-s.begin()-1;
if(d==n-1){cout<<n;sum=0;}else{cout<<n-(d+1);}
cout<<endl;
}
}
| [
"[email protected]"
]
| |
6dbeee99c1ad922e6bdd50c1188c1f1afc866ec7 | 058c27aedb0522f80a42ef2de8b58ba1380380ad | /cpp/src/args.cc | 0d1f07d44d87aeb6a5274363539bb84c0276bcde | [
"MIT"
]
| permissive | Shelly7942/hanja-sisg | a9c5e4ea3ec3f2235aef9c4f1736df98cf3de506 | 281fbb803daaf7209bc4d10b4c1628511081b67e | refs/heads/master | 2021-02-07T22:42:13.744598 | 2019-08-28T02:09:06 | 2019-08-28T02:09:06 | 244,084,269 | 0 | 1 | MIT | 2020-03-01T04:07:57 | 2020-03-01T04:07:56 | null | UTF-8 | C++ | false | false | 12,751 | cc | /**
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "args.h"
#include <stdlib.h>
#include <iostream>
namespace fasttext {
Args::Args() {
lr = 0.05;
dim = 100;
ws = 5;
epoch = 5;
minCount = 5;
minCountLabel = 0;
neg = 5;
wordNgrams = 1;
loss = loss_name::ns;
model = model_name::sg;
bucket = 10000000;
minn = 1;
maxn = 4;
minhn = 1;
maxhn = 3;
minjn = 3;
maxjn = 5;
emptyjschar = "e";
hanjaBracket = "()";
thread = 12;
lrUpdateRate = 100;
t = 1e-4;
label = "__label__";
verbose = 2;
pretrainedVectors = "";
loadTarget = load_target::words;
saveOutput = 0;
qout = false;
retrain = false;
qnorm = false;
cutoff = 0;
dsub = 2;
}
std::string Args::loadTargetToString(load_target lt) {
switch (lt) {
case load_target::words:
return "words";
case load_target::ngrams:
return "ngrams";
case load_target::both:
return "both";
}
return "Unknown load target!";
}
std::string Args::lossToString(loss_name ln) {
switch (ln) {
case loss_name::hs:
return "hs";
case loss_name::ns:
return "ns";
case loss_name::softmax:
return "softmax";
}
return "Unknown loss!"; // should never happen
}
void Args::parseArgs(const std::vector<std::string>& args) {
std::string command(args[1]);
if (command == "supervised") {
model = model_name::sup;
loss = loss_name::softmax;
minCount = 1;
minn = 0;
minjn = 0;
minhn = 0;
maxn = 0;
maxjn = 0;
maxhn = 0;
lr = 0.1;
} else if (command == "cbow") {
model = model_name::cbow;
}
int ai = 2;
while (ai < args.size()) {
if (args[ai][0] != '-') {
std::cerr << "Provided argument without a dash! Usage:" << std::endl;
printHelp();
exit(EXIT_FAILURE);
}
if (args[ai] == "-h") {
std::cerr << "Here is the help! Usage:" << std::endl;
printHelp();
exit(EXIT_FAILURE);
} else if (args[ai] == "-input") {
input = std::string(args[ai + 1]);
} else if (args[ai] == "-test") {
test = std::string(args[ai + 1]);
} else if (args[ai] == "-output") {
output = std::string(args[ai + 1]);
} else if (args[ai] == "-emptyjschar") {
emptyjschar = std::string(args[ai + 1]);
} else if (args[ai] == "-hanjaBracket") {
hanjaBracket = std::string(args[ai + 1]);
} else if (args[ai] == "-lr") {
lr = std::stof(args[ai + 1]);
} else if (args[ai] == "-lrUpdateRate") {
lrUpdateRate = std::stoi(args[ai + 1]);
} else if (args[ai] == "-dim") {
dim = std::stoi(args[ai + 1]);
} else if (args[ai] == "-ws") {
ws = std::stoi(args[ai + 1]);
} else if (args[ai] == "-epoch") {
epoch = std::stoi(args[ai + 1]);
} else if (args[ai] == "-minCount") {
minCount = std::stoi(args[ai + 1]);
} else if (args[ai] == "-minCountLabel") {
minCountLabel = std::stoi(args[ai + 1]);
} else if (args[ai] == "-neg") {
neg = std::stoi(args[ai + 1]);
} else if (args[ai] == "-wordNgrams") {
wordNgrams = std::stoi(args[ai + 1]);
} else if (args[ai] == "-loss") {
if (args[ai + 1] == "hs") {
loss = loss_name::hs;
} else if (args[ai + 1] == "ns") {
loss = loss_name::ns;
} else if (args[ai + 1] == "softmax") {
loss = loss_name::softmax;
} else {
std::cerr << "Unknown loss: " << args[ai + 1] << std::endl;
printHelp();
exit(EXIT_FAILURE);
}
} else if (args[ai] == "-bucket") {
bucket = std::stoi(args[ai + 1]);
} else if (args[ai] == "-minn") {
minn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-maxn") {
maxn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-minhn") {
minjn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-maxhn") {
maxjn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-minjn") {
minjn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-maxjn") {
maxjn = std::stoi(args[ai + 1]);
} else if (args[ai] == "-thread") {
thread = std::stoi(args[ai + 1]);
} else if (args[ai] == "-t") {
t = std::stof(args[ai + 1]);
} else if (args[ai] == "-label") {
label = std::string(args[ai + 1]);
} else if (args[ai] == "-verbose") {
verbose = std::stoi(args[ai + 1]);
} else if (args[ai] == "-pretrainedVectors") {
pretrainedVectors = std::string(args[ai + 1]);
} else if (args[ai] == "-loadTarget") {
if (args[ai + 1] == "words") {
loadTarget = load_target::words;
} else if (args[ai + 1] == "ngrams") {
loadTarget = load_target::ngrams;
} else if (args[ai + 1] == "both") {
loadTarget = load_target::both;
} else {
std::cerr << "Unknown load target: " << args[ai + 1] << std::endl;
printHelp();
exit(EXIT_FAILURE);
}
} else if (args[ai] == "-saveOutput") {
saveOutput = std::stoi(args[ai + 1]);
} else if (args[ai] == "-qnorm") {
qnorm = true; ai--;
} else if (args[ai] == "-retrain") {
retrain = true; ai--;
} else if (args[ai] == "-qout") {
qout = true; ai--;
} else if (args[ai] == "-cutoff") {
cutoff = std::stoi(args[ai + 1]);
} else if (args[ai] == "-dsub") {
dsub = std::stoi(args[ai + 1]);
} else {
std::cerr << "Unknown argument: " << args[ai] << std::endl;
printHelp();
exit(EXIT_FAILURE);
}
ai += 2;
}
if (input.empty() || output.empty()) {
std::cerr << "Empty input or output path." << std::endl;
printHelp();
exit(EXIT_FAILURE);
}
if (wordNgrams <= 1 && maxn == 0) {
bucket = 0;
}
}
void Args::printHelp() {
printBasicHelp();
printDictionaryHelp();
printTrainingHelp();
printQuantizationHelp();
}
void Args::printBasicHelp() {
std::cerr
<< "\nThe following arguments are mandatory:\n"
<< " -input training file path\n"
<< " -output output file path\n"
<< "\nThe following arguments are optional:\n"
<< " -verbose verbosity level [" << verbose << "]\n";
}
void Args::printDictionaryHelp() {
std::cerr
<< "\nThe following arguments for the dictionary are optional:\n"
<< " -minCount minimal number of word occurences [" << minCount << "]\n"
<< " -minCountLabel minimal number of label occurences [" << minCountLabel << "]\n"
<< " -wordNgrams max length of word ngram [" << wordNgrams << "]\n"
<< " -bucket number of buckets [" << bucket << "]\n"
<< " -minn min length of char ngram [" << minn << "]\n"
<< " -maxn max length of char ngram [" << maxn << "]\n"
<< " -minhn min length of hanja ngram [" << minhn << "]\n"
<< " -maxhn max length of hanja ngram [" << maxhn << "]\n"
<< " -minjn min length of jamo ngram [" << minjn << "]\n"
<< " -maxjn max length of jamo ngram [" << maxjn << "]\n"
<< " -emptyjschar empty jongsung symbol. (type:char) [" << emptyjschar << "]\n"
<< " -hanjaBracket hanja bracket characters. (type:string) [" << hanjaBracket << "]\n"
<< " -t sampling threshold [" << t << "]\n"
<< " -label labels prefix [" << label << "]\n";
}
void Args::printTrainingHelp() {
std::cerr
<< "\nThe following arguments for training are optional:\n"
<< " -lr learning rate [" << lr << "]\n"
<< " -lrUpdateRate change the rate of updates for the learning rate [" << lrUpdateRate << "]\n"
<< " -dim size of word vectors [" << dim << "]\n"
<< " -ws size of the context window [" << ws << "]\n"
<< " -epoch number of epochs [" << epoch << "]\n"
<< " -neg number of negatives sampled [" << neg << "]\n"
<< " -loss loss function {ns, hs, softmax} [" << lossToString(loss) << "]\n"
<< " -thread number of threads [" << thread << "]\n"
<< " -pretrainedVectors pretrained word vectors for supervised learning ["<< pretrainedVectors <<"]\n"
<< " -loadTarget target to load pretrained vectors {words, ngrams, both} ["<< loadTargetToString(loadTarget) <<"]\n"
<< " -saveOutput whether output params should be saved [" << saveOutput << "]\n";
}
void Args::printQuantizationHelp() {
std::cerr
<< "\nThe following arguments for quantization are optional:\n"
<< " -cutoff number of words and ngrams to retain [" << cutoff << "]\n"
<< " -retrain finetune embeddings if a cutoff is applied [" << retrain << "]\n"
<< " -qnorm quantizing the norm separately [" << qnorm << "]\n"
<< " -qout quantizing the classifier [" << qout << "]\n"
<< " -dsub size of each sub-vector [" << dsub << "]\n";
}
void Args::save(std::ostream& out) {
out.write((char*) &(dim), sizeof(int));
out.write((char*) &(ws), sizeof(int));
out.write((char*) &(epoch), sizeof(int));
out.write((char*) &(minCount), sizeof(int));
out.write((char*) &(neg), sizeof(int));
out.write((char*) &(wordNgrams), sizeof(int));
out.write((char*) &(loss), sizeof(loss_name));
out.write((char*) &(model), sizeof(model_name));
out.write((char*) &(bucket), sizeof(int));
out.write((char*) &(minn), sizeof(int));
out.write((char*) &(maxn), sizeof(int));
out.write((char*) &(emptyjschar), sizeof(char));
out.write((char*) &(minjn), sizeof(int));
out.write((char*) &(maxjn), sizeof(int));
out.write((char*) &(lrUpdateRate), sizeof(int));
out.write((char*) &(t), sizeof(double));
}
void Args::load(std::istream& in) {
in.read((char*) &(dim), sizeof(int));
in.read((char*) &(ws), sizeof(int));
in.read((char*) &(epoch), sizeof(int));
in.read((char*) &(minCount), sizeof(int));
in.read((char*) &(neg), sizeof(int));
in.read((char*) &(wordNgrams), sizeof(int));
in.read((char*) &(loss), sizeof(loss_name));
in.read((char*) &(model), sizeof(model_name));
in.read((char*) &(bucket), sizeof(int));
in.read((char*) &(minn), sizeof(int));
in.read((char*) &(maxn), sizeof(int));
in.read((char*) &(emptyjschar), sizeof(char));
in.read((char*) &(minjn), sizeof(int));
in.read((char*) &(maxjn), sizeof(int));
in.read((char*) &(lrUpdateRate), sizeof(int));
in.read((char*) &(t), sizeof(double));
}
}
| [
"[email protected]"
]
| |
04f6c73aeed3d54192453226b9db6de414d2aa65 | 5bcc53f4b188ad08bb82bb36ce9c6d0d63f8352d | /src/computing/computing_types/PAFTypesFactory.cxx | 02528ce540ee690ef526f89922e7842151db8c18 | []
| no_license | PROOF-Analysis-Framework/PROOF-Analysis-Framework | 78f03438ecc86e742c16233b3594665c48846c7e | 0553c0fcd9d5116127390e1a6a2ec5c64c11a79e | refs/heads/master | 2021-01-17T13:23:35.728874 | 2019-04-01T15:56:09 | 2019-04-01T15:56:09 | 29,705,505 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 2,462 | cxx | /**
@brief Factory method pattern to create PAF types from TLeafs.
@file PAFTypesFactory.cxx
@class PAFTypesFactory
@author I. Gonzalez Caballero, J. Delgado Fernandez
@version 1.0
@date 2014-06-17
*/
#include "PAFTypesFactory.h"
#include "PAFPrimitiveType.h"
#include "PAFArrayPrimitiveType.h"
#include "PAFTObjectType.h"
#include "PAFElementType.h"
#include "PAFElementVectorType.h"
#include "PAF.h"
#include "TLeafB.h"
#include "TLeafC.h"
#include "TLeafD.h"
#include "TLeafElement.h"
#include "TLeafF.h"
#include "TLeafI.h"
#include "TLeafL.h"
#include "TLeafO.h"
#include "TLeafObject.h"
#include "TLeafS.h"
PAFIType* PAFTypesFactory::GetPAFType(TLeaf* leaf)
{
if(leaf == NULL)
{
return NULL;
}
else if (leaf->IsA() == TLeafB::Class())
{
return new PAFPrimitiveType<UChar_t>(leaf);
}
else if (leaf->IsA() == TLeafC::Class())
{
return new PAFPrimitiveType<Char_t>(leaf);
}
else if (leaf->IsA() == TLeafD::Class())
{
if (leaf->GetNdata() > 1)
{
return new PAFArrayPrimitiveType<Double_t>(leaf);
}
else
{
return new PAFPrimitiveType<Double_t>(leaf);
}
}
else if (leaf->IsA() == TLeafElement::Class())
{
TString tType(leaf->GetTypeName());
//TODO vector is the first conditional and nested should be all of this.
//TODO Other types are not controlled yet (char, uchar, short, ushort, uint, ulong).
if(tType.EqualTo("vector<double>"))
{
return new PAFElementVectorType<double>(leaf);
}
else if(tType.EqualTo("vector<float>"))
{
return new PAFElementVectorType<float>(leaf);
}
else if(tType.EqualTo("vector<int>"))
{
return new PAFElementVectorType<int>(leaf);
}
else if(tType.EqualTo("vector<long>"))
{
return new PAFElementVectorType<long>(leaf);
}
else if(tType.EqualTo("vector<bool>"))
{
return new PAFElementVectorType<bool>(leaf);
}
return new PAFElementType(leaf);
}
else if (leaf->IsA() == TLeafF::Class())
{
return new PAFPrimitiveType<Float_t>(leaf);
}
else if (leaf->IsA() == TLeafI::Class())
{
return new PAFPrimitiveType<Int_t>(leaf);
}
else if (leaf->IsA() == TLeafL::Class())
{
return new PAFPrimitiveType<Long_t>(leaf);
}
else if (leaf->IsA() == TLeafO::Class())
{
return new PAFPrimitiveType<Bool_t>(leaf);
}
else if (leaf->IsA() == TLeafObject::Class())
{
return new PAFTObjectType(leaf);
}
else if (leaf->IsA() == TLeafS::Class())
{
return new PAFPrimitiveType<Short_t>(leaf);
}
else
{
return NULL;
}
}
| [
"[email protected]"
]
| |
294e9d626044c198b459935dbed9c3158c02450e | 2d6a8a21cf01d13c552b82d043561c5c5eb09bbc | /students/bakanov_a/lab_04/src/utils.cpp | c9c5f7b78ff314788f997410f2cc8582f5eeace0 | []
| no_license | leti-fkti-1381/2013-1381-sem-4 | 1fd42b812ab3e34ff7e49915099111c32715a422 | b40e5985841b73f0661161e71911a590b8801fce | refs/heads/master | 2016-09-11T04:55:28.208734 | 2013-06-11T19:11:53 | 2013-06-11T19:11:53 | 8,007,891 | 0 | 2 | null | 2013-02-04T14:47:36 | 2013-02-04T13:39:58 | null | UTF-8 | C++ | false | false | 5,576 | cpp | #include "include/utils.h"
#include <iostream>
Edge::Edge(int v1, int v2, int w) {
vertex_1 = v1;
vertex_2 = v2;
weight = w;
}
Edge::Edge(const Edge& edge) {
vertex_1 = edge.vertex_1;
vertex_2 = edge.vertex_2;
weight = edge.weight;
}
std::string Edge::toString() const {
std::stringstream ss;
ss << numToChar(vertex_1) << " -- " << numToStr(weight) << " -- "
<< numToChar(vertex_2);
return ss.str();
}
bool Edge::operator< (const Edge& edge) const {
return weight < edge.weight;
}
void createEdgesVector(int** matrix, int mSize, std::vector<Edge>& v) {
// Проходимся по матрице
for (int i = 0; i < mSize; ++i) {
for (int j = i + 1; j < mSize; ++j) {
// Если вес ребра больше либо равен нулю, сохраняем это ребро.
if (matrix[i][j] >= 0) {
// Создаем ребро
Edge e (i, j, matrix[i][j]);
// Сохраняем его в векторе
v.push_back( e );
}
}
}
// Сортируем вектор
std::sort(v.begin(), v.end());
}
bool checkPathExisting(int** matrix, int mSize, int v1, int v2, int from = -1) {
// Первым делом смотрим прямой путь между вершинами
if (matrix[v1][v2])
return true;
// Если прямого пути нет, ищем обходной путь. Для этого последовательно
// перебираем вершины, с которыми имеет соединение v1.
bool pathExist = false;
for (int i = 0; i < mSize; ++i) {
// Пропускаем вершину откуда мы пришли
if (i == from)
continue;
// Иначе, если есть соединение вершины i с вершиной v1, рекурсивно исследуем
// этот путь.
if (matrix[v1][i]) {
pathExist = checkPathExisting( matrix, mSize, i, v2, v1 );
// Если этот путь оказался искомым, то возвращаем true, иначе продолжаем
// поиск.
if (pathExist)
return true;
}
}
return false;
}
void initRandomGraph(int**& matrix, size_t mSize, size_t nEdges, int maxWeight) {
// Выделяем память
matrix = new int* [mSize];
for (size_t i = 0; i < mSize; ++i)
matrix[i] = new int [mSize];
// Заполняем ее -1
for (size_t i = 0; i < mSize; ++i)
for (size_t j = 0; j < mSize; ++j)
matrix[i][j] = -1;
// Создаем вектор из всех возможных ребер.
std::vector<Edge> allEdges;
for (size_t i = 0; i < mSize; ++i) {
for (size_t j = i + 1; j < mSize; ++j) {
Edge e (i, j, 0);
allEdges.push_back( e );
}
}
// Выбираем из вектора nEdges случайных ребер.
for (size_t i = 0; i < nEdges; ++i) {
int index = rand() % allEdges.size();
Edge e = allEdges[index];
matrix[e.vertex_1][e.vertex_2] = rand() % maxWeight;
matrix[e.vertex_2][e.vertex_1] = matrix[e.vertex_1][e.vertex_2];
allEdges.erase(allEdges.begin() + index);
}
}
void printMatrix(int** matrix, size_t mSize) {
std::cout << "=== Matrix ===\n";
for (size_t i = 0; i < mSize; ++i) std::cout << "\t" << numToChar(i); std::cout << "\n";
for (size_t i = 0; i < mSize; ++i) std::cout << "\t---"; std::cout << "\n";
for (size_t i = 0; i < mSize; ++i) {
std::cout << numToChar(i) << "|\t";
for (size_t j = 0; j < mSize; ++j) {
if (matrix[i][j] < 0) std::cout << "X\t";
else std::cout << matrix[i][j] << "\t";
}
std::cout << std::endl;
}
std::cout << std::endl;
}
std::string solve (int** matrix, size_t mSize) {
// Создаем вектор граней.
std::vector<Edge> v;
createEdgesVector( matrix, mSize, v );
// Используем matrix для дальнейшей работы. Для этого забьем ее нулями.
for (size_t i = 0; i < mSize; ++i)
for (size_t j = 0; j < mSize; ++j)
matrix[i][j] = 0;
// Создадим вектор, куда будем складывать ребра остовного дерева.
// Как известно в остовном дереве имеется N - 1 ребер, где N - количество
// вершин графа. Это знание поможет нам определить момент остановки перебора
// ребер.
std::vector<Edge> spanningTree;
// Перебираем ребра
for (size_t i = 0; i < v.size() && spanningTree.size() < mSize - 1; ++i) {
// Берем очередное ребро.
Edge e = v[i];
// Проверяем, существует ли путь между вершинами ребра.
bool pathExist = checkPathExisting(matrix, mSize, e.vertex_1, e.vertex_2);
// Если пути нет, а значит добавления этого ребра в остовное дерево
// не повлечет за собой создание цикла, добавляем данное ребро
// в остовное дерево.
if (!pathExist) {
spanningTree.push_back( e );
matrix[e.vertex_1][e.vertex_2] = 1;
matrix[e.vertex_2][e.vertex_1] = 1;
}
}
// Создадим строку, перечисляющую ребра вошедшие в остовное дерево.
std::stringstream ss;
for (size_t i = 0; i < spanningTree.size(); ++i)
ss << spanningTree[i].toString() << std::endl;
return ss.str();
}
std::string numToStr (int n) {
std::stringstream ss;
ss << n;
return ss.str();
}
std::string numToChar (int n) {
char c = 'a';
c += n;
return std::string (1, c);
} | [
"[email protected]"
]
| |
1923b09787f7dae4794d9d48922528ef163e5526 | a7764174fb0351ea666faa9f3b5dfe304390a011 | /drv/Dynamic/Dynamic_BooleanParameter.ixx | 19d624d3759fab10aa56013883e272a5b44b51ee | []
| no_license | uel-dataexchange/Opencascade_uel | f7123943e9d8124f4fa67579e3cd3f85cfe52d91 | 06ec93d238d3e3ea2881ff44ba8c21cf870435cd | refs/heads/master | 2022-11-16T07:40:30.837854 | 2020-07-08T01:56:37 | 2020-07-08T01:56:37 | 276,290,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 792 | ixx | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#include <Dynamic_BooleanParameter.jxx>
#ifndef _Standard_Type_HeaderFile
#include <Standard_Type.hxx>
#endif
IMPLEMENT_STANDARD_TYPE(Dynamic_BooleanParameter)
IMPLEMENT_STANDARD_SUPERTYPE_ARRAY()
STANDARD_TYPE(Dynamic_Parameter),
STANDARD_TYPE(MMgt_TShared),
STANDARD_TYPE(Standard_Transient),
IMPLEMENT_STANDARD_SUPERTYPE_ARRAY_END()
IMPLEMENT_STANDARD_TYPE_END(Dynamic_BooleanParameter)
IMPLEMENT_DOWNCAST(Dynamic_BooleanParameter,Standard_Transient)
IMPLEMENT_STANDARD_RTTI(Dynamic_BooleanParameter)
| [
"[email protected]"
]
| |
2908843b333019de54163c0b5e992dfd28248852 | 15e4df20d16cddce804c0c9541da29a4d5e1b252 | /2.Firmware/STM32_HAL_version/Ctrl-FOC-Lite-fw/Ctrl/Sensor/Encoder/encoder_base.cpp | e32787ece9c38bfe9d9fa3b446df54c1689a1352 | []
| no_license | asdlei99/Ctrl-FOC-Lite | acaee52046abe4cc6535bac14d8ee15251cf865c | a57dd3b2c3262d97789361c05a2ef86ba6ff8d73 | refs/heads/main | 2023-08-17T23:49:53.793225 | 2022-02-05T07:28:08 | 2022-02-05T07:28:08 | 447,481,103 | 0 | 0 | null | 2022-01-13T05:56:35 | 2022-01-13T05:56:35 | null | UTF-8 | C++ | false | false | 1,674 | cpp | #include "encoder_base.h"
#include "Ctrl/Utils/foc_utils.h"
inline float abs(float _v)
{
return _v >= 0 ? _v : -_v;
}
void EncoderBase::update()
{
float val = GetSensorAngle();
angle_prev_ts = micros();
float d_angle = val - angle_prev;
// if overflow happened track it as full rotation
if (abs(d_angle) > (0.8f * _2PI))
full_rotations += (d_angle > 0) ? -1 : 1;
angle_prev = val;
}
/** get current angular velocity (rad/s) */
float EncoderBase::getVelocity()
{
// calculate sample time
float Ts = (float) (angle_prev_ts - vel_angle_prev_ts) * 1e-6f;
// quick fix for strange cases (micros overflow)
if (Ts <= 0) Ts = 1e-3f;
// velocity calculation
float vel = ((float) (full_rotations - vel_full_rotations) * _2PI + (angle_prev - vel_angle_prev)) / Ts;
// save variables for future pass
vel_angle_prev = angle_prev;
vel_full_rotations = full_rotations;
vel_angle_prev_ts = angle_prev_ts;
return vel;
}
void EncoderBase::InitVars()
{
// initialize all the internal variables of EncoderBase to ensure a "smooth" startup (without a 'jump' from zero)
GetSensorAngle(); // call once
delayMicroseconds(1);
vel_angle_prev = GetSensorAngle(); // call again
vel_angle_prev_ts = micros();
delay(1);
GetSensorAngle(); // call once
delayMicroseconds(1);
angle_prev = GetSensorAngle(); // call again
angle_prev_ts = micros();
}
float EncoderBase::getMechanicalAngle()
{
return angle_prev;
}
float EncoderBase::GetAngle()
{
return (float) full_rotations * _2PI + angle_prev;
}
int32_t EncoderBase::getFullRotations()
{
return full_rotations;
}
| [
"[email protected]"
]
| |
f8a7f9f1169c79e797290e82139410f63b1837c6 | 3558cd16bfa91ed43546663b64d0b6848a2a6533 | /unity/NextPlace/Library/Il2cppBuildCache/Android/arm64-v8a/il2cppOutput/Generics9.cpp | b0867aeb8d2d880b20676ff58b0510f843fa87e6 | [
"Apache-2.0"
]
| permissive | dkdltmais8/Next-Place | 564647ac87a7d39dc614f467e5e2923e2aef0ef3 | 8ddbfc97683ebf40443bbae9839de549dfbaf7da | refs/heads/master | 2023-09-03T11:05:20.634486 | 2021-11-23T08:34:32 | 2021-11-23T08:34:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,095,606 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.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 T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, 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, 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);
}
};
// System.Action`1<System.Object>
struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162;
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83;
// System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9;
// System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>
struct EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>
struct EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>
struct EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>
struct EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>
struct EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>
struct EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>
struct EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>
struct EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>
struct EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>
struct EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>
struct EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>
struct EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>
struct EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>
struct EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>
struct EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>
struct EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>
struct EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>
struct EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>
struct EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>
struct EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>
struct EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>
struct EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>
struct EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>
struct EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>
struct EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>
struct EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>
struct EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>
struct EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>
struct EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>
struct EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>
struct EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>
struct EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>
struct EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>
struct EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>
struct EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>
struct EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>
struct EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E;
// System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>
struct EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD;
// System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>
struct EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D;
// System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>
struct EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75;
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>
struct EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF;
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>
struct EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE;
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>
struct EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>
struct EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746;
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>
struct EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>
struct EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727;
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>
struct EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>
struct EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>
struct EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>
struct EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246;
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>
struct EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>
struct EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>
struct EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>
struct EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>
struct EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>
struct EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>
struct EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>
struct EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>
struct EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>
struct EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>
struct EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>
struct EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>
struct EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>
struct EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A;
// System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3;
// System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>
struct EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>
struct EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>
struct EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>
struct EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74;
// System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>
struct EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3;
// System.Array/EmptyInternalEnumerator`1<System.Boolean>
struct EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3;
// System.Array/EmptyInternalEnumerator`1<System.Byte>
struct EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598;
// System.Array/EmptyInternalEnumerator`1<System.ByteEnum>
struct EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5;
// System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>
struct EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0;
// System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>
struct EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>
struct EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878;
// System.Array/EmptyInternalEnumerator`1<System.Char>
struct EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>
struct EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>
struct EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>
struct EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E;
// System.Array/EmptyInternalEnumerator`1<System.DateTime>
struct EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656;
// System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>
struct EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51;
// System.Array/EmptyInternalEnumerator`1<System.Decimal>
struct EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E;
// System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>
struct EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861;
// System.Array/EmptyInternalEnumerator`1<System.Double>
struct EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6;
// System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>
struct EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A;
// System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>
struct EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>
struct EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>
struct EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>
struct EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102;
// System.Array/EmptyInternalEnumerator`1<System.Guid>
struct EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D;
// System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>
struct EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29;
// System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>
struct EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729;
// System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>
struct EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>
struct EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6;
// System.Array/EmptyInternalEnumerator`1<System.Int16>
struct EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD;
// System.Array/EmptyInternalEnumerator`1<System.Int32>
struct EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB;
// System.Array/EmptyInternalEnumerator`1<System.Int32Enum>
struct EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953;
// System.Array/EmptyInternalEnumerator`1<System.Int64>
struct EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB;
// System.Array/EmptyInternalEnumerator`1<System.IntPtr>
struct EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3;
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>
struct EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA;
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>
struct EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>
struct EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>
struct EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8;
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>
struct EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>
struct EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A;
// System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>
struct EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>
struct EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>
struct EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE;
// System.Array/EmptyInternalEnumerator`1<System.Object>
struct EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF;
// System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>
struct EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>
struct EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057;
// System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>
struct EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>
struct EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B;
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>
struct EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF;
// System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>
struct EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697;
// System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>
struct EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF;
// System.Array/EmptyInternalEnumerator`1<System.SByte>
struct EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C;
// System.Array/EmptyInternalEnumerator`1<System.Single>
struct EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>
struct EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>
struct EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>
struct EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>
struct EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>
struct EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>
struct EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>
struct EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>
struct EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>
struct EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>
struct EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>
struct EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>
struct EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB;
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>
struct EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>
struct EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>
struct EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>
struct EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>
struct EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>
struct EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>
struct EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>
struct EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1;
// System.Array/EmptyInternalEnumerator`1<System.TimeSpan>
struct EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6;
// System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>
struct EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>
struct EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65;
// System.Array/EmptyInternalEnumerator`1<System.UInt16>
struct EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1;
// System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>
struct EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A;
// System.Array/EmptyInternalEnumerator`1<System.UInt32>
struct EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA;
// System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>
struct EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003;
// System.Array/EmptyInternalEnumerator`1<System.UInt64>
struct EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>
struct EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>
struct EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A;
// System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>
struct EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A;
// System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>
struct EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B;
// System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>
struct EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8;
// System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>
struct EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>
struct EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>
struct EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>
struct EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>
struct EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>
struct EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>
struct EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>
struct EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>
struct EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>
struct EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>
struct EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>
struct EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>
struct EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>
struct EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>
struct EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>
struct EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>
struct EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>
struct EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>
struct EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB;
// System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>
struct EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>
struct EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A;
// System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>
struct EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B;
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>
struct EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4;
// System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>
struct EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0;
// System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>
struct EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A;
// System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>
struct EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36;
// System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>
struct EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47;
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>
struct EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998;
// System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>
struct EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>
struct EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5;
// System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>
struct EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774;
// System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>
struct EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90;
// System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>
struct EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>
struct EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92;
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>
struct EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54;
// System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>
struct EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38;
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>
struct EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173;
// System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>
struct EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A;
// System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>
struct EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>
struct EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174;
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>
struct EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>
struct EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>
struct EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1;
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>
struct EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>
struct EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>
struct EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>
struct EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>
struct EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>
struct EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>
struct EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>
struct EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>
struct EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A;
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>
struct EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA;
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>
struct EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96;
// System.Dynamic.Utils.CacheDict`2/Entry<System.Object,System.Object>
struct Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894;
// System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>
struct EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF;
// Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<System.Object,System.Object>
struct EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9;
// System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949;
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A;
// System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>
struct EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1;
// System.Linq.EnumerableSorter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150;
// System.Linq.EnumerableSorter`2<System.Object,System.Int32>
struct EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B;
// System.Linq.EnumerableSorter`2<System.Object,System.Object>
struct EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227;
// System.Linq.EnumerableSorter`2<System.Object,System.Single>
struct EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2;
// System.Linq.EnumerableSorter`2<System.Object,System.UInt32>
struct EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE;
// System.Linq.EnumerableSorter`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>
struct EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B;
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>
struct Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B;
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F;
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C;
// System.Func`2<System.Object,System.Object>
struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436;
// System.Func`2<System.Object,System.Single>
struct Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1;
// System.Func`2<System.Object,System.UInt32>
struct Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428;
// System.Func`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>
struct Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7;
// System.Collections.Generic.HashSet`1<Mapbox.Map.CanonicalTileId>
struct HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F;
// System.Collections.Generic.HashSet`1<System.Int32>
struct HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5;
// System.Collections.Generic.HashSet`1<System.Int32Enum>
struct HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC;
// System.Collections.Generic.HashSet`1<UnityEngine.XR.MeshId>
struct HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9;
// System.Collections.Generic.HashSet`1<System.Object>
struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B;
// System.Collections.Generic.IComparer`1<System.Int32>
struct IComparer_1_t150A86695C404E117B1B644BEAD79BA2344FB009;
// System.Collections.Generic.IComparer`1<System.Int64>
struct IComparer_1_t53BE91553BC192B91A81E9C37073C6603A9940B6;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_t20C0141C3FEEDAA44BFE8521FEEDDF47289CB40B;
// System.Collections.Generic.IComparer`1<System.Single>
struct IComparer_1_t24C3D061E8C47F8C8847EDBCD75042B43195DDAA;
// System.Collections.Generic.IComparer`1<System.UInt32>
struct IComparer_1_t624844BDED22588CB4107D171B29C26A4953C759;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerable_1_t22A35158F9E40077A7147A082319C0D1DFFBE2FD;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct IEnumerator_1_tF437149CAED78D4A68294D431DE692A78F7D67B3;
// System.Collections.Generic.IEqualityComparer`1<Mapbox.Map.CanonicalTileId>
struct IEqualityComparer_1_tDBEF0885C61409735C38588172461C426BC3156F;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t62010156673DE1460AB1D1CEBE5DCD48665E1A38;
// System.Collections.Generic.IEqualityComparer`1<System.Int32Enum>
struct IEqualityComparer_1_t7AA149E6B89D540CAA0C0E63998D86FFAF7B9FAC;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.XR.MeshId>
struct IEqualityComparer_1_tD42C85DFA5794F89A245323D9F0EB09D102C0681;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct IEqualityComparer_1_tD2AF20E67D8624289AE792EE7E48B879EEF614ED;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_t707982BD768B18C51D263C759F33BCDBDFA44901;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9;
// System.Collections.Generic.LinkedListNode`1<System.ValueTuple`2<System.Object,System.Object>>
struct LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10;
// System.Collections.Generic.LinkedListNode`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC;
// System.Collections.Generic.LinkedListNode`1<System.Object>
struct LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F;
// System.Collections.Generic.LinkedList`1<System.ValueTuple`2<System.Object,System.Object>>
struct LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B;
// System.Collections.Generic.LinkedList`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689;
// System.Collections.Generic.LinkedList`1<System.Object>
struct LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E;
// System.Collections.Generic.List`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>
struct List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469;
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>
struct List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5;
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>
struct List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132;
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>
struct List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB;
// System.Collections.Generic.List`1<UnityEngine.XR.ARFoundation.ARRaycastHit>
struct List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D;
// System.Collections.Generic.List`1<UnityEngine.XR.ARFoundation.ARTextureInfo>
struct List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A;
// System.Collections.Generic.List`1<Mapbox.Utils.BearingFilter>
struct List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5;
// System.Collections.Generic.List`1<System.Boolean>
struct List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3;
// System.Collections.Generic.List`1<System.Byte>
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF;
// System.Collections.Generic.List`1<System.Char>
struct List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE;
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5;
// System.Collections.Generic.List`1<System.DateTime>
struct List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC;
// System.Collections.Generic.List`1<System.DateTimeOffset>
struct List_1_t6A1295D69B538887EB0A62B321F30014A5691173;
// System.Collections.Generic.List`1<System.Decimal>
struct List_1_t137B540BF717527106254AA05BE36A51A068C8F5;
// System.Collections.Generic.List`1<System.Double>
struct List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC;
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>
struct List_1_tE870449A6BC21548542BC92F18B284004FA8668A;
// System.Collections.Generic.List`1<UnityEngine.XR.InputDevice>
struct List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F;
// System.Collections.Generic.List`1<System.Int16>
struct List_1_t985353431229C8151763A38589D03FBD829D85E5;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7;
// System.Collections.Generic.List`1<System.Int32Enum>
struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A;
// System.Collections.Generic.List`1<System.Int64>
struct List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4;
// System.Collections.Generic.List`1<Mapbox.Json.JsonPosition>
struct List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15;
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.LatLng>
struct List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9;
// System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>
struct List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem>
struct List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry>
struct List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A;
// System.Collections.Generic.List`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>
struct List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A;
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose>
struct List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248;
// System.Collections.Generic.Queue`1<System.Object>
struct Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64;
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>
struct ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>[]
struct EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C;
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>[]
struct NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D;
// Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>[]
struct Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25;
// Mapbox.VectorTile.Geometry.Point2d`1<System.Object>[]
struct Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454;
// Mapbox.VectorTile.Geometry.Point2d`1<System.Single>[]
struct Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D;
// System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>[]
struct SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8;
// System.Collections.Generic.HashSet`1/Slot<System.Int32>[]
struct SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975;
// System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>[]
struct SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62;
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>[]
struct SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC;
// System.Collections.Generic.HashSet`1/Slot<System.Object>[]
struct SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494;
// UnityEngine.XR.ARFoundation.ARRaycastHit[]
struct ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA;
// UnityEngine.XR.ARFoundation.ARTextureInfo[]
struct ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F;
// Mapbox.Utils.BearingFilter[]
struct BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF;
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Color32[]
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98;
// System.DateTime[]
struct DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1;
// System.DateTimeOffset[]
struct DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826;
// System.Decimal[]
struct DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Double[]
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB;
// TMPro.FontWeight[]
struct FontWeightU5BU5D_t0C9E436904E570F798885BC6F264C7AE6608B5C6;
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA;
// TMPro.HighlightState[]
struct HighlightStateU5BU5D_t8150DD4545DE751DD24E4106F1E66C41DFFE38EA;
// TMPro.HorizontalAlignmentOptions[]
struct HorizontalAlignmentOptionsU5BU5D_t57D37E3CA431B98ECF9444788AA9C047B990DDBB;
// System.Data.IndexField[]
struct IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A;
// UnityEngine.XR.InputDevice[]
struct InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE;
// System.Int16[]
struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD;
// System.Int64[]
struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// Mapbox.Json.JsonPosition[]
struct JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3;
// Mapbox.VectorTile.Geometry.LatLng[]
struct LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6;
// TMPro.MaterialReference[]
struct MaterialReferenceU5BU5D_t06D1C1249B8051EC092684920106F77B6FC203FD;
// UnityEngine.XR.MeshInfo[]
struct MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t4FD470872BB5C6A1794C9CB06830B557CA874CB3;
// UnityEngine.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_t3BA4C765F5D8A6C384A54624258E9A167CA8CD17;
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
// TMPro.TMP_ColorGradient[]
struct TMP_ColorGradientU5BU5D_t5271ED3FC5D741D05A220867865A1DA1EB04919A;
// UnityEngine.XR.ARSubsystems.TrackableId[]
struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871;
// TMPro.WordWrapState[]
struct WordWrapStateU5BU5D_t4B20066E10D8FF621FB20C05F21B22167C90F548;
// MS.Internal.Xml.Cache.XPathNode[]
struct XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986;
// SQLite4Unity3d.SQLiteConnection/IndexedColumn[]
struct IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440;
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF;
// UnityEngine.XR.ARFoundation.ARTrackable
struct ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3;
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Xml.Schema.BitSet
struct BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438;
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056;
// UnityEngine.Camera
struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3;
// System.Globalization.CompareInfo
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9;
// System.Data.DataColumn
struct DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638;
// System.Text.Decoder
struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// System.Text.Encoding
struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827;
// System.Exception
struct Exception_t;
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Xml.IDtdEntityInfo
struct IDtdEntityInfo_t6CD9881A9EC86BF67CCFD10F64F69D18316D6AFC;
// System.Collections.IEnumerator
struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t2A667D8777429024D8A3CB3D9AE29EA79FEA6176;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA;
// UnityEngine.Material
struct Material_t8927C00353A72755313F046D0CE85178AE8218EE;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// UnityEngine.Mesh
struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// System.PlatformNotSupportedException
struct PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Text.RegularExpressions.Regex
struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F;
// UnityEngine.RenderTexture
struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// UnityEngine.UI.Selectable
struct Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C;
// System.Xml.Schema.SequenceNode
struct SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1;
// UnityEngine.Sprite
struct Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9;
// System.IO.Stream
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB;
// System.String
struct String_t;
// TMPro.TMP_ColorGradient
struct TMP_ColorGradient_tC18C01CF1F597BD442D01A29724FE1B32497E461;
// TMPro.TMP_FontAsset
struct TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2;
// TMPro.TMP_SpriteAsset
struct TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714;
// TMPro.TMP_Text
struct TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262;
// TMPro.TMP_TextElement
struct TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832;
// TMPro.TMP_TextInfo
struct TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547;
// System.IO.TextReader
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F;
// UnityEngine.Texture
struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE;
// UnityEngine.Texture2D
struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF;
// UnityEngine.Transform
struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1;
// System.Type
struct Type_t;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68;
// UnityEngine.Events.UnityAction
struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099;
// System.Uri
struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// MS.Internal.Xml.Cache.XPathNodeInfoAtom
struct XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6;
// System.Xml.XmlQualifiedName
struct XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905;
// System.Xml.Schema.XmlSchemaObject
struct XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_t7A129D00E8823B50AEDD0C9B082C9CB3DF863876;
// UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tEDC2A88F61F179480CAA9443E6ADDA3F126B8AEA;
// System.Xml.XmlSqlBinaryReader/NamespaceDecl
struct NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633;
IL2CPP_EXTERN_C String_t* _stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC;
IL2CPP_EXTERN_C String_t* _stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53;
IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97;
IL2CPP_EXTERN_C String_t* _stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6;
IL2CPP_EXTERN_C String_t* _stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9;
IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m00F4D6F0F8D48A3ACFE2E30770602D1C2CC067DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m010AA69BBA106E956E9104EA2324B58D710F4572_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m03C30054ED8E2427E3DE1E1BCB87D07891AD4BF3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m046D09CBF73AC6782BF00CC43E2370163F408C02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m09326B38497E5977EDC8C59597C86BA2229288DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0A1A910F91FE790B1F5B6DA66C26DE5E71B9B3D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0E79550555B59D1214C323127746942EBDD40BF5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0E8D04BED63083E7040908E39A5CFFBFE07DCE5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0F6934BB688FCE890E53E9BD10D8A5A030162805_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m0F71CAE23EACB2F1DA49911C7A9E814A0009C3D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1399CC63AF57DC03D76353E6BA10A0A0A5015529_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1531F467C508E09CCABF78CFFB4747F71F98756B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m158CCBED743316971A29BACBBF9A4163448C8462_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m15B23A0EE708C715FD97E17364926F9EB74B222D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1610AA5E75FAC7063F39D40F402AAED93410874F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m16BEE8117DD254CD9A734C0F1257535D434E22D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m17B652CA58017003144AEB65754C48237BC93E87_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m187A27A5CE2ECDEB3C2EA757527FA0262317DA4E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m19CC61AD1F0E9729EB94F8EFFF48E1D024A61F19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m19D2F60514A044324B3A95B89422067CDAFF7572_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1B0B1A7B96E78AA57F632C220BB3118340254CD2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1B5F6754CBFBD96D22CFBFB6E6F06DB1F78BD42E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m1CB87ACC66A10F1B82F18B1D6406AAF6206FC382_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m207D526285FF061D9B3543489B06C34417142455_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2102B98CE42D70B926F9234CA8FB646ECBB7107C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2138FAEED624E705B2E2E878D560EF35DB401295_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m21E5339F3FF76C81720B1656EACDDF2BA5B7AA95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m21F09FA72B93DFAAC5F9C64686326E4F043C1793_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m227933A7E48F2DE5D2A64AE9D4DDDBF72B95AC85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m22FB24E83251FB5BC7FEFB678FEEA9AE7CF68CA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m23D6F9FB4C2BD6B9058DA9DA90E34571664EFC55_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m23E227EE463EA88CFEED9909F40549F74B7C99F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m279CBFF242EABF670CFA9428ABCD38EDBE87B623_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m29085FAB3F7CBBAFA21E1A6489F5E67748E4B83F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2A600503DF6FE591767DE857FD9B7E2687768879_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2AD96AA1F82EF56E2CFAEB299BC0DC9599A75042_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2B97802BD7B1A062033F0C1F42BAAEE25D0EB2E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2BD7C253A959912949DB08E957DECD902CBF6D1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2CE937DED33CAFCC1C256DE7DE2CDEC890501547_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2E8657A474D2F0C522A34D116A84EBA084E2963C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m2F7917773223A7BE198CE287BAD8DB8563EB6C26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m305E7DA793B71039111EB4F220E305361C33A32D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3067E50217CD249B4E702F11E31F4C36679D4A9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m317758C8C1460F0AD304A96B0FC6DD5C23947CEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m32C2FD5AAD074ED196296BBD4087E56A2F711D90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3428BF61A34B2ABF0A5D6751F3404F1ED57DF645_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m353D744B16BC707D0FDD6EB7680B74E6EDE97B6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3695A61080AD3233FAB9CBF9097297874D36C156_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3A9447ABB4533EB1996C3FF21026927F2ED41DD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3C4CB81398E896218CBAAEC9A11B01F1A143DB6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3D15FB4CB697367930FA7FD5BCCAF80003DBA07B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3D3A59BE056D3440ABD199EF42BAEE7287F92820_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3DF7E98B71A5AA1080FB2C4F0949BA8E74781463_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3E2BF147117B13FD3596EE8FD9297965878FC8C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m3E5FF981865922403A9FA2C9FF3BE13BD326F4CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m40609C6F8273F0C93C463693D55D0B98E289D134_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m418D1D24D091FACC9F7AB5E585A1D33D1CCDB6D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m41D2E0FA4CCB23970F912B5F73772364D68CECB4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4277D18F505E6D37478DD2F8C9D4CB3232437E9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m43093D0F3B301A23E1B6AD89B6828E109AB504D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m43F4F61B3901E0AAB1F3A30F063DF360A77512C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4521CA15CEC823AE10454E713235705E9172A74C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m454ADF81344930451B617E78C6532F94F9EE731D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m48183DDBDFC36C839023D72E5A6161D0B47DC725_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m48C3B52D65F51265D594D187FACF6713DDA2E9BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4B47BE5377E9DE0DD5BB1A7EC32A486773955E2A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4D0682A7B324ECC97CE88DCB5EE232F99659560F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4D216B8A8CA3699587EDED7C47E5AF3EE4EDB12B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4D3AB2A9ADBFB3CB068F0532A41447C9E450A75E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m4F3563646D16294940D73C81AE6F2D0808B6A492_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m51194060095EFD226F9CEB388093F78C67BB7E51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m511F1CE482D34906838FA51AB5AEC459036D983A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m519283B34C8D7DA292472F3F85E0347578BFBC04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m52BB7F03E97A4D7CCD5AF97E905BC8BAB9F0450D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m52D4DB812CD928CAE890C5011F6203D47CA3DB59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m53352B3E5414FEA399440821A5CA9A2DE58E387C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m53F3449F86E15809E006F3D4D03A03002D16CE8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m543397A11CF620B248C1B00EF09D5F696F8165DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m55BCD689047BD01B1AF4E487F4A8200B1FDC3E94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m567FA3625E36E8936B6E871A6C9652DB35DF2297_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m574AD8B79036DED13BEADB996A5B544C08E4B4F2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5A9BB2D38D3031E7BA4F311369AAE2AAA5D5139D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5C6DB5CAB935ECB6FC4BF47DED784A0A7FA3B65E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5D03722F029E1E19953FCCD1C6B24260EC6A32ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5E49C3A4C8D7241A815327D2AE546BC7638AD496_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5EBCBFBD8E2EDE750C4671ADF5995B0CC31F9282_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m5ED3E96A6BAF7DF5D75049322A3B604DB45DF592_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m60DB5A9E499E7E942D3B029555B081E555DCEAEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m61C243FA4E3F08EB16FB14DDDBBB7BAF5C986EA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6244DB2D123516D191BF5E60BB3E5BF6161EC918_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m62B4756A40B8D4AC787C04B210DE851B31C78CA9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6525B009076C32445814B7BB8DFB1BBEF28EE654_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m658797D4A0633811451F7E64B876282E8E3E5B7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m65EEFA48395680941B24798D1ECD1D1B46FEA9DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m66901240B51142EB6BDDFBE2F068F657395B2ACA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m68E9F752687178C5E4D395EBF9D800AD2713D870_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m698DCCF259076FD46ADBECC86ED3E2F8035E5288_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m69E42D7E04C660DE326769F714C6F7E5A50A5CA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6B6DA6DE7CC242DB42A3350FC0D1A6C0EF5DAF9E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6BD256B1AA4F5877D6068FD37C365D21D2ECED7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6F06EE181633FFBCE737588B0746F9426AEC9AB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m6FC581E2AEE6159AB79C755B6FF6B85C1EA3380B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m716400B5045C5A4CF74825AA1DB1E42289C35D13_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m72A32A1E11C5386CA74C8CF23679D4AF4BE189C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m73DA76779593ECD04DDBF3C26CC05CD24D7886B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m75E78E3F86371AB4F7057D45A69799EAEDC3E877_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m76A2C0457D77136D56D10C0A483B08EE3C92C4EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m77F637FC174F9D55F2B928E162E0DFE9C32156C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7890122F5BAC56C6D5CE95BA098B6FAABDE1EE94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m79A0567D685C09F9C167B435B011D75DBC8E7097_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7AC2BBF060E600CDF4C5BE08F6188FBFD0A6C4B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7B0505C6C40CF9CC43C3F0EB3C67FE7BF455F1BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7C4441C0F74FC5F288BB4B9406DC5088F0E2929E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7D7939D21E59C6272BC05862431022295475E518_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7DC2363AD70CAE2D811B7797956343A4983222FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7DF8B957E01D26BBE996409C03D4AA7C947D211E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7F90A8A273DE718B9F7C59CBF9D5E0C15A3B1DFF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m7F9AA0352AA85934A1B55036E3259BC9D3EB7712_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m812F364466676AAEBA811F236D27B7E27B68A6E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m814A6B482FEED3F966D80EA85FDEEA0C2F5CD17E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8175E434C807E7223293B6F44B2279FD10AB9E98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m836DB0CC996932DA0D46699DF5297F3269406310_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m839429F3A84B14971A804C3CDB3E171A6A9A485F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m85C12A244F264B2A4ECE3F21516F39675C97790A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m872351F16FE09B4FC0FD2295A3088CA6AFB3A639_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m889B413BA22490FF21B342DF4200B8A553E38751_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8A5BB541373B6BCF32AFC435078F21AE9F500D4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8C6044C3D8B4849AA50DCF14C60ECBE2DDB380C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8CF002144289E207C00EF3F0659D6A013FDB097F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8CF73252BC8AFE1C4ACF1545E730AF9F79388CA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8D1F40775F16F76AC6309AC2E21642A75D1CA3CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m8E75B5C48F7D9F4027CB1AA6B85F9508ED52E588_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m939CD4CDE6A6900D73FC006CBF9684C2028A6440_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m94C61C9F309B559A47526E041E242E2B03C1BC6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m96396F5BF828A14103C387A454DA72618DA27D8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m98C835F480ECA220FE3C56412DEF78E3A4CC882D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m98D7E73365918DD24D77ECBA985B8F345D4F0D5E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m995EA9B176D7546D9CE40BF148789B107BD3EDBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m99AA05DFFE4D90DD66E8A5C73813D6B82E4F48F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m99BD94D3FF26B24DF1FADFA1A95411BB420E116C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9A8C830B983A5F2048E17B70D942C63A8BFBA606_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9C214895E43ACE96B2A9328CF06B2E169FBEF7C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9D81932FB7FB6C07309FB991D2E60C090DF4CDEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9E811FC7F913D9A93D5D19173F02B456CE3B542C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9EA89F6D2D0D1E23B373644500B471F250F68190_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9F0428CAE178CE01EC760C7F497F10878A5CA5A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9F37B386C0EFE05CEDE77B2C83F46520DFC8AE4C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_m9F6AF61261F421ACA06624963E4755AE72F2D596_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA116A5C2981A96FBD57CB32C092930965620BACA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA1210FA2B5F24914A6465E02CC753860D8C28341_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA1CDCAEAE9FF61619169B85198933BE7A543478C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA1E263254A189E58ECE597C994ABDE956A9C180E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA2316DC31D5E2D8BE1A2A4AA9AE8A2A968D8A198_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA48A2D52EABDC523021AAA120986FFCFFE7549E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA5E8E5D318447890F7D3F39BE26C303D499B3BE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA713707AB237680A704DC6386818216F3190F13B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA795A93B9FC42021395276E56D8888DC12F2D7BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA7CE489A5C29F543686F36E6CF3F7B480397A355_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mA9EB37EF57DF1CC1242381A6C951A4ED9D6388F4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mABB04D58F0F03E7A943ECD09CB1699BCE60A3411_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mAC4738D33D4050FD089B649354A591D6582447E7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mAD06095CFF9962E8EA1590158F5EA0E1D03089A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mAD462A00D17B39BA5B83496662EFFF28AC93AED0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mADDE6EFCA7FB98E7E65C7545AB836A3882330EF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mAFE720289F0D8D03ECFE0A5E97B1228566AF199E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB065B8965F5012B8AE7694FF8CFF1EEA76361329_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB085FC8E0E23C3D9FE26F1F2EB0F125378393425_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB0A192577E2B0D1CEE94F5973E82C2AB501F553F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB0A6A208A96215B705ADFF9253F27DA2BB0C007F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB31B04849DC98D536E3C69C75AF11EB3D196A119_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB33BEB9F79FABBE14A9A18AC087F696A880E3E9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB3DEA259F4C96671F04207CBCF2BA37C9A33ADF1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB4E7C83EE4BDE34804842FDF0F42AEDDD2ED3313_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB6D83D530CA964174248C490972F5FA91E503263_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB6FD9082C6C06DEFEC8FEBCE9F0A5316EA98CE44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB811CBD76221EF3E00013CE23B9B6018EBAF71D2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mB9FC1B6BE89EE5A282A0DC85B4254760D11AFDE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBA171E7F10557D577EF141B132515B7ABFA3DA99_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBA9F184F7CC5A475585146C22208B84C421B3B8F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBBF016A8115BBBB50A75F5C3F15C72F4340AEF5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBD9F9A287DAD3D165B3503F7229FF86F4F151932_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBE90EC251A5327A3D0B1410D4DAED052BBE7D1C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBED9E21103B26EBC1B899EDB47DA72307ED971C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBF34531529790CC8FB5AFDFCB55A1320FB454EC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mBF7187FF16EE8F146E1FA163524756015E5B0C61_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC1217F4D21EB4987EC22B9A2AA2A0FD015FB1168_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC13B3ABE2A0985E2F9BFB1270897FBB096494505_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC2C3417650253E94B335B2709F434C635B350636_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC321183672C9AA4CEA092B03C5123F0081B83CE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC353154A105E3BA282F6FC1862258467BC0C975B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC41B89D5983EE9E0F502F818AB6290A3E59E9266_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC4CCF9CB76A4337890C6B5F637D58F14CD0C01D6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC572DB4169F982C27338AA73D3CB3F7ABA1A60DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC674090794F4D6C15481C261B0391632D8B099B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC70AF1ED0DE63DDEC8939CBACD803EBA629CB807_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mC7307A3AB1CF8B75CE4EBBCAD2FE1970EF15830B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mCADDA935579A17451ADE518C6AA88EAAE8CD3823_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mCD9D4774581F60FD3D363E1DBA4AFD8903B9C10B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mCEA39E9869D87FD3CE9D501A3B3C80083F003EA7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mCEA5E018009E0A19039C4758D6DAD1364E9B8C8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mCEB22E95E6D6B673B728FBDB27D5967DF03CBC69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD086EAD2CFC5A2AF982F5C36C0DD274CEE44AEA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD1D1B67FB75EB119879A92627E5A956CD124E50D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD1F33A6A53D987A186D28EBC1F9F1611B182BD24_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD288CEA7A5A6E9E3CE31D8FCBC51A8891FF78886_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD2ED021EEB7B6BE3E73EC40906942D417415E4B6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD369CED74139275D6D0F0EBABC6CF6BC7A9E9123_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD66092ABFDC4197AA6B82331B67E2736F7A69946_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD7D1058417209BBA2014B0E71BAE4D7A8F868C6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD80DE8C9D8B7F04F8CCB8341809C8C234F21681B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD885BAFD1DD4E7DE7391D5E19729EFD09571C29F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD9747B43717D06232EEE8271474271009DD1914D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mD9E276557E41CE1391C9A948C7280254F37CE842_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDA9294A8BB3F09C2547153BE23F9EB3EBA779425_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDAA56C564156372C005FB233E4BECEE2FFBFCDF9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDAC9F7FEBAE75AAA2374906DF54B4AB5CED6D9C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDAFFF9159679A5153896A6D737A32165A87BCCBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDB6152D515B2083F8CA6A3D3968D8AF463E4637D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDD4A10439121CB95EC454809C4EC9DF96F3978E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDD722803B7A7DD7F21BC25817DB783ABDC9BB0BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDDECC89455F2184C01BA152E4257C712E4D0408B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDE16A267662E780FBC82322414516BC3311C291B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mDFE96761364D5725516F81DFC411FCBBDDD373A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE13CC7E6CF0F965682D7C2AE2D206BC4C9FFF224_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE1ED85AA51186ED667BF5B6ABFB1D0715DAB6CE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE3224B4997ACC52C5D68EF3507392CC9DA77D5F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE3824CAE0346F144E7F9928D845B84D6064EEC8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE3E0028E2B2B8CD3433F709FF26A0513251E4420_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE41DFD0169573D3CD01851A05B7A8643B3CE2AA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE460F6B1410945A647FFE082EC5BA5E68E81ACCA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE46D573F775AE56CCC5953D2BD54EC9FBBEF2BDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE7A4B950E4DD91712A78BCD55C11ABAFED923AEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE94EDD8787391720D758337B0CA0F485ED4263BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mE9C115D2CF112FB2093DF191C1A17D55B0567CE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEA0B8474C0E01CAF24A00E4566F2C21E683F2EF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEA68B8D54CDC82965F6056F9237B3B394FA65652_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEB228B55810D2BA7A60E76B3356493CFE8EFA727_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEB35B8B3C9A96004F419570F557B2066F0216660_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mECBE89DA4C45777AF951923C1D43F85751A1D6DB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mEEDFF123392BA2A67806FC7B784C6A7667327295_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF0977453D673D91BE8C9B8CFC6048D0D229D44EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF11154D63DC8051B0721A8C12D76AE05718AEAA5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF3F3BB5A51033A395E0B363ED4C65EFD9CD1385C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF5784E2ED78CFB4F441154433426CEEB75AE78CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF60D4512684870B8A2A536D67F17915E97CFAD91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF62114A61E337A49C4A465FAA9B767660D0999A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF6946042B86BA13242864FC1D922783268889B7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF7CFB04ABBC45A05C0FF80E10D5883CD63EE04CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mF9EE1CBF8B6662781FF2F7B65AFFB4A0B5311C92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFB170608B75A081FFC8FD2F5975294E95FBE0CA6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFC3EBF1AD6A5D9B85B6067FD85D86F31C07E2BFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFD0BC2826CDFA9B6E31207DD6E7DD6F8F48F0A85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFD23E0E83F64F1D1BA634D1778096C2090A1BEC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFE5D875075E958A8CAAA0C796793501DF8AAA752_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFF4893C72428308523DDCD2EC51390DD8235FD9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFF5E1D8AA9EF5664DBF82F2CA9446F57F3EE37B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyInternalEnumerator_1_get_Current_mFF741FFB33BA8180B014BA95148D5EC7241F2E06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5C8A39AE5A262E2EE1388825F81E48A3902385DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m00AEF0D41C1EB6A913A8991F68CFC1D34ABA6DA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m071F286459C33D0B11CDDC07839CFC4CBE6270C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_RuntimeMethod_var;
struct Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ;
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com;
struct PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_com;
struct PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_pinvoke;
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ;
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ;
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ;
struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com;
struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke;
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D;
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C;
struct NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D;
struct Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25;
struct Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454;
struct Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D;
struct SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8;
struct SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975;
struct SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62;
struct SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC;
struct SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494;
struct ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA;
struct ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F;
struct BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF;
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2;
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451;
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98;
struct DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1;
struct DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826;
struct DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA;
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB;
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA;
struct IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A;
struct InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE;
struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD;
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD;
struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6;
struct JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3;
struct LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6;
struct MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B;
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0;
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
struct IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440;
struct SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* ___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_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___entries_1)); }
inline EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t46B921DAC8AFC9E5DD2806FD180E64A579F451A0* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___keys_7)); }
inline KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t54D5A22865BD8C8B7FE100CD11D8FDBA0A5DA6B9 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ___values_8)); }
inline ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * get_values_8() const { return ___values_8; }
inline ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t0F78ECFD49F45BF7DA0F7598BD7C63E6D9F1CF63 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.EmptyArray`1<System.Byte>
struct EmptyArray_1_tB2402F7A8151EE5618C0BCC8815C169E00142333 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tB2402F7A8151EE5618C0BCC8815C169E00142333_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tB2402F7A8151EE5618C0BCC8815C169E00142333_StaticFields, ___Value_0)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Value_0() const { return ___Value_0; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t8C9D46673F64ABE360DE6F02C2BA0A5566DC9FDC : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t8C9D46673F64ABE360DE6F02C2BA0A5566DC9FDC_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t8C9D46673F64ABE360DE6F02C2BA0A5566DC9FDC_StaticFields, ___Value_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Reflection.CustomAttributeNamedArgument>
struct EmptyArray_1_t929B62FB2BE425A28E9061DB488711798B3E7DE9 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t929B62FB2BE425A28E9061DB488711798B3E7DE9_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t929B62FB2BE425A28E9061DB488711798B3E7DE9_StaticFields, ___Value_0)); }
inline CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* get_Value_0() const { return ___Value_0; }
inline CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Reflection.CustomAttributeTypedArgument>
struct EmptyArray_1_t5C432F52782BD51992CB0284C4CC298BFC223635 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t5C432F52782BD51992CB0284C4CC298BFC223635_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t5C432F52782BD51992CB0284C4CC298BFC223635_StaticFields, ___Value_0)); }
inline CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* get_Value_0() const { return ___Value_0; }
inline CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Data.IndexField>
struct EmptyArray_1_t907EBCD9A035E2A649AC3A7BE4565AC1BECE04DB : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t907EBCD9A035E2A649AC3A7BE4565AC1BECE04DB_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t907EBCD9A035E2A649AC3A7BE4565AC1BECE04DB_StaticFields, ___Value_0)); }
inline IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A* get_Value_0() const { return ___Value_0; }
inline IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Reflection.ParameterModifier>
struct EmptyArray_1_t7FF24080930E4AD8DE852A0BE03367CD925FC4F9 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t7FF24080930E4AD8DE852A0BE03367CD925FC4F9_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t7FF24080930E4AD8DE852A0BE03367CD925FC4F9_StaticFields, ___Value_0)); }
inline ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* get_Value_0() const { return ___Value_0; }
inline ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct EmptyArray_1_tA26093340F34517171F73FCBBBD8E6E68DE5EEDB : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tA26093340F34517171F73FCBBBD8E6E68DE5EEDB_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tA26093340F34517171F73FCBBBD8E6E68DE5EEDB_StaticFields, ___Value_0)); }
inline TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* get_Value_0() const { return ___Value_0; }
inline TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>
struct EmptyArray_1_t68F9516C5E9EAFDE58AE85134704A6A24487DBE4 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t68F9516C5E9EAFDE58AE85134704A6A24487DBE4_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t68F9516C5E9EAFDE58AE85134704A6A24487DBE4_StaticFields, ___Value_0)); }
inline SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* get_Value_0() const { return ___Value_0; }
inline SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Linq.EmptyEnumerable`1<System.Byte>
struct EmptyEnumerable_1_t4332B4AE053F2F6A3B60FAA3D36FB4A65FC68FEE : public RuntimeObject
{
public:
public:
};
struct EmptyEnumerable_1_t4332B4AE053F2F6A3B60FAA3D36FB4A65FC68FEE_StaticFields
{
public:
// TElement[] System.Linq.EmptyEnumerable`1::Instance
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyEnumerable_1_t4332B4AE053F2F6A3B60FAA3D36FB4A65FC68FEE_StaticFields, ___Instance_0)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Instance_0() const { return ___Instance_0; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Linq.EmptyEnumerable`1<System.Int32>
struct EmptyEnumerable_1_t38575964F953F6A7590DC3B4CBCB62C304438DE1 : public RuntimeObject
{
public:
public:
};
struct EmptyEnumerable_1_t38575964F953F6A7590DC3B4CBCB62C304438DE1_StaticFields
{
public:
// TElement[] System.Linq.EmptyEnumerable`1::Instance
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyEnumerable_1_t38575964F953F6A7590DC3B4CBCB62C304438DE1_StaticFields, ___Instance_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_Instance_0() const { return ___Instance_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Linq.EmptyEnumerable`1<System.Object>
struct EmptyEnumerable_1_tB6A330001520792410A46A172F103A91B1608883 : public RuntimeObject
{
public:
public:
};
struct EmptyEnumerable_1_tB6A330001520792410A46A172F103A91B1608883_StaticFields
{
public:
// TElement[] System.Linq.EmptyEnumerable`1::Instance
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyEnumerable_1_tB6A330001520792410A46A172F103A91B1608883_StaticFields, ___Instance_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Instance_0() const { return ___Instance_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>
struct EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>
struct EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>
struct EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>
struct EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>
struct EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>
struct EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>
struct EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>
struct EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>
struct EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>
struct EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>
struct EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>
struct EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>
struct EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>
struct EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>
struct EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>
struct EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>
struct EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>
struct EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>
struct EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>
struct EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>
struct EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>
struct EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>
struct EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>
struct EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>
struct EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>
struct EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>
struct EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>
struct EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>
struct EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>
struct EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>
struct EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>
struct EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>
struct EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>
struct EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>
struct EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>
struct EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>
struct EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>
struct EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>
struct EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>
struct EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>
struct EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>
struct EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>
struct EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>
struct EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>
struct EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>
struct EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>
struct EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>
struct EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>
struct EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>
struct EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>
struct EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>
struct EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>
struct EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>
struct EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>
struct EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>
struct EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>
struct EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>
struct EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>
struct EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>
struct EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>
struct EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>
struct EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>
struct EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>
struct EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>
struct EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>
struct EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>
struct EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>
struct EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>
struct EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>
struct EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>
struct EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>
struct EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>
struct EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>
struct EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>
struct EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>
struct EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>
struct EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>
struct EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>
struct EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>
struct EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>
struct EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Boolean>
struct EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Byte>
struct EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ByteEnum>
struct EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>
struct EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>
struct EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>
struct EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Char>
struct EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>
struct EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>
struct EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>
struct EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>
struct EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>
struct EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>
struct EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.DateTime>
struct EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>
struct EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Decimal>
struct EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>
struct EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Double>
struct EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>
struct EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>
struct EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>
struct EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>
struct EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>
struct EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Guid>
struct EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>
struct EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>
struct EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>
struct EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>
struct EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Int16>
struct EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Int32>
struct EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Int32Enum>
struct EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Int64>
struct EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.IntPtr>
struct EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>
struct EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>
struct EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>
struct EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>
struct EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>
struct EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>
struct EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>
struct EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>
struct EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>
struct EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>
struct EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Object>
struct EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>
struct EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>
struct EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>
struct EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>
struct EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>
struct EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>
struct EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>
struct EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>
struct EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>
struct EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>
struct EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>
struct EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>
struct EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.SByte>
struct EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Single>
struct EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>
struct EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>
struct EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>
struct EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>
struct EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>
struct EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>
struct EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>
struct EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>
struct EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>
struct EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>
struct EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>
struct EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>
struct EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>
struct EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>
struct EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>
struct EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>
struct EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>
struct EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>
struct EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>
struct EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>
struct EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>
struct EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.TimeSpan>
struct EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>
struct EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>
struct EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>
struct EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>
struct EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>
struct EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>
struct EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.UInt16>
struct EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>
struct EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.UInt32>
struct EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>
struct EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.UInt64>
struct EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>
struct EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>
struct EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>
struct EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>
struct EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>
struct EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>
struct EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>
struct EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>
struct EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>
struct EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>
struct EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>
struct EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>
struct EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>
struct EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>
struct EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>
struct EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>
struct EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>
struct EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>
struct EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>
struct EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>
struct EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>
struct EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>
struct EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>
struct EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>
struct EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>
struct EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>
struct EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>
struct EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>
struct EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>
struct EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>
struct EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>
struct EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>
struct EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>
struct EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>
struct EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>
struct EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>
struct EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>
struct EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>
struct EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>
struct EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>
struct EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>
struct EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>
struct EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>
struct EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>
struct EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>
struct EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>
struct EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>
struct EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>
struct EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>
struct EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>
struct EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>
struct EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>
struct EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>
struct EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>
struct EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>
struct EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>
struct EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>
struct EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>
struct EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>
struct EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>
struct EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>
struct EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>
struct EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>
struct EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>
struct EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>
struct EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 : public RuntimeObject
{
public:
public:
};
struct EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96_StaticFields
{
public:
// System.Array/EmptyInternalEnumerator`1<T> System.Array/EmptyInternalEnumerator`1::Value
EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96_StaticFields, ___Value_0)); }
inline EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * get_Value_0() const { return ___Value_0; }
inline EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Dynamic.Utils.EmptyReadOnlyCollection`1<System.Object>
struct EmptyReadOnlyCollection_1_t1A4BBE0B1FB7B0E4EE193FC33A6800608677C426 : public RuntimeObject
{
public:
public:
};
struct EmptyReadOnlyCollection_1_t1A4BBE0B1FB7B0E4EE193FC33A6800608677C426_StaticFields
{
public:
// System.Collections.ObjectModel.ReadOnlyCollection`1<T> System.Dynamic.Utils.EmptyReadOnlyCollection`1::Instance
ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * ___Instance_0;
public:
inline static int32_t get_offset_of_Instance_0() { return static_cast<int32_t>(offsetof(EmptyReadOnlyCollection_1_t1A4BBE0B1FB7B0E4EE193FC33A6800608677C426_StaticFields, ___Instance_0)); }
inline ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * get_Instance_0() const { return ___Instance_0; }
inline ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 ** get_address_of_Instance_0() { return &___Instance_0; }
inline void set_Instance_0(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 * value)
{
___Instance_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Instance_0), (void*)value);
}
};
// System.Dynamic.Utils.CacheDict`2/Entry<System.Object,System.Object>
struct Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894 : public RuntimeObject
{
public:
// System.Int32 System.Dynamic.Utils.CacheDict`2/Entry::_hash
int32_t ____hash_0;
// TKey System.Dynamic.Utils.CacheDict`2/Entry::_key
RuntimeObject * ____key_1;
// TValue System.Dynamic.Utils.CacheDict`2/Entry::_value
RuntimeObject * ____value_2;
public:
inline static int32_t get_offset_of__hash_0() { return static_cast<int32_t>(offsetof(Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894, ____hash_0)); }
inline int32_t get__hash_0() const { return ____hash_0; }
inline int32_t* get_address_of__hash_0() { return &____hash_0; }
inline void set__hash_0(int32_t value)
{
____hash_0 = value;
}
inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894, ____key_1)); }
inline RuntimeObject * get__key_1() const { return ____key_1; }
inline RuntimeObject ** get_address_of__key_1() { return &____key_1; }
inline void set__key_1(RuntimeObject * value)
{
____key_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_1), (void*)value);
}
inline static int32_t get_offset_of__value_2() { return static_cast<int32_t>(offsetof(Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894, ____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((void**)(&____value_2), (void*)value);
}
};
// Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<System.Object,System.Object>
struct EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue>> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2::_e
RuntimeObject* ____e_0;
public:
inline static int32_t get_offset_of__e_0() { return static_cast<int32_t>(offsetof(EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9, ____e_0)); }
inline RuntimeObject* get__e_0() const { return ____e_0; }
inline RuntimeObject** get_address_of__e_0() { return &____e_0; }
inline void set__e_0(RuntimeObject* value)
{
____e_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____e_0), (void*)value);
}
};
// System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 : public RuntimeObject
{
public:
public:
};
// System.Linq.EnumerableSorter`1<System.Object>
struct EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A : public RuntimeObject
{
public:
public:
};
// System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>
struct EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 : public RuntimeObject
{
public:
public:
};
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>
struct Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B : public RuntimeObject
{
public:
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<T> System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_builder
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * ____builder_0;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_index
int32_t ____index_2;
// T System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator::_current
RuntimeObject * ____current_3;
public:
inline static int32_t get_offset_of__builder_0() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____builder_0)); }
inline ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * get__builder_0() const { return ____builder_0; }
inline ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F ** get_address_of__builder_0() { return &____builder_0; }
inline void set__builder_0(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * value)
{
____builder_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____builder_0), (void*)value);
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____version_1)); }
inline int32_t get__version_1() const { return ____version_1; }
inline int32_t* get_address_of__version_1() { return &____version_1; }
inline void set__version_1(int32_t value)
{
____version_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B, ____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((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Int32Enum>
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<Mapbox.Map.CanonicalTileId>
struct HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____buckets_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____slots_8)); }
inline SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F, ____siInfo_14)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<System.Int32>
struct HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____buckets_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____slots_8)); }
inline SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5, ____siInfo_14)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<System.Int32Enum>
struct HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____buckets_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____slots_8)); }
inline SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC, ____siInfo_14)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<UnityEngine.XR.MeshId>
struct HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____buckets_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____slots_8)); }
inline SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9, ____siInfo_14)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.HashSet`1<System.Object>
struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.HashSet`1::_buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
// System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* ____slots_8;
// System.Int32 System.Collections.Generic.HashSet`1::_count
int32_t ____count_9;
// System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
int32_t ____lastIndex_10;
// System.Int32 System.Collections.Generic.HashSet`1::_freeList
int32_t ____freeList_11;
// System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
RuntimeObject* ____comparer_12;
// System.Int32 System.Collections.Generic.HashSet`1::_version
int32_t ____version_13;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
public:
inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____buckets_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____buckets_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
}
inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____slots_8)); }
inline SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* get__slots_8() const { return ____slots_8; }
inline SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494** get_address_of__slots_8() { return &____slots_8; }
inline void set__slots_8(SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* value)
{
____slots_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
}
inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____count_9)); }
inline int32_t get__count_9() const { return ____count_9; }
inline int32_t* get_address_of__count_9() { return &____count_9; }
inline void set__count_9(int32_t value)
{
____count_9 = value;
}
inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____lastIndex_10)); }
inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
inline void set__lastIndex_10(int32_t value)
{
____lastIndex_10 = value;
}
inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____freeList_11)); }
inline int32_t get__freeList_11() const { return ____freeList_11; }
inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
inline void set__freeList_11(int32_t value)
{
____freeList_11 = value;
}
inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____comparer_12)); }
inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
inline void set__comparer_12(RuntimeObject* value)
{
____comparer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
}
inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____version_13)); }
inline int32_t get__version_13() const { return ____version_13; }
inline int32_t* get_address_of__version_13() { return &____version_13; }
inline void set__version_13(int32_t value)
{
____version_13 = value;
}
inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B, ____siInfo_14)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Object>
struct LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
RuntimeObject * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F, ___list_0)); }
inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * get_list_0() const { return ___list_0; }
inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F, ___next_1)); }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F, ___prev_2)); }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F, ___item_3)); }
inline RuntimeObject * get_item_3() const { return ___item_3; }
inline RuntimeObject ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(RuntimeObject * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedList`1<System.ValueTuple`2<System.Object,System.Object>>
struct LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * ___head_0;
// System.Int32 System.Collections.Generic.LinkedList`1::count
int32_t ___count_1;
// System.Int32 System.Collections.Generic.LinkedList`1::version
int32_t ___version_2;
// System.Object System.Collections.Generic.LinkedList`1::_syncRoot
RuntimeObject * ____syncRoot_3;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_4;
public:
inline static int32_t get_offset_of_head_0() { return static_cast<int32_t>(offsetof(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B, ___head_0)); }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * get_head_0() const { return ___head_0; }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 ** get_address_of_head_0() { return &___head_0; }
inline void set_head_0(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * value)
{
___head_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B, ___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__syncRoot_3() { return static_cast<int32_t>(offsetof(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
inline static int32_t get_offset_of__siInfo_4() { return static_cast<int32_t>(offsetof(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B, ____siInfo_4)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_4() const { return ____siInfo_4; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_4() { return &____siInfo_4; }
inline void set__siInfo_4(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_4), (void*)value);
}
};
// System.Collections.Generic.LinkedList`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * ___head_0;
// System.Int32 System.Collections.Generic.LinkedList`1::count
int32_t ___count_1;
// System.Int32 System.Collections.Generic.LinkedList`1::version
int32_t ___version_2;
// System.Object System.Collections.Generic.LinkedList`1::_syncRoot
RuntimeObject * ____syncRoot_3;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_4;
public:
inline static int32_t get_offset_of_head_0() { return static_cast<int32_t>(offsetof(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689, ___head_0)); }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * get_head_0() const { return ___head_0; }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC ** get_address_of_head_0() { return &___head_0; }
inline void set_head_0(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * value)
{
___head_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689, ___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__syncRoot_3() { return static_cast<int32_t>(offsetof(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
inline static int32_t get_offset_of__siInfo_4() { return static_cast<int32_t>(offsetof(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689, ____siInfo_4)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_4() const { return ____siInfo_4; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_4() { return &____siInfo_4; }
inline void set__siInfo_4(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_4), (void*)value);
}
};
// System.Collections.Generic.LinkedList`1<System.Object>
struct LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::head
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * ___head_0;
// System.Int32 System.Collections.Generic.LinkedList`1::count
int32_t ___count_1;
// System.Int32 System.Collections.Generic.LinkedList`1::version
int32_t ___version_2;
// System.Object System.Collections.Generic.LinkedList`1::_syncRoot
RuntimeObject * ____syncRoot_3;
// System.Runtime.Serialization.SerializationInfo System.Collections.Generic.LinkedList`1::_siInfo
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_4;
public:
inline static int32_t get_offset_of_head_0() { return static_cast<int32_t>(offsetof(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B, ___head_0)); }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * get_head_0() const { return ___head_0; }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F ** get_address_of_head_0() { return &___head_0; }
inline void set_head_0(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * value)
{
___head_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___head_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B, ___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__syncRoot_3() { return static_cast<int32_t>(offsetof(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
inline static int32_t get_offset_of__siInfo_4() { return static_cast<int32_t>(offsetof(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B, ____siInfo_4)); }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_4() const { return ____siInfo_4; }
inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_4() { return &____siInfo_4; }
inline void set__siInfo_4(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
{
____siInfo_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____siInfo_4), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* ____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_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7, ____items_1)); }
inline KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* get__items_1() const { return ____items_1; }
inline KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7, ____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_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7, ____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_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7_StaticFields, ____emptyArray_5)); }
inline KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* get__emptyArray_5() const { return ____emptyArray_5; }
inline KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ____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_tFBF6A022293416BA5AD7B89F3A150C81EF05606E, ____items_1)); }
inline KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* get__items_1() const { return ____items_1; }
inline KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E, ____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_tFBF6A022293416BA5AD7B89F3A150C81EF05606E, ____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_tFBF6A022293416BA5AD7B89F3A150C81EF05606E, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E_StaticFields, ____emptyArray_5)); }
inline KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* get__emptyArray_5() const { return ____emptyArray_5; }
inline KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>
struct List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* ____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_tAF78E49171E2C987480BE2F36E1E73CEFDA37469, ____items_1)); }
inline NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* get__items_1() const { return ____items_1; }
inline NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469, ____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_tAF78E49171E2C987480BE2F36E1E73CEFDA37469, ____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_tAF78E49171E2C987480BE2F36E1E73CEFDA37469, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469_StaticFields, ____emptyArray_5)); }
inline NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* get__emptyArray_5() const { return ____emptyArray_5; }
inline NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>
struct List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* ____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_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5, ____items_1)); }
inline Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* get__items_1() const { return ____items_1; }
inline Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5, ____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_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5, ____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_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5_StaticFields, ____emptyArray_5)); }
inline Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* get__emptyArray_5() const { return ____emptyArray_5; }
inline Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>
struct List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* ____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_t2CBF46814680A631292F3FF5228C5DC22B0A1132, ____items_1)); }
inline Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* get__items_1() const { return ____items_1; }
inline Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132, ____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_t2CBF46814680A631292F3FF5228C5DC22B0A1132, ____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_t2CBF46814680A631292F3FF5228C5DC22B0A1132, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132_StaticFields, ____emptyArray_5)); }
inline Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* get__emptyArray_5() const { return ____emptyArray_5; }
inline Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>
struct List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* ____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_tECF0ED634BCE63A4E7289A936C8F226202E23FFB, ____items_1)); }
inline Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* get__items_1() const { return ____items_1; }
inline Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB, ____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_tECF0ED634BCE63A4E7289A936C8F226202E23FFB, ____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_tECF0ED634BCE63A4E7289A936C8F226202E23FFB, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB_StaticFields, ____emptyArray_5)); }
inline Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* get__emptyArray_5() const { return ____emptyArray_5; }
inline Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.ARFoundation.ARRaycastHit>
struct List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* ____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_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D, ____items_1)); }
inline ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* get__items_1() const { return ____items_1; }
inline ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D, ____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_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D, ____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_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D_StaticFields, ____emptyArray_5)); }
inline ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* get__emptyArray_5() const { return ____emptyArray_5; }
inline ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.ARFoundation.ARTextureInfo>
struct List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* ____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_t737CDD0B911D91DA30FC544763F10FFC47C3C74A, ____items_1)); }
inline ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* get__items_1() const { return ____items_1; }
inline ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A, ____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_t737CDD0B911D91DA30FC544763F10FFC47C3C74A, ____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_t737CDD0B911D91DA30FC544763F10FFC47C3C74A, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A_StaticFields, ____emptyArray_5)); }
inline ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* get__emptyArray_5() const { return ____emptyArray_5; }
inline ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.Utils.BearingFilter>
struct List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* ____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_t943DDB8C64C1219EE5C4427F2AC52A98347556A5, ____items_1)); }
inline BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* get__items_1() const { return ____items_1; }
inline BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5, ____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_t943DDB8C64C1219EE5C4427F2AC52A98347556A5, ____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_t943DDB8C64C1219EE5C4427F2AC52A98347556A5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5_StaticFields, ____emptyArray_5)); }
inline BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* get__emptyArray_5() const { return ____emptyArray_5; }
inline BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Boolean>
struct List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____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_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3, ____items_1)); }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__items_1() const { return ____items_1; }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3, ____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_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3, ____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_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3_StaticFields, ____emptyArray_5)); }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__emptyArray_5() const { return ____emptyArray_5; }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Byte>
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____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_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____items_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__items_1() const { return ____items_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____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_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____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_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF_StaticFields, ____emptyArray_5)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__emptyArray_5() const { return ____emptyArray_5; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Char>
struct List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____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_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE, ____items_1)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__items_1() const { return ____items_1; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE, ____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_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE, ____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_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE_StaticFields, ____emptyArray_5)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__emptyArray_5() const { return ____emptyArray_5; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ____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_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____items_1)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get__items_1() const { return ____items_1; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____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_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____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_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5_StaticFields, ____emptyArray_5)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get__emptyArray_5() const { return ____emptyArray_5; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.DateTime>
struct List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* ____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_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC, ____items_1)); }
inline DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* get__items_1() const { return ____items_1; }
inline DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC, ____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_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC, ____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_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC_StaticFields, ____emptyArray_5)); }
inline DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* get__emptyArray_5() const { return ____emptyArray_5; }
inline DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.DateTimeOffset>
struct List_1_t6A1295D69B538887EB0A62B321F30014A5691173 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* ____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_t6A1295D69B538887EB0A62B321F30014A5691173, ____items_1)); }
inline DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* get__items_1() const { return ____items_1; }
inline DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6A1295D69B538887EB0A62B321F30014A5691173, ____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_t6A1295D69B538887EB0A62B321F30014A5691173, ____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_t6A1295D69B538887EB0A62B321F30014A5691173, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t6A1295D69B538887EB0A62B321F30014A5691173_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6A1295D69B538887EB0A62B321F30014A5691173_StaticFields, ____emptyArray_5)); }
inline DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* get__emptyArray_5() const { return ____emptyArray_5; }
inline DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Decimal>
struct List_1_t137B540BF717527106254AA05BE36A51A068C8F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* ____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_t137B540BF717527106254AA05BE36A51A068C8F5, ____items_1)); }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* get__items_1() const { return ____items_1; }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t137B540BF717527106254AA05BE36A51A068C8F5, ____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_t137B540BF717527106254AA05BE36A51A068C8F5, ____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_t137B540BF717527106254AA05BE36A51A068C8F5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t137B540BF717527106254AA05BE36A51A068C8F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t137B540BF717527106254AA05BE36A51A068C8F5_StaticFields, ____emptyArray_5)); }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* get__emptyArray_5() const { return ____emptyArray_5; }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Double>
struct List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* ____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_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC, ____items_1)); }
inline DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* get__items_1() const { return ____items_1; }
inline DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC, ____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_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC, ____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_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC_StaticFields, ____emptyArray_5)); }
inline DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* get__emptyArray_5() const { return ____emptyArray_5; }
inline DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.TextCore.GlyphRect>
struct List_1_tE870449A6BC21548542BC92F18B284004FA8668A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____items_1)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get__items_1() const { return ____items_1; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE870449A6BC21548542BC92F18B284004FA8668A, ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____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_tE870449A6BC21548542BC92F18B284004FA8668A, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE870449A6BC21548542BC92F18B284004FA8668A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE870449A6BC21548542BC92F18B284004FA8668A_StaticFields, ____emptyArray_5)); }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* get__emptyArray_5() const { return ____emptyArray_5; }
inline GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.InputDevice>
struct List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* ____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_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F, ____items_1)); }
inline InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* get__items_1() const { return ____items_1; }
inline InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F, ____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_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F, ____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_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F_StaticFields, ____emptyArray_5)); }
inline InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* get__emptyArray_5() const { return ____emptyArray_5; }
inline InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int16>
struct List_1_t985353431229C8151763A38589D03FBD829D85E5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ____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_t985353431229C8151763A38589D03FBD829D85E5, ____items_1)); }
inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get__items_1() const { return ____items_1; }
inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t985353431229C8151763A38589D03FBD829D85E5, ____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_t985353431229C8151763A38589D03FBD829D85E5, ____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_t985353431229C8151763A38589D03FBD829D85E5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t985353431229C8151763A38589D03FBD829D85E5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t985353431229C8151763A38589D03FBD829D85E5_StaticFields, ____emptyArray_5)); }
inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____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_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____items_1)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__items_1() const { return ____items_1; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____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_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____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_t260B41F956D673396C33A4CF94E8D6C4389EACB7, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7_StaticFields, ____emptyArray_5)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int32Enum>
struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ____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_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____items_1)); }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* get__items_1() const { return ____items_1; }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____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_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____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_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A_StaticFields, ____emptyArray_5)); }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int64>
struct List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ____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_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4, ____items_1)); }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* get__items_1() const { return ____items_1; }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4, ____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_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4, ____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_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4_StaticFields, ____emptyArray_5)); }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.Json.JsonPosition>
struct List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* ____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_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15, ____items_1)); }
inline JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* get__items_1() const { return ____items_1; }
inline JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15, ____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_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15, ____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_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15_StaticFields, ____emptyArray_5)); }
inline JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* get__emptyArray_5() const { return ____emptyArray_5; }
inline JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<Mapbox.VectorTile.Geometry.LatLng>
struct List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* ____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_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9, ____items_1)); }
inline LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* get__items_1() const { return ____items_1; }
inline LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9, ____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_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9, ____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_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9_StaticFields, ____emptyArray_5)); }
inline LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* get__emptyArray_5() const { return ____emptyArray_5; }
inline LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.XR.MeshInfo>
struct List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* ____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_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D, ____items_1)); }
inline MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* get__items_1() const { return ____items_1; }
inline MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D, ____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_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D, ____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_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D_StaticFields, ____emptyArray_5)); }
inline MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* get__emptyArray_5() const { return ____emptyArray_5; }
inline MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.Queue`1<System.Object>
struct Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Queue`1::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Generic.Queue`1::_head
int32_t ____head_1;
// System.Int32 System.Collections.Generic.Queue`1::_tail
int32_t ____tail_2;
// System.Int32 System.Collections.Generic.Queue`1::_size
int32_t ____size_3;
// System.Int32 System.Collections.Generic.Queue`1::_version
int32_t ____version_4;
// System.Object System.Collections.Generic.Queue`1::_syncRoot
RuntimeObject * ____syncRoot_5;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__head_1() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____head_1)); }
inline int32_t get__head_1() const { return ____head_1; }
inline int32_t* get_address_of__head_1() { return &____head_1; }
inline void set__head_1(int32_t value)
{
____head_1 = value;
}
inline static int32_t get_offset_of__tail_2() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____tail_2)); }
inline int32_t get__tail_2() const { return ____tail_2; }
inline int32_t* get_address_of__tail_2() { return &____tail_2; }
inline void set__tail_2(int32_t value)
{
____tail_2 = value;
}
inline static int32_t get_offset_of__size_3() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____size_3)); }
inline int32_t get__size_3() const { return ____size_3; }
inline int32_t* get_address_of__size_3() { return &____size_3; }
inline void set__size_3(int32_t value)
{
____size_3 = value;
}
inline static int32_t get_offset_of__version_4() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____version_4)); }
inline int32_t get__version_4() const { return ____version_4; }
inline int32_t* get_address_of__version_4() { return &____version_4; }
inline void set__version_4(int32_t value)
{
____version_4 = value;
}
inline static int32_t get_offset_of__syncRoot_5() { return static_cast<int32_t>(offsetof(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64, ____syncRoot_5)); }
inline RuntimeObject * get__syncRoot_5() const { return ____syncRoot_5; }
inline RuntimeObject ** get_address_of__syncRoot_5() { return &____syncRoot_5; }
inline void set__syncRoot_5(RuntimeObject * value)
{
____syncRoot_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_5), (void*)value);
}
};
// System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<System.Object>
struct ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F : public RuntimeObject
{
public:
// T[] System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_size
int32_t ____size_1;
// System.Int32 System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____items_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F, ____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;
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>
struct ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
// System.Object System.Collections.ObjectModel.ReadOnlyCollection`1::_syncRoot
RuntimeObject * ____syncRoot_1;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_1() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3, ____syncRoot_1)); }
inline RuntimeObject * get__syncRoot_1() const { return ____syncRoot_1; }
inline RuntimeObject ** get_address_of__syncRoot_1() { return &____syncRoot_1; }
inline void set__syncRoot_1(RuntimeObject * value)
{
____syncRoot_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_1), (void*)value);
}
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____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__syncRoot_3() { return static_cast<int32_t>(offsetof(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_members_3;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_data_4;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___m_types_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___m_nameToIndex_6;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_7;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_8;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_9;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_10;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t * ___objectType_11;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_12;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_13;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_14;
public:
inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_members_3)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_members_3() const { return ___m_members_3; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_members_3() { return &___m_members_3; }
inline void set_m_members_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___m_members_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value);
}
inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_data_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_data_4() const { return ___m_data_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_data_4() { return &___m_data_4; }
inline void set_m_data_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_data_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value);
}
inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_types_5)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_m_types_5() const { return ___m_types_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_m_types_5() { return &___m_types_5; }
inline void set_m_types_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___m_types_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value);
}
inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_nameToIndex_6)); }
inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; }
inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; }
inline void set_m_nameToIndex_6(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value)
{
___m_nameToIndex_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value);
}
inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_currMember_7)); }
inline int32_t get_m_currMember_7() const { return ___m_currMember_7; }
inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; }
inline void set_m_currMember_7(int32_t value)
{
___m_currMember_7 = value;
}
inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_converter_8)); }
inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; }
inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; }
inline void set_m_converter_8(RuntimeObject* value)
{
___m_converter_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value);
}
inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_fullTypeName_9)); }
inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; }
inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; }
inline void set_m_fullTypeName_9(String_t* value)
{
___m_fullTypeName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value);
}
inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_assemName_10)); }
inline String_t* get_m_assemName_10() const { return ___m_assemName_10; }
inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; }
inline void set_m_assemName_10(String_t* value)
{
___m_assemName_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value);
}
inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___objectType_11)); }
inline Type_t * get_objectType_11() const { return ___objectType_11; }
inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; }
inline void set_objectType_11(Type_t * value)
{
___objectType_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value);
}
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isFullTypeNameSetExplicit_12)); }
inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; }
inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; }
inline void set_isFullTypeNameSetExplicit_12(bool value)
{
___isFullTypeNameSetExplicit_12 = value;
}
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isAssemblyNameSetExplicit_13)); }
inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; }
inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; }
inline void set_isAssemblyNameSetExplicit_13(bool value)
{
___isAssemblyNameSetExplicit_13 = value;
}
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___requireSameTokenInPartialTrust_14)); }
inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; }
inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; }
inline void set_requireSameTokenInPartialTrust_14(bool value)
{
___requireSameTokenInPartialTrust_14 = value;
}
};
// 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((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.ArraySegment`1<System.Byte>
struct ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE
{
public:
// T[] System.ArraySegment`1::_array
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____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_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____array_0)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__array_0() const { return ____array_0; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__offset_1() { return static_cast<int32_t>(offsetof(ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____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_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE, ____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;
}
};
// System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>
struct Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94
{
public:
// TValue System.Xml.Linq.XHashtable`1/XHashtableState/Entry::Value
RuntimeObject * ___Value_0;
// System.Int32 System.Xml.Linq.XHashtable`1/XHashtableState/Entry::HashCode
int32_t ___HashCode_1;
// System.Int32 System.Xml.Linq.XHashtable`1/XHashtableState/Entry::Next
int32_t ___Next_2;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94, ___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((void**)(&___Value_0), (void*)value);
}
inline static int32_t get_offset_of_HashCode_1() { return static_cast<int32_t>(offsetof(Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94, ___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_Next_2() { return static_cast<int32_t>(offsetof(Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94, ___Next_2)); }
inline int32_t get_Next_2() const { return ___Next_2; }
inline int32_t* get_address_of_Next_2() { return &___Next_2; }
inline void set_Next_2(int32_t value)
{
___Next_2 = value;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>
struct Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574
{
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_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___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_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___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_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___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_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>
struct Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39
{
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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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_t451329272BBC6DD557728CC31D180CDB00BCFB39, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>
struct Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2
{
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_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___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_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___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_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___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_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>
struct Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E
{
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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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_t566665F9E0C95BD89070FA959BD9CD9652B11B1E, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>
struct Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632
{
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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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_tD3C172E348082DAA38034A7BFC5251A40A96D632, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>
struct Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A
{
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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>
struct Entry_tE032650534234E8BCC41BF224A68F799EB231216
{
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_tE032650534234E8BCC41BF224A68F799EB231216, ___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_tE032650534234E8BCC41BF224A68F799EB231216, ___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_tE032650534234E8BCC41BF224A68F799EB231216, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tE032650534234E8BCC41BF224A68F799EB231216, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>
struct Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A
{
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_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>
struct Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE
{
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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>
struct Entry_t208639F3F4F37C945E22645BD356EDD28167B721
{
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
uint32_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_t208639F3F4F37C945E22645BD356EDD28167B721, ___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_t208639F3F4F37C945E22645BD356EDD28167B721, ___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_t208639F3F4F37C945E22645BD356EDD28167B721, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t208639F3F4F37C945E22645BD356EDD28167B721, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>
struct Entry_t03A87BF6367938D67497088665C733ED14E14AC9
{
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
uint32_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_t03A87BF6367938D67497088665C733ED14E14AC9, ___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_t03A87BF6367938D67497088665C733ED14E14AC9, ___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_t03A87BF6367938D67497088665C733ED14E14AC9, ___key_2)); }
inline uint32_t get_key_2() const { return ___key_2; }
inline uint32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03A87BF6367938D67497088665C733ED14E14AC9, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>
struct Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31
{
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
uint64_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_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___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_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___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_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>
struct EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF : public EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F
{
public:
public:
};
// System.Linq.EnumerableSorter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150 : public EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150, ___keySelector_0)); }
inline Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150, ___next_3)); }
inline EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150, ___keys_4)); }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* get_keys_4() const { return ___keys_4; }
inline Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.Int32>
struct EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___keySelector_0)); }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B, ___keys_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_keys_4() const { return ___keys_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.Object>
struct EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___keySelector_0)); }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227, ___keys_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_keys_4() const { return ___keys_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.Single>
struct EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2 : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2, ___keySelector_0)); }
inline Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2, ___keys_4)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_keys_4() const { return ___keys_4; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<System.Object,System.UInt32>
struct EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE : public EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE, ___keySelector_0)); }
inline Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE, ___next_3)); }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE, ___keys_4)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_keys_4() const { return ___keys_4; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Linq.EnumerableSorter`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>
struct EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B : public EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1
{
public:
// System.Func`2<TElement,TKey> System.Linq.EnumerableSorter`2::keySelector
Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * ___keySelector_0;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.EnumerableSorter`2::comparer
RuntimeObject* ___comparer_1;
// System.Boolean System.Linq.EnumerableSorter`2::descending
bool ___descending_2;
// System.Linq.EnumerableSorter`1<TElement> System.Linq.EnumerableSorter`2::next
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * ___next_3;
// TKey[] System.Linq.EnumerableSorter`2::keys
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___keys_4;
public:
inline static int32_t get_offset_of_keySelector_0() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B, ___keySelector_0)); }
inline Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * get_keySelector_0() const { return ___keySelector_0; }
inline Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 ** get_address_of_keySelector_0() { return &___keySelector_0; }
inline void set_keySelector_0(Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * value)
{
___keySelector_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_0), (void*)value);
}
inline static int32_t get_offset_of_comparer_1() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B, ___comparer_1)); }
inline RuntimeObject* get_comparer_1() const { return ___comparer_1; }
inline RuntimeObject** get_address_of_comparer_1() { return &___comparer_1; }
inline void set_comparer_1(RuntimeObject* value)
{
___comparer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_1), (void*)value);
}
inline static int32_t get_offset_of_descending_2() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B, ___descending_2)); }
inline bool get_descending_2() const { return ___descending_2; }
inline bool* get_address_of_descending_2() { return &___descending_2; }
inline void set_descending_2(bool value)
{
___descending_2 = value;
}
inline static int32_t get_offset_of_next_3() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B, ___next_3)); }
inline EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * get_next_3() const { return ___next_3; }
inline EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 ** get_address_of_next_3() { return &___next_3; }
inline void set_next_3(EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * value)
{
___next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_3), (void*)value);
}
inline static int32_t get_offset_of_keys_4() { return static_cast<int32_t>(offsetof(EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B, ___keys_4)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_keys_4() const { return ___keys_4; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_keys_4() { return &___keys_4; }
inline void set_keys_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___keys_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_4), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<System.Boolean>
struct Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * ___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
bool ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9, ___list_0)); }
inline List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * get_list_0() const { return ___list_0; }
inline List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9, ___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_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9, ___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_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9, ___current_3)); }
inline bool get_current_3() const { return ___current_3; }
inline bool* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(bool value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Byte>
struct Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___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
uint8_t ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254, ___list_0)); }
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * get_list_0() const { return ___list_0; }
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254, ___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_t6120EE33D7530B898BEB03947154EB230A6DA254, ___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_t6120EE33D7530B898BEB03947154EB230A6DA254, ___current_3)); }
inline uint8_t get_current_3() const { return ___current_3; }
inline uint8_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(uint8_t value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Char>
struct Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * ___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
Il2CppChar ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F, ___list_0)); }
inline List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * get_list_0() const { return ___list_0; }
inline List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F, ___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_tA84BA090971D432C9648ACA7F1744157466B5A4F, ___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_tA84BA090971D432C9648ACA7F1744157466B5A4F, ___current_3)); }
inline Il2CppChar get_current_3() const { return ___current_3; }
inline Il2CppChar* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Il2CppChar value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Double>
struct Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * ___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
double ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2, ___list_0)); }
inline List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * get_list_0() const { return ___list_0; }
inline List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2, ___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_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2, ___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_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2, ___current_3)); }
inline double get_current_3() const { return ___current_3; }
inline double* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(double value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Int16>
struct Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t985353431229C8151763A38589D03FBD829D85E5 * ___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
int16_t ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813, ___list_0)); }
inline List_1_t985353431229C8151763A38589D03FBD829D85E5 * get_list_0() const { return ___list_0; }
inline List_1_t985353431229C8151763A38589D03FBD829D85E5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t985353431229C8151763A38589D03FBD829D85E5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813, ___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_t14A4ACD2915B999F3B3D70AD01356996BC636813, ___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_t14A4ACD2915B999F3B3D70AD01356996BC636813, ___current_3)); }
inline int16_t get_current_3() const { return ___current_3; }
inline int16_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(int16_t value)
{
___current_3 = value;
}
};
// System.Collections.Generic.HashSet`1/Enumerator<System.Int32>
struct Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
int32_t ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844, ____set_0)); }
inline HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * get__set_0() const { return ____set_0; }
inline HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * value)
{
____set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value);
}
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844, ____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_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844, ____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_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844, ____current_3)); }
inline int32_t get__current_3() const { return ____current_3; }
inline int32_t* get_address_of__current_3() { return &____current_3; }
inline void set__current_3(int32_t value)
{
____current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Int32>
struct Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___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
int32_t ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C, ___list_0)); }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * get_list_0() const { return ___list_0; }
inline List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C, ___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_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C, ___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_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C, ___current_3)); }
inline int32_t get_current_3() const { return ___current_3; }
inline int32_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(int32_t value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Int64>
struct Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * ___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
int64_t ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37, ___list_0)); }
inline List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * get_list_0() const { return ___list_0; }
inline List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37, ___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_t1C02C38119DFDA075166A979AE2B70CCA911ED37, ___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_t1C02C38119DFDA075166A979AE2B70CCA911ED37, ___current_3)); }
inline int64_t get_current_3() const { return ___current_3; }
inline int64_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(int64_t value)
{
___current_3 = value;
}
};
// System.Collections.Generic.HashSet`1/Enumerator<System.Object>
struct Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
RuntimeObject * ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____set_0)); }
inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * get__set_0() const { return ____set_0; }
inline HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * value)
{
____set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value);
}
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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_t2430E2854B4328060EB6096AD1E4851E8DC45C3A, ____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((void**)(&____current_3), (void*)value);
}
};
// System.Collections.Generic.LinkedList`1/Enumerator<System.Object>
struct Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_list
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ____list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_node
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * ____node_1;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.LinkedList`1/Enumerator::_current
RuntimeObject * ____current_3;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index
int32_t ____index_4;
public:
inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____list_0)); }
inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * get__list_0() const { return ____list_0; }
inline LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B ** get_address_of__list_0() { return &____list_0; }
inline void set__list_0(LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * value)
{
____list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value);
}
inline static int32_t get_offset_of__node_1() { return static_cast<int32_t>(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____node_1)); }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * get__node_1() const { return ____node_1; }
inline LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F ** get_address_of__node_1() { return &____node_1; }
inline void set__node_1(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * value)
{
____node_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value);
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____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_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____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((void**)(&____current_3), (void*)value);
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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_tB6009981BD4E3881E3EC83627255A24198F902D6, ___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((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.Queue`1/Enumerator<System.Object>
struct Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C
{
public:
// System.Collections.Generic.Queue`1<T> System.Collections.Generic.Queue`1/Enumerator::_q
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ____q_0;
// System.Int32 System.Collections.Generic.Queue`1/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Queue`1/Enumerator::_index
int32_t ____index_2;
// T System.Collections.Generic.Queue`1/Enumerator::_currentElement
RuntimeObject * ____currentElement_3;
public:
inline static int32_t get_offset_of__q_0() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____q_0)); }
inline Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * get__q_0() const { return ____q_0; }
inline Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 ** get_address_of__q_0() { return &____q_0; }
inline void set__q_0(Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * value)
{
____q_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____q_0), (void*)value);
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____version_1)); }
inline int32_t get__version_1() const { return ____version_1; }
inline int32_t* get_address_of__version_1() { return &____version_1; }
inline void set__version_1(int32_t value)
{
____version_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__currentElement_3() { return static_cast<int32_t>(offsetof(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C, ____currentElement_3)); }
inline RuntimeObject * get__currentElement_3() const { return ____currentElement_3; }
inline RuntimeObject ** get_address_of__currentElement_3() { return &____currentElement_3; }
inline void set__currentElement_3(RuntimeObject * value)
{
____currentElement_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentElement_3), (void*)value);
}
};
// System.Collections.Generic.Stack`1/Enumerator<System.Object>
struct Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514
{
public:
// System.Collections.Generic.Stack`1<T> System.Collections.Generic.Stack`1/Enumerator::_stack
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ____stack_0;
// System.Int32 System.Collections.Generic.Stack`1/Enumerator::_version
int32_t ____version_1;
// System.Int32 System.Collections.Generic.Stack`1/Enumerator::_index
int32_t ____index_2;
// T System.Collections.Generic.Stack`1/Enumerator::_currentElement
RuntimeObject * ____currentElement_3;
public:
inline static int32_t get_offset_of__stack_0() { return static_cast<int32_t>(offsetof(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514, ____stack_0)); }
inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * get__stack_0() const { return ____stack_0; }
inline Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 ** get_address_of__stack_0() { return &____stack_0; }
inline void set__stack_0(Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * value)
{
____stack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stack_0), (void*)value);
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514, ____version_1)); }
inline int32_t get__version_1() const { return ____version_1; }
inline int32_t* get_address_of__version_1() { return &____version_1; }
inline void set__version_1(int32_t value)
{
____version_1 = value;
}
inline static int32_t get_offset_of__index_2() { return static_cast<int32_t>(offsetof(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514, ____index_2)); }
inline int32_t get__index_2() const { return ____index_2; }
inline int32_t* get_address_of__index_2() { return &____index_2; }
inline void set__index_2(int32_t value)
{
____index_2 = value;
}
inline static int32_t get_offset_of__currentElement_3() { return static_cast<int32_t>(offsetof(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514, ____currentElement_3)); }
inline RuntimeObject * get__currentElement_3() const { return ____currentElement_3; }
inline RuntimeObject ** get_address_of__currentElement_3() { return &____currentElement_3; }
inline void set__currentElement_3(RuntimeObject * value)
{
____currentElement_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____currentElement_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>
struct KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3
{
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_t239694BB713649B9F5326D1A5BC3143EA54316B3, ___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_t239694BB713649B9F5326D1A5BC3143EA54316B3, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>
struct KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265
{
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_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___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_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB
{
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_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___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_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>
struct KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28
{
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_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___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_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0
{
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_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___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_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>
struct KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2
{
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_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___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_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>
struct KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A
{
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_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5
{
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_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625
{
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_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>
struct KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_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_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>
struct KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_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_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___key_0)); }
inline uint32_t get_key_0() const { return ___key_0; }
inline uint32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>
struct KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_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_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703, ___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((void**)(&___value_1), (void*)value);
}
};
// Unity.Collections.NativeSlice`1<System.Byte>
struct NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2
{
public:
// System.Byte* Unity.Collections.NativeSlice`1::m_Buffer
uint8_t* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeSlice`1::m_Stride
int32_t ___m_Stride_1;
// System.Int32 Unity.Collections.NativeSlice`1::m_Length
int32_t ___m_Length_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Buffer_0)); }
inline uint8_t* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline uint8_t** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(uint8_t* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Stride_1() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Stride_1)); }
inline int32_t get_m_Stride_1() const { return ___m_Stride_1; }
inline int32_t* get_address_of_m_Stride_1() { return &___m_Stride_1; }
inline void set_m_Stride_1(int32_t value)
{
___m_Stride_1 = value;
}
inline static int32_t get_offset_of_m_Length_2() { return static_cast<int32_t>(offsetof(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2, ___m_Length_2)); }
inline int32_t get_m_Length_2() const { return ___m_Length_2; }
inline int32_t* get_address_of_m_Length_2() { return &___m_Length_2; }
inline void set_m_Length_2(int32_t value)
{
___m_Length_2 = value;
}
};
// System.Nullable`1<System.Double>
struct Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209
{
public:
// T System.Nullable`1::value
double ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209, ___value_0)); }
inline double get_value_0() const { return ___value_0; }
inline double* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(double value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Nullable`1<System.Single>
struct Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A
{
public:
// T System.Nullable`1::value
float ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___value_0)); }
inline float get_value_0() const { return ___value_0; }
inline float* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(float value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>
struct Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB
{
public:
// T Mapbox.VectorTile.Geometry.Point2d`1::X
int64_t ___X_0;
// T Mapbox.VectorTile.Geometry.Point2d`1::Y
int64_t ___Y_1;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB, ___X_0)); }
inline int64_t get_X_0() const { return ___X_0; }
inline int64_t* get_address_of_X_0() { return &___X_0; }
inline void set_X_0(int64_t value)
{
___X_0 = value;
}
inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB, ___Y_1)); }
inline int64_t get_Y_1() const { return ___Y_1; }
inline int64_t* get_address_of_Y_1() { return &___Y_1; }
inline void set_Y_1(int64_t value)
{
___Y_1 = value;
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Object>
struct Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC
{
public:
// T Mapbox.VectorTile.Geometry.Point2d`1::X
RuntimeObject * ___X_0;
// T Mapbox.VectorTile.Geometry.Point2d`1::Y
RuntimeObject * ___Y_1;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC, ___X_0)); }
inline RuntimeObject * get_X_0() const { return ___X_0; }
inline RuntimeObject ** get_address_of_X_0() { return &___X_0; }
inline void set_X_0(RuntimeObject * value)
{
___X_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___X_0), (void*)value);
}
inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC, ___Y_1)); }
inline RuntimeObject * get_Y_1() const { return ___Y_1; }
inline RuntimeObject ** get_address_of_Y_1() { return &___Y_1; }
inline void set_Y_1(RuntimeObject * value)
{
___Y_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Y_1), (void*)value);
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Single>
struct Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE
{
public:
// T Mapbox.VectorTile.Geometry.Point2d`1::X
float ___X_0;
// T Mapbox.VectorTile.Geometry.Point2d`1::Y
float ___Y_1;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE, ___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(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE, ___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;
}
};
// System.Linq.Set`1/Slot<System.Char>
struct Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270
{
public:
// System.Int32 System.Linq.Set`1/Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1/Slot::value
Il2CppChar ___value_1;
// System.Int32 System.Linq.Set`1/Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270, ___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;
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Int32>
struct Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC
{
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_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC, ___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_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC, ___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_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC, ___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;
}
};
// System.Linq.Set`1/Slot<System.Int32>
struct Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE
{
public:
// System.Int32 System.Linq.Set`1/Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1/Slot::value
int32_t ___value_1;
// System.Int32 System.Linq.Set`1/Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE, ___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;
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Object>
struct Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319
{
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_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___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_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___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_t1100E8CA172ECADD9BE877E11205FB2D911CD319, ___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((void**)(&___value_2), (void*)value);
}
};
// System.Linq.Set`1/Slot<System.Object>
struct Slot_t2C1999AE6F0443949915B981CCF244872D2684B3
{
public:
// System.Int32 System.Linq.Set`1/Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1/Slot::value
RuntimeObject * ___value_1;
// System.Int32 System.Linq.Set`1/Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t2C1999AE6F0443949915B981CCF244872D2684B3, ___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_value_1() { return static_cast<int32_t>(offsetof(Slot_t2C1999AE6F0443949915B981CCF244872D2684B3, ___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((void**)(&___value_1), (void*)value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_t2C1999AE6F0443949915B981CCF244872D2684B3, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.UInt32>
struct Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB
{
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
uint32_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB, ___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_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB, ___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_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB, ___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;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.UInt64>
struct Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468
{
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
uint64_t ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468, ___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_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468, ___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_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468, ___value_2)); }
inline uint64_t get_value_2() const { return ___value_2; }
inline uint64_t* get_address_of_value_2() { return &___value_2; }
inline void set_value_2(uint64_t value)
{
___value_2 = value;
}
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___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_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___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;
}
};
// TMPro.TMP_TextProcessingStack`1<System.Int32>
struct TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
int32_t ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___itemStack_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_itemStack_0() const { return ___itemStack_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___m_DefaultItem_2)); }
inline int32_t get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline int32_t* get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(int32_t value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<System.Object>
struct TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
RuntimeObject * ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___itemStack_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_itemStack_0() const { return ___itemStack_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___m_DefaultItem_2)); }
inline RuntimeObject * get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline RuntimeObject ** get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(RuntimeObject * value)
{
___m_DefaultItem_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultItem_2), (void*)value);
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<System.Single>
struct TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
float ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___itemStack_0)); }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_itemStack_0() const { return ___itemStack_0; }
inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___m_DefaultItem_2)); }
inline float get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline float* get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(float value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.TMP_ColorGradient>
struct TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
TMP_ColorGradientU5BU5D_t5271ED3FC5D741D05A220867865A1DA1EB04919A* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
TMP_ColorGradient_tC18C01CF1F597BD442D01A29724FE1B32497E461 * ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___itemStack_0)); }
inline TMP_ColorGradientU5BU5D_t5271ED3FC5D741D05A220867865A1DA1EB04919A* get_itemStack_0() const { return ___itemStack_0; }
inline TMP_ColorGradientU5BU5D_t5271ED3FC5D741D05A220867865A1DA1EB04919A** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(TMP_ColorGradientU5BU5D_t5271ED3FC5D741D05A220867865A1DA1EB04919A* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___m_DefaultItem_2)); }
inline TMP_ColorGradient_tC18C01CF1F597BD442D01A29724FE1B32497E461 * get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline TMP_ColorGradient_tC18C01CF1F597BD442D01A29724FE1B32497E461 ** get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(TMP_ColorGradient_tC18C01CF1F597BD442D01A29724FE1B32497E461 * value)
{
___m_DefaultItem_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultItem_2), (void*)value);
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>
struct Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25
{
public:
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::a
int32_t ___a_0;
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::b
int32_t ___b_1;
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::c
int32_t ___c_2;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___a_0)); }
inline int32_t get_a_0() const { return ___a_0; }
inline int32_t* get_address_of_a_0() { return &___a_0; }
inline void set_a_0(int32_t value)
{
___a_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___b_1)); }
inline int32_t get_b_1() const { return ___b_1; }
inline int32_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int32_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25, ___c_2)); }
inline int32_t get_c_2() const { return ___c_2; }
inline int32_t* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(int32_t value)
{
___c_2 = value;
}
};
// UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>
struct Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F
{
public:
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::a
uint16_t ___a_0;
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::b
uint16_t ___b_1;
// T UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1::c
uint16_t ___c_2;
public:
inline static int32_t get_offset_of_a_0() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___a_0)); }
inline uint16_t get_a_0() const { return ___a_0; }
inline uint16_t* get_address_of_a_0() { return &___a_0; }
inline void set_a_0(uint16_t value)
{
___a_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___b_1)); }
inline uint16_t get_b_1() const { return ___b_1; }
inline uint16_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(uint16_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F, ___c_2)); }
inline uint16_t get_c_2() const { return ___c_2; }
inline uint16_t* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(uint16_t value)
{
___c_2 = value;
}
};
// System.Runtime.CompilerServices.TrueReadOnlyCollection`1<System.Object>
struct TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A : public ReadOnlyCollection_1_t921D1901AD35062BE31FAEB0798A4B814F33A3C3
{
public:
public:
};
// System.ValueTuple`2<System.Object,System.Object>
struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403
{
public:
// T1 System.ValueTuple`2::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`2::Item2
RuntimeObject * ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); }
inline RuntimeObject * get_Item2_1() const { return ___Item2_1; }
inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(RuntimeObject * value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
}
};
// System.ValueTuple`3<System.Object,System.Object,System.Object>
struct ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D
{
public:
// T1 System.ValueTuple`3::Item1
RuntimeObject * ___Item1_0;
// T2 System.ValueTuple`3::Item2
RuntimeObject * ___Item2_1;
// T3 System.ValueTuple`3::Item3
RuntimeObject * ___Item3_2;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item1_0)); }
inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(RuntimeObject * value)
{
___Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item2_1)); }
inline RuntimeObject * get_Item2_1() const { return ___Item2_1; }
inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(RuntimeObject * value)
{
___Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
}
inline static int32_t get_offset_of_Item3_2() { return static_cast<int32_t>(offsetof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D, ___Item3_2)); }
inline RuntimeObject * get_Item3_2() const { return ___Item3_2; }
inline RuntimeObject ** get_address_of_Item3_2() { return &___Item3_2; }
inline void set_Item3_2(RuntimeObject * value)
{
___Item3_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Item3_2), (void*)value);
}
};
// UnityEngine.Rendering.BatchVisibility
struct BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE
{
public:
// System.Int32 UnityEngine.Rendering.BatchVisibility::offset
int32_t ___offset_0;
// System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount
int32_t ___instancesCount_1;
// System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount
int32_t ___visibleCount_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE, ___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_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE, ___instancesCount_1)); }
inline int32_t get_instancesCount_1() const { return ___instancesCount_1; }
inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; }
inline void set_instancesCount_1(int32_t value)
{
___instancesCount_1 = value;
}
inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE, ___visibleCount_2)); }
inline int32_t get_visibleCount_2() const { return ___visibleCount_2; }
inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; }
inline void set_visibleCount_2(int32_t value)
{
___visibleCount_2 = value;
}
};
// System.Numerics.BigInteger
struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2
{
public:
// System.Int32 System.Numerics.BigInteger::_sign
int32_t ____sign_0;
// System.UInt32[] System.Numerics.BigInteger::_bits
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____bits_1;
public:
inline static int32_t get_offset_of__sign_0() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2, ____sign_0)); }
inline int32_t get__sign_0() const { return ____sign_0; }
inline int32_t* get_address_of__sign_0() { return &____sign_0; }
inline void set__sign_0(int32_t value)
{
____sign_0 = value;
}
inline static int32_t get_offset_of__bits_1() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2, ____bits_1)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__bits_1() const { return ____bits_1; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__bits_1() { return &____bits_1; }
inline void set__bits_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
____bits_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____bits_1), (void*)value);
}
};
struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields
{
public:
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinInt
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnMinInt_2;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnOneInt
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnOneInt_3;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnZeroInt
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnZeroInt_4;
// System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinusOneInt
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnMinusOneInt_5;
// System.Byte[] System.Numerics.BigInteger::s_success
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_success_6;
public:
inline static int32_t get_offset_of_s_bnMinInt_2() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnMinInt_2)); }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnMinInt_2() const { return ___s_bnMinInt_2; }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnMinInt_2() { return &___s_bnMinInt_2; }
inline void set_s_bnMinInt_2(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
{
___s_bnMinInt_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnMinInt_2))->____bits_1), (void*)NULL);
}
inline static int32_t get_offset_of_s_bnOneInt_3() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnOneInt_3)); }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnOneInt_3() const { return ___s_bnOneInt_3; }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnOneInt_3() { return &___s_bnOneInt_3; }
inline void set_s_bnOneInt_3(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
{
___s_bnOneInt_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnOneInt_3))->____bits_1), (void*)NULL);
}
inline static int32_t get_offset_of_s_bnZeroInt_4() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnZeroInt_4)); }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnZeroInt_4() const { return ___s_bnZeroInt_4; }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnZeroInt_4() { return &___s_bnZeroInt_4; }
inline void set_s_bnZeroInt_4(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
{
___s_bnZeroInt_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnZeroInt_4))->____bits_1), (void*)NULL);
}
inline static int32_t get_offset_of_s_bnMinusOneInt_5() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnMinusOneInt_5)); }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnMinusOneInt_5() const { return ___s_bnMinusOneInt_5; }
inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnMinusOneInt_5() { return &___s_bnMinusOneInt_5; }
inline void set_s_bnMinusOneInt_5(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
{
___s_bnMinusOneInt_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnMinusOneInt_5))->____bits_1), (void*)NULL);
}
inline static int32_t get_offset_of_s_success_6() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_success_6)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_success_6() const { return ___s_success_6; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_success_6() { return &___s_success_6; }
inline void set_s_success_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___s_success_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_success_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Numerics.BigInteger
struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_pinvoke
{
int32_t ____sign_0;
Il2CppSafeArray/*NONE*/* ____bits_1;
};
// Native definition for COM marshalling of System.Numerics.BigInteger
struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_com
{
int32_t ____sign_0;
Il2CppSafeArray/*NONE*/* ____bits_1;
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
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_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___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;
}
};
// System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD, ___m_source_0)); }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
};
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
};
// Mapbox.Map.CanonicalTileId
struct CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398
{
public:
// System.Int32 Mapbox.Map.CanonicalTileId::Z
int32_t ___Z_0;
// System.Int32 Mapbox.Map.CanonicalTileId::X
int32_t ___X_1;
// System.Int32 Mapbox.Map.CanonicalTileId::Y
int32_t ___Y_2;
public:
inline static int32_t get_offset_of_Z_0() { return static_cast<int32_t>(offsetof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398, ___Z_0)); }
inline int32_t get_Z_0() const { return ___Z_0; }
inline int32_t* get_address_of_Z_0() { return &___Z_0; }
inline void set_Z_0(int32_t value)
{
___Z_0 = value;
}
inline static int32_t get_offset_of_X_1() { return static_cast<int32_t>(offsetof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398, ___X_1)); }
inline int32_t get_X_1() const { return ___X_1; }
inline int32_t* get_address_of_X_1() { return &___X_1; }
inline void set_X_1(int32_t value)
{
___X_1 = value;
}
inline static int32_t get_offset_of_Y_2() { return static_cast<int32_t>(offsetof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398, ___Y_2)); }
inline int32_t get_Y_2() const { return ___Y_2; }
inline int32_t* get_address_of_Y_2() { return &___Y_2; }
inline void set_Y_2(int32_t value)
{
___Y_2 = value;
}
};
// System.Char
struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
{
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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___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_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// UnityEngine.Color
struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659
{
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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___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;
}
};
// UnityEngine.Color32
struct Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D
{
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_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___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_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___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_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___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_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___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_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___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;
}
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910
{
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_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___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((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910, ___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((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
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_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7
{
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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90
{
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_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____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((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____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((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
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_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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;
}
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208
{
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_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208, ___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((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603
{
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_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___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;
}
};
// UnityEngine.TextCore.GlyphMetrics
struct GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B
{
public:
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Width
float ___m_Width_0;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_Height
float ___m_Height_1;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingX
float ___m_HorizontalBearingX_2;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalBearingY
float ___m_HorizontalBearingY_3;
// System.Single UnityEngine.TextCore.GlyphMetrics::m_HorizontalAdvance
float ___m_HorizontalAdvance_4;
public:
inline static int32_t get_offset_of_m_Width_0() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_Width_0)); }
inline float get_m_Width_0() const { return ___m_Width_0; }
inline float* get_address_of_m_Width_0() { return &___m_Width_0; }
inline void set_m_Width_0(float value)
{
___m_Width_0 = value;
}
inline static int32_t get_offset_of_m_Height_1() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_Height_1)); }
inline float get_m_Height_1() const { return ___m_Height_1; }
inline float* get_address_of_m_Height_1() { return &___m_Height_1; }
inline void set_m_Height_1(float value)
{
___m_Height_1 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingX_2() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalBearingX_2)); }
inline float get_m_HorizontalBearingX_2() const { return ___m_HorizontalBearingX_2; }
inline float* get_address_of_m_HorizontalBearingX_2() { return &___m_HorizontalBearingX_2; }
inline void set_m_HorizontalBearingX_2(float value)
{
___m_HorizontalBearingX_2 = value;
}
inline static int32_t get_offset_of_m_HorizontalBearingY_3() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalBearingY_3)); }
inline float get_m_HorizontalBearingY_3() const { return ___m_HorizontalBearingY_3; }
inline float* get_address_of_m_HorizontalBearingY_3() { return &___m_HorizontalBearingY_3; }
inline void set_m_HorizontalBearingY_3(float value)
{
___m_HorizontalBearingY_3 = value;
}
inline static int32_t get_offset_of_m_HorizontalAdvance_4() { return static_cast<int32_t>(offsetof(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B, ___m_HorizontalAdvance_4)); }
inline float get_m_HorizontalAdvance_4() const { return ___m_HorizontalAdvance_4; }
inline float* get_address_of_m_HorizontalAdvance_4() { return &___m_HorizontalAdvance_4; }
inline void set_m_HorizontalAdvance_4(float value)
{
___m_HorizontalAdvance_4 = value;
}
};
// UnityEngine.TextCore.GlyphRect
struct GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D
{
public:
// System.Int32 UnityEngine.TextCore.GlyphRect::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Y
int32_t ___m_Y_1;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Width
int32_t ___m_Width_2;
// System.Int32 UnityEngine.TextCore.GlyphRect::m_Height
int32_t ___m_Height_3;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
inline static int32_t get_offset_of_m_Width_2() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Width_2)); }
inline int32_t get_m_Width_2() const { return ___m_Width_2; }
inline int32_t* get_address_of_m_Width_2() { return &___m_Width_2; }
inline void set_m_Width_2(int32_t value)
{
___m_Width_2 = value;
}
inline static int32_t get_offset_of_m_Height_3() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D, ___m_Height_3)); }
inline int32_t get_m_Height_3() const { return ___m_Height_3; }
inline int32_t* get_address_of_m_Height_3() { return &___m_Height_3; }
inline void set_m_Height_3(int32_t value)
{
___m_Height_3 = value;
}
};
struct GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields
{
public:
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.GlyphRect::s_ZeroGlyphRect
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___s_ZeroGlyphRect_4;
public:
inline static int32_t get_offset_of_s_ZeroGlyphRect_4() { return static_cast<int32_t>(offsetof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D_StaticFields, ___s_ZeroGlyphRect_4)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_s_ZeroGlyphRect_4() const { return ___s_ZeroGlyphRect_4; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_s_ZeroGlyphRect_4() { return &___s_ZeroGlyphRect_4; }
inline void set_s_ZeroGlyphRect_4(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___s_ZeroGlyphRect_4 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphValueRecord
struct GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3
{
public:
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XPlacement
float ___m_XPlacement_0;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YPlacement
float ___m_YPlacement_1;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_XAdvance
float ___m_XAdvance_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphValueRecord::m_YAdvance
float ___m_YAdvance_3;
public:
inline static int32_t get_offset_of_m_XPlacement_0() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_XPlacement_0)); }
inline float get_m_XPlacement_0() const { return ___m_XPlacement_0; }
inline float* get_address_of_m_XPlacement_0() { return &___m_XPlacement_0; }
inline void set_m_XPlacement_0(float value)
{
___m_XPlacement_0 = value;
}
inline static int32_t get_offset_of_m_YPlacement_1() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_YPlacement_1)); }
inline float get_m_YPlacement_1() const { return ___m_YPlacement_1; }
inline float* get_address_of_m_YPlacement_1() { return &___m_YPlacement_1; }
inline void set_m_YPlacement_1(float value)
{
___m_YPlacement_1 = value;
}
inline static int32_t get_offset_of_m_XAdvance_2() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_XAdvance_2)); }
inline float get_m_XAdvance_2() const { return ___m_XAdvance_2; }
inline float* get_address_of_m_XAdvance_2() { return &___m_XAdvance_2; }
inline void set_m_XAdvance_2(float value)
{
___m_XAdvance_2 = value;
}
inline static int32_t get_offset_of_m_YAdvance_3() { return static_cast<int32_t>(offsetof(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3, ___m_YAdvance_3)); }
inline float get_m_YAdvance_3() const { return ___m_YAdvance_3; }
inline float* get_address_of_m_YAdvance_3() { return &___m_YAdvance_3; }
inline void set_m_YAdvance_3(float value)
{
___m_YAdvance_3 = value;
}
};
// 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_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____rng_13;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng
RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____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((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__fastRng_14() const { return ____fastRng_14; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__fastRng_14() { return &____fastRng_14; }
inline void set__fastRng_14(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____fastRng_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&____fastRng_14), (void*)value);
}
};
// System.Data.IndexField
struct IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF
{
public:
// System.Data.DataColumn System.Data.IndexField::Column
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ___Column_0;
// System.Boolean System.Data.IndexField::IsDescending
bool ___IsDescending_1;
public:
inline static int32_t get_offset_of_Column_0() { return static_cast<int32_t>(offsetof(IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF, ___Column_0)); }
inline DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * get_Column_0() const { return ___Column_0; }
inline DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 ** get_address_of_Column_0() { return &___Column_0; }
inline void set_Column_0(DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * value)
{
___Column_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Column_0), (void*)value);
}
inline static int32_t get_offset_of_IsDescending_1() { return static_cast<int32_t>(offsetof(IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF, ___IsDescending_1)); }
inline bool get_IsDescending_1() const { return ___IsDescending_1; }
inline bool* get_address_of_IsDescending_1() { return &___IsDescending_1; }
inline void set_IsDescending_1(bool value)
{
___IsDescending_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.IndexField
struct IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF_marshaled_pinvoke
{
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ___Column_0;
int32_t ___IsDescending_1;
};
// Native definition for COM marshalling of System.Data.IndexField
struct IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF_marshaled_com
{
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ___Column_0;
int32_t ___IsDescending_1;
};
// UnityEngine.XR.InputDevice
struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E
{
public:
// System.UInt64 UnityEngine.XR.InputDevice::m_DeviceId
uint64_t ___m_DeviceId_1;
// System.Boolean UnityEngine.XR.InputDevice::m_Initialized
bool ___m_Initialized_2;
public:
inline static int32_t get_offset_of_m_DeviceId_1() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E, ___m_DeviceId_1)); }
inline uint64_t get_m_DeviceId_1() const { return ___m_DeviceId_1; }
inline uint64_t* get_address_of_m_DeviceId_1() { return &___m_DeviceId_1; }
inline void set_m_DeviceId_1(uint64_t value)
{
___m_DeviceId_1 = value;
}
inline static int32_t get_offset_of_m_Initialized_2() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E, ___m_Initialized_2)); }
inline bool get_m_Initialized_2() const { return ___m_Initialized_2; }
inline bool* get_address_of_m_Initialized_2() { return &___m_Initialized_2; }
inline void set_m_Initialized_2(bool value)
{
___m_Initialized_2 = value;
}
};
struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.XR.XRInputSubsystem> UnityEngine.XR.InputDevice::s_InputSubsystemCache
List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * ___s_InputSubsystemCache_0;
public:
inline static int32_t get_offset_of_s_InputSubsystemCache_0() { return static_cast<int32_t>(offsetof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_StaticFields, ___s_InputSubsystemCache_0)); }
inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * get_s_InputSubsystemCache_0() const { return ___s_InputSubsystemCache_0; }
inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 ** get_address_of_s_InputSubsystemCache_0() { return &___s_InputSubsystemCache_0; }
inline void set_s_InputSubsystemCache_0(List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * value)
{
___s_InputSubsystemCache_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InputSubsystemCache_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.InputDevice
struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_marshaled_pinvoke
{
uint64_t ___m_DeviceId_1;
int32_t ___m_Initialized_2;
};
// Native definition for COM marshalling of UnityEngine.XR.InputDevice
struct InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E_marshaled_com
{
uint64_t ___m_DeviceId_1;
int32_t ___m_Initialized_2;
};
// System.Int16
struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A
{
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_tD0F031114106263BB459DA1F099FF9F42691295A, ___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;
}
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___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;
}
};
// System.Int64
struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
{
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_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___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;
}
};
// 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;
}
};
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7
{
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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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((void**)(&___Names_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7_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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C
{
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_t2854F84125B1F420ABB3AA251C75E288EC87568C, ___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((void**)(&___webName_0), (void*)value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
// UnityEngine.Keyframe
struct Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F
{
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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F, ___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;
}
};
// Mapbox.VectorTile.Geometry.LatLng
struct LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221
{
public:
// System.Double Mapbox.VectorTile.Geometry.LatLng::<Lat>k__BackingField
double ___U3CLatU3Ek__BackingField_0;
// System.Double Mapbox.VectorTile.Geometry.LatLng::<Lng>k__BackingField
double ___U3CLngU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CLatU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221, ___U3CLatU3Ek__BackingField_0)); }
inline double get_U3CLatU3Ek__BackingField_0() const { return ___U3CLatU3Ek__BackingField_0; }
inline double* get_address_of_U3CLatU3Ek__BackingField_0() { return &___U3CLatU3Ek__BackingField_0; }
inline void set_U3CLatU3Ek__BackingField_0(double value)
{
___U3CLatU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CLngU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221, ___U3CLngU3Ek__BackingField_1)); }
inline double get_U3CLngU3Ek__BackingField_1() const { return ___U3CLngU3Ek__BackingField_1; }
inline double* get_address_of_U3CLngU3Ek__BackingField_1() { return &___U3CLngU3Ek__BackingField_1; }
inline void set_U3CLngU3Ek__BackingField_1(double value)
{
___U3CLngU3Ek__BackingField_1 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LinearColor
struct LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2
{
public:
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_red
float ___m_red_0;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_green
float ___m_green_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_blue
float ___m_blue_2;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_intensity
float ___m_intensity_3;
public:
inline static int32_t get_offset_of_m_red_0() { return static_cast<int32_t>(offsetof(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2, ___m_red_0)); }
inline float get_m_red_0() const { return ___m_red_0; }
inline float* get_address_of_m_red_0() { return &___m_red_0; }
inline void set_m_red_0(float value)
{
___m_red_0 = value;
}
inline static int32_t get_offset_of_m_green_1() { return static_cast<int32_t>(offsetof(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2, ___m_green_1)); }
inline float get_m_green_1() const { return ___m_green_1; }
inline float* get_address_of_m_green_1() { return &___m_green_1; }
inline void set_m_green_1(float value)
{
___m_green_1 = value;
}
inline static int32_t get_offset_of_m_blue_2() { return static_cast<int32_t>(offsetof(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2, ___m_blue_2)); }
inline float get_m_blue_2() const { return ___m_blue_2; }
inline float* get_address_of_m_blue_2() { return &___m_blue_2; }
inline void set_m_blue_2(float value)
{
___m_blue_2 = value;
}
inline static int32_t get_offset_of_m_intensity_3() { return static_cast<int32_t>(offsetof(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2, ___m_intensity_3)); }
inline float get_m_intensity_3() const { return ___m_intensity_3; }
inline float* get_address_of_m_intensity_3() { return &___m_intensity_3; }
inline void set_m_intensity_3(float value)
{
___m_intensity_3 = value;
}
};
// TMPro.MaterialReference
struct MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B
{
public:
// System.Int32 TMPro.MaterialReference::index
int32_t ___index_0;
// TMPro.TMP_FontAsset TMPro.MaterialReference::fontAsset
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_1;
// TMPro.TMP_SpriteAsset TMPro.MaterialReference::spriteAsset
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_2;
// UnityEngine.Material TMPro.MaterialReference::material
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_3;
// System.Boolean TMPro.MaterialReference::isDefaultMaterial
bool ___isDefaultMaterial_4;
// System.Boolean TMPro.MaterialReference::isFallbackMaterial
bool ___isFallbackMaterial_5;
// UnityEngine.Material TMPro.MaterialReference::fallbackMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___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_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___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_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___fontAsset_1)); }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * get_fontAsset_1() const { return ___fontAsset_1; }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 ** get_address_of_fontAsset_1() { return &___fontAsset_1; }
inline void set_fontAsset_1(TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * value)
{
___fontAsset_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fontAsset_1), (void*)value);
}
inline static int32_t get_offset_of_spriteAsset_2() { return static_cast<int32_t>(offsetof(MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___spriteAsset_2)); }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * get_spriteAsset_2() const { return ___spriteAsset_2; }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 ** get_address_of_spriteAsset_2() { return &___spriteAsset_2; }
inline void set_spriteAsset_2(TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * value)
{
___spriteAsset_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_2), (void*)value);
}
inline static int32_t get_offset_of_material_3() { return static_cast<int32_t>(offsetof(MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___material_3)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_material_3() const { return ___material_3; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_material_3() { return &___material_3; }
inline void set_material_3(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___material_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_3), (void*)value);
}
inline static int32_t get_offset_of_isDefaultMaterial_4() { return static_cast<int32_t>(offsetof(MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___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_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___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_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___fallbackMaterial_6)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_fallbackMaterial_6() const { return ___fallbackMaterial_6; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_fallbackMaterial_6() { return &___fallbackMaterial_6; }
inline void set_fallbackMaterial_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___fallbackMaterial_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fallbackMaterial_6), (void*)value);
}
inline static int32_t get_offset_of_padding_7() { return static_cast<int32_t>(offsetof(MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___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_tB00D33F114B6EF4E7D63B25D053A0111D502951B, ___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;
}
};
// Native definition for P/Invoke marshalling of TMPro.MaterialReference
struct MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B_marshaled_pinvoke
{
int32_t ___index_0;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_1;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_2;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
// Native definition for COM marshalling of TMPro.MaterialReference
struct MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B_marshaled_com
{
int32_t ___index_0;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_1;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_2;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_3;
int32_t ___isDefaultMaterial_4;
int32_t ___isFallbackMaterial_5;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___fallbackMaterial_6;
float ___padding_7;
int32_t ___referenceCount_8;
};
// UnityEngine.XR.MeshId
struct MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767
{
public:
// System.UInt64 UnityEngine.XR.MeshId::m_SubId1
uint64_t ___m_SubId1_1;
// System.UInt64 UnityEngine.XR.MeshId::m_SubId2
uint64_t ___m_SubId2_2;
public:
inline static int32_t get_offset_of_m_SubId1_1() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767, ___m_SubId1_1)); }
inline uint64_t get_m_SubId1_1() const { return ___m_SubId1_1; }
inline uint64_t* get_address_of_m_SubId1_1() { return &___m_SubId1_1; }
inline void set_m_SubId1_1(uint64_t value)
{
___m_SubId1_1 = value;
}
inline static int32_t get_offset_of_m_SubId2_2() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767, ___m_SubId2_2)); }
inline uint64_t get_m_SubId2_2() const { return ___m_SubId2_2; }
inline uint64_t* get_address_of_m_SubId2_2() { return &___m_SubId2_2; }
inline void set_m_SubId2_2(uint64_t value)
{
___m_SubId2_2 = value;
}
};
struct MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767_StaticFields
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshId::s_InvalidId
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___s_InvalidId_0;
public:
inline static int32_t get_offset_of_s_InvalidId_0() { return static_cast<int32_t>(offsetof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767_StaticFields, ___s_InvalidId_0)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_s_InvalidId_0() const { return ___s_InvalidId_0; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_s_InvalidId_0() { return &___s_InvalidId_0; }
inline void set_s_InvalidId_0(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
___s_InvalidId_0 = value;
}
};
// System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA, ____byRef_0)); }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_com
{
int32_t* ____byRef_0;
};
// Mapbox.ProbeExtractorCs.Probe
struct Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF
{
public:
// System.Double Mapbox.ProbeExtractorCs.Probe::Latitude
double ___Latitude_0;
// System.Double Mapbox.ProbeExtractorCs.Probe::Longitude
double ___Longitude_1;
// System.Int64 Mapbox.ProbeExtractorCs.Probe::StartTime
int64_t ___StartTime_2;
// System.Int64 Mapbox.ProbeExtractorCs.Probe::Duration
int64_t ___Duration_3;
// System.Double Mapbox.ProbeExtractorCs.Probe::Speed
double ___Speed_4;
// System.Double Mapbox.ProbeExtractorCs.Probe::Bearing
double ___Bearing_5;
// System.Double Mapbox.ProbeExtractorCs.Probe::Distance
double ___Distance_6;
// System.Boolean Mapbox.ProbeExtractorCs.Probe::IsGood
bool ___IsGood_7;
public:
inline static int32_t get_offset_of_Latitude_0() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Latitude_0)); }
inline double get_Latitude_0() const { return ___Latitude_0; }
inline double* get_address_of_Latitude_0() { return &___Latitude_0; }
inline void set_Latitude_0(double value)
{
___Latitude_0 = value;
}
inline static int32_t get_offset_of_Longitude_1() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Longitude_1)); }
inline double get_Longitude_1() const { return ___Longitude_1; }
inline double* get_address_of_Longitude_1() { return &___Longitude_1; }
inline void set_Longitude_1(double value)
{
___Longitude_1 = value;
}
inline static int32_t get_offset_of_StartTime_2() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___StartTime_2)); }
inline int64_t get_StartTime_2() const { return ___StartTime_2; }
inline int64_t* get_address_of_StartTime_2() { return &___StartTime_2; }
inline void set_StartTime_2(int64_t value)
{
___StartTime_2 = value;
}
inline static int32_t get_offset_of_Duration_3() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Duration_3)); }
inline int64_t get_Duration_3() const { return ___Duration_3; }
inline int64_t* get_address_of_Duration_3() { return &___Duration_3; }
inline void set_Duration_3(int64_t value)
{
___Duration_3 = value;
}
inline static int32_t get_offset_of_Speed_4() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Speed_4)); }
inline double get_Speed_4() const { return ___Speed_4; }
inline double* get_address_of_Speed_4() { return &___Speed_4; }
inline void set_Speed_4(double value)
{
___Speed_4 = value;
}
inline static int32_t get_offset_of_Bearing_5() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Bearing_5)); }
inline double get_Bearing_5() const { return ___Bearing_5; }
inline double* get_address_of_Bearing_5() { return &___Bearing_5; }
inline void set_Bearing_5(double value)
{
___Bearing_5 = value;
}
inline static int32_t get_offset_of_Distance_6() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___Distance_6)); }
inline double get_Distance_6() const { return ___Distance_6; }
inline double* get_address_of_Distance_6() { return &___Distance_6; }
inline void set_Distance_6(double value)
{
___Distance_6 = value;
}
inline static int32_t get_offset_of_IsGood_7() { return static_cast<int32_t>(offsetof(Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF, ___IsGood_7)); }
inline bool get_IsGood_7() const { return ___IsGood_7; }
inline bool* get_address_of_IsGood_7() { return &___IsGood_7; }
inline void set_IsGood_7(bool value)
{
___IsGood_7 = value;
}
};
// Native definition for P/Invoke marshalling of Mapbox.ProbeExtractorCs.Probe
struct Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF_marshaled_pinvoke
{
double ___Latitude_0;
double ___Longitude_1;
int64_t ___StartTime_2;
int64_t ___Duration_3;
double ___Speed_4;
double ___Bearing_5;
double ___Distance_6;
int32_t ___IsGood_7;
};
// Native definition for COM marshalling of Mapbox.ProbeExtractorCs.Probe
struct Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF_marshaled_com
{
double ___Latitude_0;
double ___Longitude_1;
int64_t ___StartTime_2;
int64_t ___Duration_3;
double ___Speed_4;
double ___Bearing_5;
double ___Distance_6;
int32_t ___IsGood_7;
};
// UnityEngine.Quaternion
struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4
{
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_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___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_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___identityQuaternion_4 = value;
}
};
// System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB
{
public:
// System.Xml.Schema.BitSet System.Xml.Schema.RangePositionInfo::curpos
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos_0;
// System.Decimal[] System.Xml.Schema.RangePositionInfo::rangeCounters
DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* ___rangeCounters_1;
public:
inline static int32_t get_offset_of_curpos_0() { return static_cast<int32_t>(offsetof(RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB, ___curpos_0)); }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_curpos_0() const { return ___curpos_0; }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_curpos_0() { return &___curpos_0; }
inline void set_curpos_0(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value)
{
___curpos_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___curpos_0), (void*)value);
}
inline static int32_t get_offset_of_rangeCounters_1() { return static_cast<int32_t>(offsetof(RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB, ___rangeCounters_1)); }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* get_rangeCounters_1() const { return ___rangeCounters_1; }
inline DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA** get_address_of_rangeCounters_1() { return &___rangeCounters_1; }
inline void set_rangeCounters_1(DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* value)
{
___rangeCounters_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rangeCounters_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB_marshaled_pinvoke
{
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos_0;
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * ___rangeCounters_1;
};
// Native definition for COM marshalling of System.Xml.Schema.RangePositionInfo
struct RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB_marshaled_com
{
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___curpos_0;
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * ___rangeCounters_1;
};
// System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11
{
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_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____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((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11, ____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;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.SByte
struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B
{
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_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___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;
}
};
// UnityEngine.XR.ARSubsystems.SerializableGuid
struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidLow
uint64_t ___m_GuidLow_1;
// System.UInt64 UnityEngine.XR.ARSubsystems.SerializableGuid::m_GuidHigh
uint64_t ___m_GuidHigh_2;
public:
inline static int32_t get_offset_of_m_GuidLow_1() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidLow_1)); }
inline uint64_t get_m_GuidLow_1() const { return ___m_GuidLow_1; }
inline uint64_t* get_address_of_m_GuidLow_1() { return &___m_GuidLow_1; }
inline void set_m_GuidLow_1(uint64_t value)
{
___m_GuidLow_1 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_2() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC, ___m_GuidHigh_2)); }
inline uint64_t get_m_GuidHigh_2() const { return ___m_GuidHigh_2; }
inline uint64_t* get_address_of_m_GuidHigh_2() { return &___m_GuidHigh_2; }
inline void set_m_GuidHigh_2(uint64_t value)
{
___m_GuidHigh_2 = value;
}
};
struct SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.SerializableGuid::k_Empty
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___k_Empty_0;
public:
inline static int32_t get_offset_of_k_Empty_0() { return static_cast<int32_t>(offsetof(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC_StaticFields, ___k_Empty_0)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_k_Empty_0() const { return ___k_Empty_0; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_k_Empty_0() { return &___k_Empty_0; }
inline void set_k_Empty_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___k_Empty_0 = value;
}
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___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;
}
};
// UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_HighlightedSprite_0)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_PressedSprite_1)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_SelectedSprite_2)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E, ___m_DisabledSprite_3)); }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_pinvoke
{
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E_marshaled_com
{
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_HighlightedSprite_0;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_PressedSprite_1;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_SelectedSprite_2;
Sprite_t5B10B1178EC2E6F53D33FFD77557F31C08A51ED9 * ___m_DisabledSprite_3;
};
// System.Data.SqlTypes.SqlBinary
struct SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B
{
public:
// System.Byte[] System.Data.SqlTypes.SqlBinary::_value
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____value_0;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B, ____value_0)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__value_0() const { return ____value_0; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
};
struct SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B_StaticFields
{
public:
// System.Data.SqlTypes.SqlBinary System.Data.SqlTypes.SqlBinary::Null
SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B_StaticFields, ___Null_1)); }
inline SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B get_Null_1() const { return ___Null_1; }
inline SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B * get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Null_1))->____value_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlBinary
struct SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ____value_0;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlBinary
struct SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B_marshaled_com
{
Il2CppSafeArray/*NONE*/* ____value_0;
};
// System.Data.SqlTypes.SqlBoolean
struct SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3
{
public:
// System.Byte System.Data.SqlTypes.SqlBoolean::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3, ___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;
}
};
struct SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields
{
public:
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::True
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 ___True_1;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::False
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 ___False_2;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::Null
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 ___Null_3;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::Zero
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 ___Zero_4;
// System.Data.SqlTypes.SqlBoolean System.Data.SqlTypes.SqlBoolean::One
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 ___One_5;
public:
inline static int32_t get_offset_of_True_1() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields, ___True_1)); }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 get_True_1() const { return ___True_1; }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 * get_address_of_True_1() { return &___True_1; }
inline void set_True_1(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 value)
{
___True_1 = value;
}
inline static int32_t get_offset_of_False_2() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields, ___False_2)); }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 get_False_2() const { return ___False_2; }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 * get_address_of_False_2() { return &___False_2; }
inline void set_False_2(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 value)
{
___False_2 = value;
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields, ___Null_3)); }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 get_Null_3() const { return ___Null_3; }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 * get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 value)
{
___Null_3 = value;
}
inline static int32_t get_offset_of_Zero_4() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields, ___Zero_4)); }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 get_Zero_4() const { return ___Zero_4; }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 * get_address_of_Zero_4() { return &___Zero_4; }
inline void set_Zero_4(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 value)
{
___Zero_4 = value;
}
inline static int32_t get_offset_of_One_5() { return static_cast<int32_t>(offsetof(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3_StaticFields, ___One_5)); }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 get_One_5() const { return ___One_5; }
inline SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 * get_address_of_One_5() { return &___One_5; }
inline void set_One_5(SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 value)
{
___One_5 = value;
}
};
// System.Data.SqlTypes.SqlByte
struct SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41
{
public:
// System.Boolean System.Data.SqlTypes.SqlByte::m_fNotNull
bool ___m_fNotNull_0;
// System.Byte System.Data.SqlTypes.SqlByte::m_value
uint8_t ___m_value_1;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41, ___m_value_1)); }
inline uint8_t get_m_value_1() const { return ___m_value_1; }
inline uint8_t* get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(uint8_t value)
{
___m_value_1 = value;
}
};
struct SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields
{
public:
// System.Int32 System.Data.SqlTypes.SqlByte::s_iBitNotByteMax
int32_t ___s_iBitNotByteMax_2;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::Null
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 ___Null_3;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::Zero
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 ___Zero_4;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::MinValue
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 ___MinValue_5;
// System.Data.SqlTypes.SqlByte System.Data.SqlTypes.SqlByte::MaxValue
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 ___MaxValue_6;
public:
inline static int32_t get_offset_of_s_iBitNotByteMax_2() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields, ___s_iBitNotByteMax_2)); }
inline int32_t get_s_iBitNotByteMax_2() const { return ___s_iBitNotByteMax_2; }
inline int32_t* get_address_of_s_iBitNotByteMax_2() { return &___s_iBitNotByteMax_2; }
inline void set_s_iBitNotByteMax_2(int32_t value)
{
___s_iBitNotByteMax_2 = value;
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields, ___Null_3)); }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 get_Null_3() const { return ___Null_3; }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 * get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 value)
{
___Null_3 = value;
}
inline static int32_t get_offset_of_Zero_4() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields, ___Zero_4)); }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 get_Zero_4() const { return ___Zero_4; }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 * get_address_of_Zero_4() { return &___Zero_4; }
inline void set_Zero_4(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 value)
{
___Zero_4 = value;
}
inline static int32_t get_offset_of_MinValue_5() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields, ___MinValue_5)); }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 get_MinValue_5() const { return ___MinValue_5; }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 * get_address_of_MinValue_5() { return &___MinValue_5; }
inline void set_MinValue_5(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 value)
{
___MinValue_5 = value;
}
inline static int32_t get_offset_of_MaxValue_6() { return static_cast<int32_t>(offsetof(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_StaticFields, ___MaxValue_6)); }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 get_MaxValue_6() const { return ___MaxValue_6; }
inline SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 * get_address_of_MaxValue_6() { return &___MaxValue_6; }
inline void set_MaxValue_6(SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 value)
{
___MaxValue_6 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlByte
struct SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
uint8_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlByte
struct SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41_marshaled_com
{
int32_t ___m_fNotNull_0;
uint8_t ___m_value_1;
};
// System.Data.SqlTypes.SqlDecimal
struct SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B
{
public:
// System.Byte System.Data.SqlTypes.SqlDecimal::_bStatus
uint8_t ____bStatus_0;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bLen
uint8_t ____bLen_1;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bPrec
uint8_t ____bPrec_2;
// System.Byte System.Data.SqlTypes.SqlDecimal::_bScale
uint8_t ____bScale_3;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data1
uint32_t ____data1_4;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data2
uint32_t ____data2_5;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data3
uint32_t ____data3_6;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::_data4
uint32_t ____data4_7;
public:
inline static int32_t get_offset_of__bStatus_0() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____bStatus_0)); }
inline uint8_t get__bStatus_0() const { return ____bStatus_0; }
inline uint8_t* get_address_of__bStatus_0() { return &____bStatus_0; }
inline void set__bStatus_0(uint8_t value)
{
____bStatus_0 = value;
}
inline static int32_t get_offset_of__bLen_1() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____bLen_1)); }
inline uint8_t get__bLen_1() const { return ____bLen_1; }
inline uint8_t* get_address_of__bLen_1() { return &____bLen_1; }
inline void set__bLen_1(uint8_t value)
{
____bLen_1 = value;
}
inline static int32_t get_offset_of__bPrec_2() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____bPrec_2)); }
inline uint8_t get__bPrec_2() const { return ____bPrec_2; }
inline uint8_t* get_address_of__bPrec_2() { return &____bPrec_2; }
inline void set__bPrec_2(uint8_t value)
{
____bPrec_2 = value;
}
inline static int32_t get_offset_of__bScale_3() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____bScale_3)); }
inline uint8_t get__bScale_3() const { return ____bScale_3; }
inline uint8_t* get_address_of__bScale_3() { return &____bScale_3; }
inline void set__bScale_3(uint8_t value)
{
____bScale_3 = value;
}
inline static int32_t get_offset_of__data1_4() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____data1_4)); }
inline uint32_t get__data1_4() const { return ____data1_4; }
inline uint32_t* get_address_of__data1_4() { return &____data1_4; }
inline void set__data1_4(uint32_t value)
{
____data1_4 = value;
}
inline static int32_t get_offset_of__data2_5() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____data2_5)); }
inline uint32_t get__data2_5() const { return ____data2_5; }
inline uint32_t* get_address_of__data2_5() { return &____data2_5; }
inline void set__data2_5(uint32_t value)
{
____data2_5 = value;
}
inline static int32_t get_offset_of__data3_6() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____data3_6)); }
inline uint32_t get__data3_6() const { return ____data3_6; }
inline uint32_t* get_address_of__data3_6() { return &____data3_6; }
inline void set__data3_6(uint32_t value)
{
____data3_6 = value;
}
inline static int32_t get_offset_of__data4_7() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B, ____data4_7)); }
inline uint32_t get__data4_7() const { return ____data4_7; }
inline uint32_t* get_address_of__data4_7() { return &____data4_7; }
inline void set__data4_7(uint32_t value)
{
____data4_7 = value;
}
};
struct SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields
{
public:
// System.Byte System.Data.SqlTypes.SqlDecimal::s_NUMERIC_MAX_PRECISION
uint8_t ___s_NUMERIC_MAX_PRECISION_8;
// System.Byte System.Data.SqlTypes.SqlDecimal::MaxPrecision
uint8_t ___MaxPrecision_9;
// System.Byte System.Data.SqlTypes.SqlDecimal::MaxScale
uint8_t ___MaxScale_10;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNullMask
uint8_t ___s_bNullMask_11;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bIsNull
uint8_t ___s_bIsNull_12;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNotNull
uint8_t ___s_bNotNull_13;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bReverseNullMask
uint8_t ___s_bReverseNullMask_14;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bSignMask
uint8_t ___s_bSignMask_15;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bPositive
uint8_t ___s_bPositive_16;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bNegative
uint8_t ___s_bNegative_17;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_bReverseSignMask
uint8_t ___s_bReverseSignMask_18;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_uiZero
uint32_t ___s_uiZero_19;
// System.Int32 System.Data.SqlTypes.SqlDecimal::s_cNumeMax
int32_t ___s_cNumeMax_20;
// System.Int64 System.Data.SqlTypes.SqlDecimal::s_lInt32Base
int64_t ___s_lInt32Base_21;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_ulInt32Base
uint64_t ___s_ulInt32Base_22;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_ulInt32BaseForMod
uint64_t ___s_ulInt32BaseForMod_23;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_llMax
uint64_t ___s_llMax_24;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulBase10
uint32_t ___s_ulBase10_25;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE
double ___s_DUINT_BASE_26;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE2
double ___s_DUINT_BASE2_27;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DUINT_BASE3
double ___s_DUINT_BASE3_28;
// System.Double System.Data.SqlTypes.SqlDecimal::s_DMAX_NUME
double ___s_DMAX_NUME_29;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_DBL_DIG
uint32_t ___s_DBL_DIG_30;
// System.Byte System.Data.SqlTypes.SqlDecimal::s_cNumeDivScaleMin
uint8_t ___s_cNumeDivScaleMin_31;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_rgulShiftBase
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_rgulShiftBase_32;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersLo
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_decimalHelpersLo_33;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersMid
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_decimalHelpersMid_34;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersHi
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_decimalHelpersHi_35;
// System.UInt32[] System.Data.SqlTypes.SqlDecimal::s_decimalHelpersHiHi
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___s_decimalHelpersHiHi_36;
// System.Byte[] System.Data.SqlTypes.SqlDecimal::s_rgCLenFromPrec
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_rgCLenFromPrec_37;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT1
uint32_t ___s_ulT1_38;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT2
uint32_t ___s_ulT2_39;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT3
uint32_t ___s_ulT3_40;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT4
uint32_t ___s_ulT4_41;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT5
uint32_t ___s_ulT5_42;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT6
uint32_t ___s_ulT6_43;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT7
uint32_t ___s_ulT7_44;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT8
uint32_t ___s_ulT8_45;
// System.UInt32 System.Data.SqlTypes.SqlDecimal::s_ulT9
uint32_t ___s_ulT9_46;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT10
uint64_t ___s_dwlT10_47;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT11
uint64_t ___s_dwlT11_48;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT12
uint64_t ___s_dwlT12_49;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT13
uint64_t ___s_dwlT13_50;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT14
uint64_t ___s_dwlT14_51;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT15
uint64_t ___s_dwlT15_52;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT16
uint64_t ___s_dwlT16_53;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT17
uint64_t ___s_dwlT17_54;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT18
uint64_t ___s_dwlT18_55;
// System.UInt64 System.Data.SqlTypes.SqlDecimal::s_dwlT19
uint64_t ___s_dwlT19_56;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::Null
SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B ___Null_57;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::MinValue
SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B ___MinValue_58;
// System.Data.SqlTypes.SqlDecimal System.Data.SqlTypes.SqlDecimal::MaxValue
SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B ___MaxValue_59;
public:
inline static int32_t get_offset_of_s_NUMERIC_MAX_PRECISION_8() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_NUMERIC_MAX_PRECISION_8)); }
inline uint8_t get_s_NUMERIC_MAX_PRECISION_8() const { return ___s_NUMERIC_MAX_PRECISION_8; }
inline uint8_t* get_address_of_s_NUMERIC_MAX_PRECISION_8() { return &___s_NUMERIC_MAX_PRECISION_8; }
inline void set_s_NUMERIC_MAX_PRECISION_8(uint8_t value)
{
___s_NUMERIC_MAX_PRECISION_8 = value;
}
inline static int32_t get_offset_of_MaxPrecision_9() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___MaxPrecision_9)); }
inline uint8_t get_MaxPrecision_9() const { return ___MaxPrecision_9; }
inline uint8_t* get_address_of_MaxPrecision_9() { return &___MaxPrecision_9; }
inline void set_MaxPrecision_9(uint8_t value)
{
___MaxPrecision_9 = value;
}
inline static int32_t get_offset_of_MaxScale_10() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___MaxScale_10)); }
inline uint8_t get_MaxScale_10() const { return ___MaxScale_10; }
inline uint8_t* get_address_of_MaxScale_10() { return &___MaxScale_10; }
inline void set_MaxScale_10(uint8_t value)
{
___MaxScale_10 = value;
}
inline static int32_t get_offset_of_s_bNullMask_11() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bNullMask_11)); }
inline uint8_t get_s_bNullMask_11() const { return ___s_bNullMask_11; }
inline uint8_t* get_address_of_s_bNullMask_11() { return &___s_bNullMask_11; }
inline void set_s_bNullMask_11(uint8_t value)
{
___s_bNullMask_11 = value;
}
inline static int32_t get_offset_of_s_bIsNull_12() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bIsNull_12)); }
inline uint8_t get_s_bIsNull_12() const { return ___s_bIsNull_12; }
inline uint8_t* get_address_of_s_bIsNull_12() { return &___s_bIsNull_12; }
inline void set_s_bIsNull_12(uint8_t value)
{
___s_bIsNull_12 = value;
}
inline static int32_t get_offset_of_s_bNotNull_13() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bNotNull_13)); }
inline uint8_t get_s_bNotNull_13() const { return ___s_bNotNull_13; }
inline uint8_t* get_address_of_s_bNotNull_13() { return &___s_bNotNull_13; }
inline void set_s_bNotNull_13(uint8_t value)
{
___s_bNotNull_13 = value;
}
inline static int32_t get_offset_of_s_bReverseNullMask_14() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bReverseNullMask_14)); }
inline uint8_t get_s_bReverseNullMask_14() const { return ___s_bReverseNullMask_14; }
inline uint8_t* get_address_of_s_bReverseNullMask_14() { return &___s_bReverseNullMask_14; }
inline void set_s_bReverseNullMask_14(uint8_t value)
{
___s_bReverseNullMask_14 = value;
}
inline static int32_t get_offset_of_s_bSignMask_15() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bSignMask_15)); }
inline uint8_t get_s_bSignMask_15() const { return ___s_bSignMask_15; }
inline uint8_t* get_address_of_s_bSignMask_15() { return &___s_bSignMask_15; }
inline void set_s_bSignMask_15(uint8_t value)
{
___s_bSignMask_15 = value;
}
inline static int32_t get_offset_of_s_bPositive_16() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bPositive_16)); }
inline uint8_t get_s_bPositive_16() const { return ___s_bPositive_16; }
inline uint8_t* get_address_of_s_bPositive_16() { return &___s_bPositive_16; }
inline void set_s_bPositive_16(uint8_t value)
{
___s_bPositive_16 = value;
}
inline static int32_t get_offset_of_s_bNegative_17() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bNegative_17)); }
inline uint8_t get_s_bNegative_17() const { return ___s_bNegative_17; }
inline uint8_t* get_address_of_s_bNegative_17() { return &___s_bNegative_17; }
inline void set_s_bNegative_17(uint8_t value)
{
___s_bNegative_17 = value;
}
inline static int32_t get_offset_of_s_bReverseSignMask_18() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_bReverseSignMask_18)); }
inline uint8_t get_s_bReverseSignMask_18() const { return ___s_bReverseSignMask_18; }
inline uint8_t* get_address_of_s_bReverseSignMask_18() { return &___s_bReverseSignMask_18; }
inline void set_s_bReverseSignMask_18(uint8_t value)
{
___s_bReverseSignMask_18 = value;
}
inline static int32_t get_offset_of_s_uiZero_19() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_uiZero_19)); }
inline uint32_t get_s_uiZero_19() const { return ___s_uiZero_19; }
inline uint32_t* get_address_of_s_uiZero_19() { return &___s_uiZero_19; }
inline void set_s_uiZero_19(uint32_t value)
{
___s_uiZero_19 = value;
}
inline static int32_t get_offset_of_s_cNumeMax_20() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_cNumeMax_20)); }
inline int32_t get_s_cNumeMax_20() const { return ___s_cNumeMax_20; }
inline int32_t* get_address_of_s_cNumeMax_20() { return &___s_cNumeMax_20; }
inline void set_s_cNumeMax_20(int32_t value)
{
___s_cNumeMax_20 = value;
}
inline static int32_t get_offset_of_s_lInt32Base_21() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_lInt32Base_21)); }
inline int64_t get_s_lInt32Base_21() const { return ___s_lInt32Base_21; }
inline int64_t* get_address_of_s_lInt32Base_21() { return &___s_lInt32Base_21; }
inline void set_s_lInt32Base_21(int64_t value)
{
___s_lInt32Base_21 = value;
}
inline static int32_t get_offset_of_s_ulInt32Base_22() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulInt32Base_22)); }
inline uint64_t get_s_ulInt32Base_22() const { return ___s_ulInt32Base_22; }
inline uint64_t* get_address_of_s_ulInt32Base_22() { return &___s_ulInt32Base_22; }
inline void set_s_ulInt32Base_22(uint64_t value)
{
___s_ulInt32Base_22 = value;
}
inline static int32_t get_offset_of_s_ulInt32BaseForMod_23() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulInt32BaseForMod_23)); }
inline uint64_t get_s_ulInt32BaseForMod_23() const { return ___s_ulInt32BaseForMod_23; }
inline uint64_t* get_address_of_s_ulInt32BaseForMod_23() { return &___s_ulInt32BaseForMod_23; }
inline void set_s_ulInt32BaseForMod_23(uint64_t value)
{
___s_ulInt32BaseForMod_23 = value;
}
inline static int32_t get_offset_of_s_llMax_24() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_llMax_24)); }
inline uint64_t get_s_llMax_24() const { return ___s_llMax_24; }
inline uint64_t* get_address_of_s_llMax_24() { return &___s_llMax_24; }
inline void set_s_llMax_24(uint64_t value)
{
___s_llMax_24 = value;
}
inline static int32_t get_offset_of_s_ulBase10_25() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulBase10_25)); }
inline uint32_t get_s_ulBase10_25() const { return ___s_ulBase10_25; }
inline uint32_t* get_address_of_s_ulBase10_25() { return &___s_ulBase10_25; }
inline void set_s_ulBase10_25(uint32_t value)
{
___s_ulBase10_25 = value;
}
inline static int32_t get_offset_of_s_DUINT_BASE_26() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_DUINT_BASE_26)); }
inline double get_s_DUINT_BASE_26() const { return ___s_DUINT_BASE_26; }
inline double* get_address_of_s_DUINT_BASE_26() { return &___s_DUINT_BASE_26; }
inline void set_s_DUINT_BASE_26(double value)
{
___s_DUINT_BASE_26 = value;
}
inline static int32_t get_offset_of_s_DUINT_BASE2_27() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_DUINT_BASE2_27)); }
inline double get_s_DUINT_BASE2_27() const { return ___s_DUINT_BASE2_27; }
inline double* get_address_of_s_DUINT_BASE2_27() { return &___s_DUINT_BASE2_27; }
inline void set_s_DUINT_BASE2_27(double value)
{
___s_DUINT_BASE2_27 = value;
}
inline static int32_t get_offset_of_s_DUINT_BASE3_28() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_DUINT_BASE3_28)); }
inline double get_s_DUINT_BASE3_28() const { return ___s_DUINT_BASE3_28; }
inline double* get_address_of_s_DUINT_BASE3_28() { return &___s_DUINT_BASE3_28; }
inline void set_s_DUINT_BASE3_28(double value)
{
___s_DUINT_BASE3_28 = value;
}
inline static int32_t get_offset_of_s_DMAX_NUME_29() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_DMAX_NUME_29)); }
inline double get_s_DMAX_NUME_29() const { return ___s_DMAX_NUME_29; }
inline double* get_address_of_s_DMAX_NUME_29() { return &___s_DMAX_NUME_29; }
inline void set_s_DMAX_NUME_29(double value)
{
___s_DMAX_NUME_29 = value;
}
inline static int32_t get_offset_of_s_DBL_DIG_30() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_DBL_DIG_30)); }
inline uint32_t get_s_DBL_DIG_30() const { return ___s_DBL_DIG_30; }
inline uint32_t* get_address_of_s_DBL_DIG_30() { return &___s_DBL_DIG_30; }
inline void set_s_DBL_DIG_30(uint32_t value)
{
___s_DBL_DIG_30 = value;
}
inline static int32_t get_offset_of_s_cNumeDivScaleMin_31() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_cNumeDivScaleMin_31)); }
inline uint8_t get_s_cNumeDivScaleMin_31() const { return ___s_cNumeDivScaleMin_31; }
inline uint8_t* get_address_of_s_cNumeDivScaleMin_31() { return &___s_cNumeDivScaleMin_31; }
inline void set_s_cNumeDivScaleMin_31(uint8_t value)
{
___s_cNumeDivScaleMin_31 = value;
}
inline static int32_t get_offset_of_s_rgulShiftBase_32() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_rgulShiftBase_32)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_rgulShiftBase_32() const { return ___s_rgulShiftBase_32; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_rgulShiftBase_32() { return &___s_rgulShiftBase_32; }
inline void set_s_rgulShiftBase_32(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_rgulShiftBase_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_rgulShiftBase_32), (void*)value);
}
inline static int32_t get_offset_of_s_decimalHelpersLo_33() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_decimalHelpersLo_33)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_decimalHelpersLo_33() const { return ___s_decimalHelpersLo_33; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_decimalHelpersLo_33() { return &___s_decimalHelpersLo_33; }
inline void set_s_decimalHelpersLo_33(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_decimalHelpersLo_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_decimalHelpersLo_33), (void*)value);
}
inline static int32_t get_offset_of_s_decimalHelpersMid_34() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_decimalHelpersMid_34)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_decimalHelpersMid_34() const { return ___s_decimalHelpersMid_34; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_decimalHelpersMid_34() { return &___s_decimalHelpersMid_34; }
inline void set_s_decimalHelpersMid_34(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_decimalHelpersMid_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_decimalHelpersMid_34), (void*)value);
}
inline static int32_t get_offset_of_s_decimalHelpersHi_35() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_decimalHelpersHi_35)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_decimalHelpersHi_35() const { return ___s_decimalHelpersHi_35; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_decimalHelpersHi_35() { return &___s_decimalHelpersHi_35; }
inline void set_s_decimalHelpersHi_35(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_decimalHelpersHi_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_decimalHelpersHi_35), (void*)value);
}
inline static int32_t get_offset_of_s_decimalHelpersHiHi_36() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_decimalHelpersHiHi_36)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_s_decimalHelpersHiHi_36() const { return ___s_decimalHelpersHiHi_36; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_s_decimalHelpersHiHi_36() { return &___s_decimalHelpersHiHi_36; }
inline void set_s_decimalHelpersHiHi_36(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
{
___s_decimalHelpersHiHi_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_decimalHelpersHiHi_36), (void*)value);
}
inline static int32_t get_offset_of_s_rgCLenFromPrec_37() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_rgCLenFromPrec_37)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_rgCLenFromPrec_37() const { return ___s_rgCLenFromPrec_37; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_rgCLenFromPrec_37() { return &___s_rgCLenFromPrec_37; }
inline void set_s_rgCLenFromPrec_37(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___s_rgCLenFromPrec_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_rgCLenFromPrec_37), (void*)value);
}
inline static int32_t get_offset_of_s_ulT1_38() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT1_38)); }
inline uint32_t get_s_ulT1_38() const { return ___s_ulT1_38; }
inline uint32_t* get_address_of_s_ulT1_38() { return &___s_ulT1_38; }
inline void set_s_ulT1_38(uint32_t value)
{
___s_ulT1_38 = value;
}
inline static int32_t get_offset_of_s_ulT2_39() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT2_39)); }
inline uint32_t get_s_ulT2_39() const { return ___s_ulT2_39; }
inline uint32_t* get_address_of_s_ulT2_39() { return &___s_ulT2_39; }
inline void set_s_ulT2_39(uint32_t value)
{
___s_ulT2_39 = value;
}
inline static int32_t get_offset_of_s_ulT3_40() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT3_40)); }
inline uint32_t get_s_ulT3_40() const { return ___s_ulT3_40; }
inline uint32_t* get_address_of_s_ulT3_40() { return &___s_ulT3_40; }
inline void set_s_ulT3_40(uint32_t value)
{
___s_ulT3_40 = value;
}
inline static int32_t get_offset_of_s_ulT4_41() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT4_41)); }
inline uint32_t get_s_ulT4_41() const { return ___s_ulT4_41; }
inline uint32_t* get_address_of_s_ulT4_41() { return &___s_ulT4_41; }
inline void set_s_ulT4_41(uint32_t value)
{
___s_ulT4_41 = value;
}
inline static int32_t get_offset_of_s_ulT5_42() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT5_42)); }
inline uint32_t get_s_ulT5_42() const { return ___s_ulT5_42; }
inline uint32_t* get_address_of_s_ulT5_42() { return &___s_ulT5_42; }
inline void set_s_ulT5_42(uint32_t value)
{
___s_ulT5_42 = value;
}
inline static int32_t get_offset_of_s_ulT6_43() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT6_43)); }
inline uint32_t get_s_ulT6_43() const { return ___s_ulT6_43; }
inline uint32_t* get_address_of_s_ulT6_43() { return &___s_ulT6_43; }
inline void set_s_ulT6_43(uint32_t value)
{
___s_ulT6_43 = value;
}
inline static int32_t get_offset_of_s_ulT7_44() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT7_44)); }
inline uint32_t get_s_ulT7_44() const { return ___s_ulT7_44; }
inline uint32_t* get_address_of_s_ulT7_44() { return &___s_ulT7_44; }
inline void set_s_ulT7_44(uint32_t value)
{
___s_ulT7_44 = value;
}
inline static int32_t get_offset_of_s_ulT8_45() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT8_45)); }
inline uint32_t get_s_ulT8_45() const { return ___s_ulT8_45; }
inline uint32_t* get_address_of_s_ulT8_45() { return &___s_ulT8_45; }
inline void set_s_ulT8_45(uint32_t value)
{
___s_ulT8_45 = value;
}
inline static int32_t get_offset_of_s_ulT9_46() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_ulT9_46)); }
inline uint32_t get_s_ulT9_46() const { return ___s_ulT9_46; }
inline uint32_t* get_address_of_s_ulT9_46() { return &___s_ulT9_46; }
inline void set_s_ulT9_46(uint32_t value)
{
___s_ulT9_46 = value;
}
inline static int32_t get_offset_of_s_dwlT10_47() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT10_47)); }
inline uint64_t get_s_dwlT10_47() const { return ___s_dwlT10_47; }
inline uint64_t* get_address_of_s_dwlT10_47() { return &___s_dwlT10_47; }
inline void set_s_dwlT10_47(uint64_t value)
{
___s_dwlT10_47 = value;
}
inline static int32_t get_offset_of_s_dwlT11_48() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT11_48)); }
inline uint64_t get_s_dwlT11_48() const { return ___s_dwlT11_48; }
inline uint64_t* get_address_of_s_dwlT11_48() { return &___s_dwlT11_48; }
inline void set_s_dwlT11_48(uint64_t value)
{
___s_dwlT11_48 = value;
}
inline static int32_t get_offset_of_s_dwlT12_49() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT12_49)); }
inline uint64_t get_s_dwlT12_49() const { return ___s_dwlT12_49; }
inline uint64_t* get_address_of_s_dwlT12_49() { return &___s_dwlT12_49; }
inline void set_s_dwlT12_49(uint64_t value)
{
___s_dwlT12_49 = value;
}
inline static int32_t get_offset_of_s_dwlT13_50() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT13_50)); }
inline uint64_t get_s_dwlT13_50() const { return ___s_dwlT13_50; }
inline uint64_t* get_address_of_s_dwlT13_50() { return &___s_dwlT13_50; }
inline void set_s_dwlT13_50(uint64_t value)
{
___s_dwlT13_50 = value;
}
inline static int32_t get_offset_of_s_dwlT14_51() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT14_51)); }
inline uint64_t get_s_dwlT14_51() const { return ___s_dwlT14_51; }
inline uint64_t* get_address_of_s_dwlT14_51() { return &___s_dwlT14_51; }
inline void set_s_dwlT14_51(uint64_t value)
{
___s_dwlT14_51 = value;
}
inline static int32_t get_offset_of_s_dwlT15_52() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT15_52)); }
inline uint64_t get_s_dwlT15_52() const { return ___s_dwlT15_52; }
inline uint64_t* get_address_of_s_dwlT15_52() { return &___s_dwlT15_52; }
inline void set_s_dwlT15_52(uint64_t value)
{
___s_dwlT15_52 = value;
}
inline static int32_t get_offset_of_s_dwlT16_53() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT16_53)); }
inline uint64_t get_s_dwlT16_53() const { return ___s_dwlT16_53; }
inline uint64_t* get_address_of_s_dwlT16_53() { return &___s_dwlT16_53; }
inline void set_s_dwlT16_53(uint64_t value)
{
___s_dwlT16_53 = value;
}
inline static int32_t get_offset_of_s_dwlT17_54() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT17_54)); }
inline uint64_t get_s_dwlT17_54() const { return ___s_dwlT17_54; }
inline uint64_t* get_address_of_s_dwlT17_54() { return &___s_dwlT17_54; }
inline void set_s_dwlT17_54(uint64_t value)
{
___s_dwlT17_54 = value;
}
inline static int32_t get_offset_of_s_dwlT18_55() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT18_55)); }
inline uint64_t get_s_dwlT18_55() const { return ___s_dwlT18_55; }
inline uint64_t* get_address_of_s_dwlT18_55() { return &___s_dwlT18_55; }
inline void set_s_dwlT18_55(uint64_t value)
{
___s_dwlT18_55 = value;
}
inline static int32_t get_offset_of_s_dwlT19_56() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___s_dwlT19_56)); }
inline uint64_t get_s_dwlT19_56() const { return ___s_dwlT19_56; }
inline uint64_t* get_address_of_s_dwlT19_56() { return &___s_dwlT19_56; }
inline void set_s_dwlT19_56(uint64_t value)
{
___s_dwlT19_56 = value;
}
inline static int32_t get_offset_of_Null_57() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___Null_57)); }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B get_Null_57() const { return ___Null_57; }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B * get_address_of_Null_57() { return &___Null_57; }
inline void set_Null_57(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B value)
{
___Null_57 = value;
}
inline static int32_t get_offset_of_MinValue_58() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___MinValue_58)); }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B get_MinValue_58() const { return ___MinValue_58; }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B * get_address_of_MinValue_58() { return &___MinValue_58; }
inline void set_MinValue_58(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B value)
{
___MinValue_58 = value;
}
inline static int32_t get_offset_of_MaxValue_59() { return static_cast<int32_t>(offsetof(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B_StaticFields, ___MaxValue_59)); }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B get_MaxValue_59() const { return ___MaxValue_59; }
inline SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B * get_address_of_MaxValue_59() { return &___MaxValue_59; }
inline void set_MaxValue_59(SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B value)
{
___MaxValue_59 = value;
}
};
// System.Data.SqlTypes.SqlDouble
struct SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA
{
public:
// System.Boolean System.Data.SqlTypes.SqlDouble::m_fNotNull
bool ___m_fNotNull_0;
// System.Double System.Data.SqlTypes.SqlDouble::m_value
double ___m_value_1;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA, ___m_value_1)); }
inline double get_m_value_1() const { return ___m_value_1; }
inline double* get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(double value)
{
___m_value_1 = value;
}
};
struct SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_StaticFields
{
public:
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::Null
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA ___Null_2;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::Zero
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA ___Zero_3;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::MinValue
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA ___MinValue_4;
// System.Data.SqlTypes.SqlDouble System.Data.SqlTypes.SqlDouble::MaxValue
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA ___MaxValue_5;
public:
inline static int32_t get_offset_of_Null_2() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_StaticFields, ___Null_2)); }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA get_Null_2() const { return ___Null_2; }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA * get_address_of_Null_2() { return &___Null_2; }
inline void set_Null_2(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA value)
{
___Null_2 = value;
}
inline static int32_t get_offset_of_Zero_3() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_StaticFields, ___Zero_3)); }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA get_Zero_3() const { return ___Zero_3; }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA * get_address_of_Zero_3() { return &___Zero_3; }
inline void set_Zero_3(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA value)
{
___Zero_3 = value;
}
inline static int32_t get_offset_of_MinValue_4() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_StaticFields, ___MinValue_4)); }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA get_MinValue_4() const { return ___MinValue_4; }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA * get_address_of_MinValue_4() { return &___MinValue_4; }
inline void set_MinValue_4(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA value)
{
___MinValue_4 = value;
}
inline static int32_t get_offset_of_MaxValue_5() { return static_cast<int32_t>(offsetof(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_StaticFields, ___MaxValue_5)); }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA get_MaxValue_5() const { return ___MaxValue_5; }
inline SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA * get_address_of_MaxValue_5() { return &___MaxValue_5; }
inline void set_MaxValue_5(SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA value)
{
___MaxValue_5 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlDouble
struct SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
double ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlDouble
struct SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA_marshaled_com
{
int32_t ___m_fNotNull_0;
double ___m_value_1;
};
// System.Data.SqlTypes.SqlGuid
struct SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46
{
public:
// System.Byte[] System.Data.SqlTypes.SqlGuid::m_value
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_value_2;
public:
inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46, ___m_value_2)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_value_2() const { return ___m_value_2; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_value_2() { return &___m_value_2; }
inline void set_m_value_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___m_value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_value_2), (void*)value);
}
};
struct SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_StaticFields
{
public:
// System.Int32 System.Data.SqlTypes.SqlGuid::s_sizeOfGuid
int32_t ___s_sizeOfGuid_0;
// System.Int32[] System.Data.SqlTypes.SqlGuid::s_rgiGuidOrder
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___s_rgiGuidOrder_1;
// System.Data.SqlTypes.SqlGuid System.Data.SqlTypes.SqlGuid::Null
SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 ___Null_3;
public:
inline static int32_t get_offset_of_s_sizeOfGuid_0() { return static_cast<int32_t>(offsetof(SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_StaticFields, ___s_sizeOfGuid_0)); }
inline int32_t get_s_sizeOfGuid_0() const { return ___s_sizeOfGuid_0; }
inline int32_t* get_address_of_s_sizeOfGuid_0() { return &___s_sizeOfGuid_0; }
inline void set_s_sizeOfGuid_0(int32_t value)
{
___s_sizeOfGuid_0 = value;
}
inline static int32_t get_offset_of_s_rgiGuidOrder_1() { return static_cast<int32_t>(offsetof(SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_StaticFields, ___s_rgiGuidOrder_1)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_s_rgiGuidOrder_1() const { return ___s_rgiGuidOrder_1; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_s_rgiGuidOrder_1() { return &___s_rgiGuidOrder_1; }
inline void set_s_rgiGuidOrder_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___s_rgiGuidOrder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_rgiGuidOrder_1), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_StaticFields, ___Null_3)); }
inline SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 get_Null_3() const { return ___Null_3; }
inline SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 * get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Null_3))->___m_value_2), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlGuid
struct SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_marshaled_pinvoke
{
Il2CppSafeArray/*NONE*/* ___m_value_2;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlGuid
struct SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46_marshaled_com
{
Il2CppSafeArray/*NONE*/* ___m_value_2;
};
// System.Data.SqlTypes.SqlInt16
struct SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F
{
public:
// System.Boolean System.Data.SqlTypes.SqlInt16::m_fNotNull
bool ___m_fNotNull_0;
// System.Int16 System.Data.SqlTypes.SqlInt16::m_value
int16_t ___m_value_1;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F, ___m_value_1)); }
inline int16_t get_m_value_1() const { return ___m_value_1; }
inline int16_t* get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(int16_t value)
{
___m_value_1 = value;
}
};
struct SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields
{
public:
// System.Int32 System.Data.SqlTypes.SqlInt16::s_MASKI2
int32_t ___s_MASKI2_2;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::Null
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F ___Null_3;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::Zero
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F ___Zero_4;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::MinValue
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F ___MinValue_5;
// System.Data.SqlTypes.SqlInt16 System.Data.SqlTypes.SqlInt16::MaxValue
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F ___MaxValue_6;
public:
inline static int32_t get_offset_of_s_MASKI2_2() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields, ___s_MASKI2_2)); }
inline int32_t get_s_MASKI2_2() const { return ___s_MASKI2_2; }
inline int32_t* get_address_of_s_MASKI2_2() { return &___s_MASKI2_2; }
inline void set_s_MASKI2_2(int32_t value)
{
___s_MASKI2_2 = value;
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields, ___Null_3)); }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F get_Null_3() const { return ___Null_3; }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F * get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F value)
{
___Null_3 = value;
}
inline static int32_t get_offset_of_Zero_4() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields, ___Zero_4)); }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F get_Zero_4() const { return ___Zero_4; }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F * get_address_of_Zero_4() { return &___Zero_4; }
inline void set_Zero_4(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F value)
{
___Zero_4 = value;
}
inline static int32_t get_offset_of_MinValue_5() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields, ___MinValue_5)); }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F get_MinValue_5() const { return ___MinValue_5; }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F * get_address_of_MinValue_5() { return &___MinValue_5; }
inline void set_MinValue_5(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F value)
{
___MinValue_5 = value;
}
inline static int32_t get_offset_of_MaxValue_6() { return static_cast<int32_t>(offsetof(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_StaticFields, ___MaxValue_6)); }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F get_MaxValue_6() const { return ___MaxValue_6; }
inline SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F * get_address_of_MaxValue_6() { return &___MaxValue_6; }
inline void set_MaxValue_6(SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F value)
{
___MaxValue_6 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt16
struct SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int16_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt16
struct SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F_marshaled_com
{
int32_t ___m_fNotNull_0;
int16_t ___m_value_1;
};
// System.Data.SqlTypes.SqlInt32
struct SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5
{
public:
// System.Boolean System.Data.SqlTypes.SqlInt32::m_fNotNull
bool ___m_fNotNull_0;
// System.Int32 System.Data.SqlTypes.SqlInt32::m_value
int32_t ___m_value_1;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5, ___m_value_1)); }
inline int32_t get_m_value_1() const { return ___m_value_1; }
inline int32_t* get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(int32_t value)
{
___m_value_1 = value;
}
};
struct SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields
{
public:
// System.Int64 System.Data.SqlTypes.SqlInt32::s_iIntMin
int64_t ___s_iIntMin_2;
// System.Int64 System.Data.SqlTypes.SqlInt32::s_lBitNotIntMax
int64_t ___s_lBitNotIntMax_3;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::Null
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 ___Null_4;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::Zero
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 ___Zero_5;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::MinValue
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 ___MinValue_6;
// System.Data.SqlTypes.SqlInt32 System.Data.SqlTypes.SqlInt32::MaxValue
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 ___MaxValue_7;
public:
inline static int32_t get_offset_of_s_iIntMin_2() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___s_iIntMin_2)); }
inline int64_t get_s_iIntMin_2() const { return ___s_iIntMin_2; }
inline int64_t* get_address_of_s_iIntMin_2() { return &___s_iIntMin_2; }
inline void set_s_iIntMin_2(int64_t value)
{
___s_iIntMin_2 = value;
}
inline static int32_t get_offset_of_s_lBitNotIntMax_3() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___s_lBitNotIntMax_3)); }
inline int64_t get_s_lBitNotIntMax_3() const { return ___s_lBitNotIntMax_3; }
inline int64_t* get_address_of_s_lBitNotIntMax_3() { return &___s_lBitNotIntMax_3; }
inline void set_s_lBitNotIntMax_3(int64_t value)
{
___s_lBitNotIntMax_3 = value;
}
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___Null_4)); }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 get_Null_4() const { return ___Null_4; }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 * get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 value)
{
___Null_4 = value;
}
inline static int32_t get_offset_of_Zero_5() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___Zero_5)); }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 get_Zero_5() const { return ___Zero_5; }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 * get_address_of_Zero_5() { return &___Zero_5; }
inline void set_Zero_5(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 value)
{
___Zero_5 = value;
}
inline static int32_t get_offset_of_MinValue_6() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___MinValue_6)); }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 get_MinValue_6() const { return ___MinValue_6; }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 * get_address_of_MinValue_6() { return &___MinValue_6; }
inline void set_MinValue_6(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 value)
{
___MinValue_6 = value;
}
inline static int32_t get_offset_of_MaxValue_7() { return static_cast<int32_t>(offsetof(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_StaticFields, ___MaxValue_7)); }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 get_MaxValue_7() const { return ___MaxValue_7; }
inline SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 * get_address_of_MaxValue_7() { return &___MaxValue_7; }
inline void set_MaxValue_7(SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 value)
{
___MaxValue_7 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt32
struct SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int32_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt32
struct SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5_marshaled_com
{
int32_t ___m_fNotNull_0;
int32_t ___m_value_1;
};
// System.Data.SqlTypes.SqlInt64
struct SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE
{
public:
// System.Boolean System.Data.SqlTypes.SqlInt64::m_fNotNull
bool ___m_fNotNull_0;
// System.Int64 System.Data.SqlTypes.SqlInt64::m_value
int64_t ___m_value_1;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_value_1() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE, ___m_value_1)); }
inline int64_t get_m_value_1() const { return ___m_value_1; }
inline int64_t* get_address_of_m_value_1() { return &___m_value_1; }
inline void set_m_value_1(int64_t value)
{
___m_value_1 = value;
}
};
struct SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields
{
public:
// System.Int64 System.Data.SqlTypes.SqlInt64::s_lLowIntMask
int64_t ___s_lLowIntMask_2;
// System.Int64 System.Data.SqlTypes.SqlInt64::s_lHighIntMask
int64_t ___s_lHighIntMask_3;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::Null
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE ___Null_4;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::Zero
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE ___Zero_5;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::MinValue
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE ___MinValue_6;
// System.Data.SqlTypes.SqlInt64 System.Data.SqlTypes.SqlInt64::MaxValue
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE ___MaxValue_7;
public:
inline static int32_t get_offset_of_s_lLowIntMask_2() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___s_lLowIntMask_2)); }
inline int64_t get_s_lLowIntMask_2() const { return ___s_lLowIntMask_2; }
inline int64_t* get_address_of_s_lLowIntMask_2() { return &___s_lLowIntMask_2; }
inline void set_s_lLowIntMask_2(int64_t value)
{
___s_lLowIntMask_2 = value;
}
inline static int32_t get_offset_of_s_lHighIntMask_3() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___s_lHighIntMask_3)); }
inline int64_t get_s_lHighIntMask_3() const { return ___s_lHighIntMask_3; }
inline int64_t* get_address_of_s_lHighIntMask_3() { return &___s_lHighIntMask_3; }
inline void set_s_lHighIntMask_3(int64_t value)
{
___s_lHighIntMask_3 = value;
}
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___Null_4)); }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE get_Null_4() const { return ___Null_4; }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE * get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE value)
{
___Null_4 = value;
}
inline static int32_t get_offset_of_Zero_5() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___Zero_5)); }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE get_Zero_5() const { return ___Zero_5; }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE * get_address_of_Zero_5() { return &___Zero_5; }
inline void set_Zero_5(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE value)
{
___Zero_5 = value;
}
inline static int32_t get_offset_of_MinValue_6() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___MinValue_6)); }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE get_MinValue_6() const { return ___MinValue_6; }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE * get_address_of_MinValue_6() { return &___MinValue_6; }
inline void set_MinValue_6(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE value)
{
___MinValue_6 = value;
}
inline static int32_t get_offset_of_MaxValue_7() { return static_cast<int32_t>(offsetof(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_StaticFields, ___MaxValue_7)); }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE get_MaxValue_7() const { return ___MaxValue_7; }
inline SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE * get_address_of_MaxValue_7() { return &___MaxValue_7; }
inline void set_MaxValue_7(SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE value)
{
___MaxValue_7 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlInt64
struct SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int64_t ___m_value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlInt64
struct SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE_marshaled_com
{
int32_t ___m_fNotNull_0;
int64_t ___m_value_1;
};
// System.Data.SqlTypes.SqlMoney
struct SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA
{
public:
// System.Boolean System.Data.SqlTypes.SqlMoney::_fNotNull
bool ____fNotNull_0;
// System.Int64 System.Data.SqlTypes.SqlMoney::_value
int64_t ____value_1;
public:
inline static int32_t get_offset_of__fNotNull_0() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA, ____fNotNull_0)); }
inline bool get__fNotNull_0() const { return ____fNotNull_0; }
inline bool* get_address_of__fNotNull_0() { return &____fNotNull_0; }
inline void set__fNotNull_0(bool value)
{
____fNotNull_0 = value;
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA, ____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;
}
};
struct SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields
{
public:
// System.Int32 System.Data.SqlTypes.SqlMoney::s_iMoneyScale
int32_t ___s_iMoneyScale_2;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_lTickBase
int64_t ___s_lTickBase_3;
// System.Double System.Data.SqlTypes.SqlMoney::s_dTickBase
double ___s_dTickBase_4;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_minLong
int64_t ___s_minLong_5;
// System.Int64 System.Data.SqlTypes.SqlMoney::s_maxLong
int64_t ___s_maxLong_6;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::Null
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA ___Null_7;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::Zero
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA ___Zero_8;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::MinValue
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA ___MinValue_9;
// System.Data.SqlTypes.SqlMoney System.Data.SqlTypes.SqlMoney::MaxValue
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA ___MaxValue_10;
public:
inline static int32_t get_offset_of_s_iMoneyScale_2() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___s_iMoneyScale_2)); }
inline int32_t get_s_iMoneyScale_2() const { return ___s_iMoneyScale_2; }
inline int32_t* get_address_of_s_iMoneyScale_2() { return &___s_iMoneyScale_2; }
inline void set_s_iMoneyScale_2(int32_t value)
{
___s_iMoneyScale_2 = value;
}
inline static int32_t get_offset_of_s_lTickBase_3() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___s_lTickBase_3)); }
inline int64_t get_s_lTickBase_3() const { return ___s_lTickBase_3; }
inline int64_t* get_address_of_s_lTickBase_3() { return &___s_lTickBase_3; }
inline void set_s_lTickBase_3(int64_t value)
{
___s_lTickBase_3 = value;
}
inline static int32_t get_offset_of_s_dTickBase_4() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___s_dTickBase_4)); }
inline double get_s_dTickBase_4() const { return ___s_dTickBase_4; }
inline double* get_address_of_s_dTickBase_4() { return &___s_dTickBase_4; }
inline void set_s_dTickBase_4(double value)
{
___s_dTickBase_4 = value;
}
inline static int32_t get_offset_of_s_minLong_5() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___s_minLong_5)); }
inline int64_t get_s_minLong_5() const { return ___s_minLong_5; }
inline int64_t* get_address_of_s_minLong_5() { return &___s_minLong_5; }
inline void set_s_minLong_5(int64_t value)
{
___s_minLong_5 = value;
}
inline static int32_t get_offset_of_s_maxLong_6() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___s_maxLong_6)); }
inline int64_t get_s_maxLong_6() const { return ___s_maxLong_6; }
inline int64_t* get_address_of_s_maxLong_6() { return &___s_maxLong_6; }
inline void set_s_maxLong_6(int64_t value)
{
___s_maxLong_6 = value;
}
inline static int32_t get_offset_of_Null_7() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___Null_7)); }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA get_Null_7() const { return ___Null_7; }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA * get_address_of_Null_7() { return &___Null_7; }
inline void set_Null_7(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA value)
{
___Null_7 = value;
}
inline static int32_t get_offset_of_Zero_8() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___Zero_8)); }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA get_Zero_8() const { return ___Zero_8; }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA * get_address_of_Zero_8() { return &___Zero_8; }
inline void set_Zero_8(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA value)
{
___Zero_8 = value;
}
inline static int32_t get_offset_of_MinValue_9() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___MinValue_9)); }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA get_MinValue_9() const { return ___MinValue_9; }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA * get_address_of_MinValue_9() { return &___MinValue_9; }
inline void set_MinValue_9(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA value)
{
___MinValue_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_StaticFields, ___MaxValue_10)); }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA get_MaxValue_10() const { return ___MaxValue_10; }
inline SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA value)
{
___MaxValue_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlMoney
struct SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_marshaled_pinvoke
{
int32_t ____fNotNull_0;
int64_t ____value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlMoney
struct SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA_marshaled_com
{
int32_t ____fNotNull_0;
int64_t ____value_1;
};
// System.Data.SqlTypes.SqlSingle
struct SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E
{
public:
// System.Boolean System.Data.SqlTypes.SqlSingle::_fNotNull
bool ____fNotNull_0;
// System.Single System.Data.SqlTypes.SqlSingle::_value
float ____value_1;
public:
inline static int32_t get_offset_of__fNotNull_0() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E, ____fNotNull_0)); }
inline bool get__fNotNull_0() const { return ____fNotNull_0; }
inline bool* get_address_of__fNotNull_0() { return &____fNotNull_0; }
inline void set__fNotNull_0(bool value)
{
____fNotNull_0 = value;
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E, ____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;
}
};
struct SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_StaticFields
{
public:
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::Null
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E ___Null_2;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::Zero
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E ___Zero_3;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::MinValue
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E ___MinValue_4;
// System.Data.SqlTypes.SqlSingle System.Data.SqlTypes.SqlSingle::MaxValue
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E ___MaxValue_5;
public:
inline static int32_t get_offset_of_Null_2() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_StaticFields, ___Null_2)); }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E get_Null_2() const { return ___Null_2; }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E * get_address_of_Null_2() { return &___Null_2; }
inline void set_Null_2(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E value)
{
___Null_2 = value;
}
inline static int32_t get_offset_of_Zero_3() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_StaticFields, ___Zero_3)); }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E get_Zero_3() const { return ___Zero_3; }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E * get_address_of_Zero_3() { return &___Zero_3; }
inline void set_Zero_3(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E value)
{
___Zero_3 = value;
}
inline static int32_t get_offset_of_MinValue_4() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_StaticFields, ___MinValue_4)); }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E get_MinValue_4() const { return ___MinValue_4; }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E * get_address_of_MinValue_4() { return &___MinValue_4; }
inline void set_MinValue_4(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E value)
{
___MinValue_4 = value;
}
inline static int32_t get_offset_of_MaxValue_5() { return static_cast<int32_t>(offsetof(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_StaticFields, ___MaxValue_5)); }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E get_MaxValue_5() const { return ___MaxValue_5; }
inline SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E * get_address_of_MaxValue_5() { return &___MaxValue_5; }
inline void set_MaxValue_5(SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E value)
{
___MaxValue_5 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlSingle
struct SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_marshaled_pinvoke
{
int32_t ____fNotNull_0;
float ____value_1;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlSingle
struct SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E_marshaled_com
{
int32_t ____fNotNull_0;
float ____value_1;
};
// TMPro.TMP_FontStyleStack
struct TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9
{
public:
// System.Byte TMPro.TMP_FontStyleStack::bold
uint8_t ___bold_0;
// System.Byte TMPro.TMP_FontStyleStack::italic
uint8_t ___italic_1;
// System.Byte TMPro.TMP_FontStyleStack::underline
uint8_t ___underline_2;
// System.Byte TMPro.TMP_FontStyleStack::strikethrough
uint8_t ___strikethrough_3;
// System.Byte TMPro.TMP_FontStyleStack::highlight
uint8_t ___highlight_4;
// System.Byte TMPro.TMP_FontStyleStack::superscript
uint8_t ___superscript_5;
// System.Byte TMPro.TMP_FontStyleStack::subscript
uint8_t ___subscript_6;
// System.Byte TMPro.TMP_FontStyleStack::uppercase
uint8_t ___uppercase_7;
// System.Byte TMPro.TMP_FontStyleStack::lowercase
uint8_t ___lowercase_8;
// System.Byte TMPro.TMP_FontStyleStack::smallcaps
uint8_t ___smallcaps_9;
public:
inline static int32_t get_offset_of_bold_0() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___bold_0)); }
inline uint8_t get_bold_0() const { return ___bold_0; }
inline uint8_t* get_address_of_bold_0() { return &___bold_0; }
inline void set_bold_0(uint8_t value)
{
___bold_0 = value;
}
inline static int32_t get_offset_of_italic_1() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___italic_1)); }
inline uint8_t get_italic_1() const { return ___italic_1; }
inline uint8_t* get_address_of_italic_1() { return &___italic_1; }
inline void set_italic_1(uint8_t value)
{
___italic_1 = value;
}
inline static int32_t get_offset_of_underline_2() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___underline_2)); }
inline uint8_t get_underline_2() const { return ___underline_2; }
inline uint8_t* get_address_of_underline_2() { return &___underline_2; }
inline void set_underline_2(uint8_t value)
{
___underline_2 = value;
}
inline static int32_t get_offset_of_strikethrough_3() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___strikethrough_3)); }
inline uint8_t get_strikethrough_3() const { return ___strikethrough_3; }
inline uint8_t* get_address_of_strikethrough_3() { return &___strikethrough_3; }
inline void set_strikethrough_3(uint8_t value)
{
___strikethrough_3 = value;
}
inline static int32_t get_offset_of_highlight_4() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___highlight_4)); }
inline uint8_t get_highlight_4() const { return ___highlight_4; }
inline uint8_t* get_address_of_highlight_4() { return &___highlight_4; }
inline void set_highlight_4(uint8_t value)
{
___highlight_4 = value;
}
inline static int32_t get_offset_of_superscript_5() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___superscript_5)); }
inline uint8_t get_superscript_5() const { return ___superscript_5; }
inline uint8_t* get_address_of_superscript_5() { return &___superscript_5; }
inline void set_superscript_5(uint8_t value)
{
___superscript_5 = value;
}
inline static int32_t get_offset_of_subscript_6() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___subscript_6)); }
inline uint8_t get_subscript_6() const { return ___subscript_6; }
inline uint8_t* get_address_of_subscript_6() { return &___subscript_6; }
inline void set_subscript_6(uint8_t value)
{
___subscript_6 = value;
}
inline static int32_t get_offset_of_uppercase_7() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___uppercase_7)); }
inline uint8_t get_uppercase_7() const { return ___uppercase_7; }
inline uint8_t* get_address_of_uppercase_7() { return &___uppercase_7; }
inline void set_uppercase_7(uint8_t value)
{
___uppercase_7 = value;
}
inline static int32_t get_offset_of_lowercase_8() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___lowercase_8)); }
inline uint8_t get_lowercase_8() const { return ___lowercase_8; }
inline uint8_t* get_address_of_lowercase_8() { return &___lowercase_8; }
inline void set_lowercase_8(uint8_t value)
{
___lowercase_8 = value;
}
inline static int32_t get_offset_of_smallcaps_9() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9, ___smallcaps_9)); }
inline uint8_t get_smallcaps_9() const { return ___smallcaps_9; }
inline uint8_t* get_address_of_smallcaps_9() { return &___smallcaps_9; }
inline void set_smallcaps_9(uint8_t value)
{
___smallcaps_9 = value;
}
};
// TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A
{
public:
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::regularTypeface
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___regularTypeface_0;
// TMPro.TMP_FontAsset TMPro.TMP_FontWeightPair::italicTypeface
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___italicTypeface_1;
public:
inline static int32_t get_offset_of_regularTypeface_0() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A, ___regularTypeface_0)); }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * get_regularTypeface_0() const { return ___regularTypeface_0; }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 ** get_address_of_regularTypeface_0() { return &___regularTypeface_0; }
inline void set_regularTypeface_0(TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * value)
{
___regularTypeface_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___regularTypeface_0), (void*)value);
}
inline static int32_t get_offset_of_italicTypeface_1() { return static_cast<int32_t>(offsetof(TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A, ___italicTypeface_1)); }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * get_italicTypeface_1() const { return ___italicTypeface_1; }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 ** get_address_of_italicTypeface_1() { return &___italicTypeface_1; }
inline void set_italicTypeface_1(TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * value)
{
___italicTypeface_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___italicTypeface_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A_marshaled_pinvoke
{
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___regularTypeface_0;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___italicTypeface_1;
};
// Native definition for COM marshalling of TMPro.TMP_FontWeightPair
struct TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A_marshaled_com
{
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___regularTypeface_0;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___italicTypeface_1;
};
// TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6
{
public:
// TMPro.TMP_Text TMPro.TMP_LinkInfo::textComponent
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___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_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___linkID_6;
public:
inline static int32_t get_offset_of_textComponent_0() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___textComponent_0)); }
inline TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textComponent_0), (void*)value);
}
inline static int32_t get_offset_of_hashCode_1() { return static_cast<int32_t>(offsetof(TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6, ___linkID_6)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_linkID_6() const { return ___linkID_6; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_linkID_6() { return &___linkID_6; }
inline void set_linkID_6(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___linkID_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___linkID_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_LinkInfo
struct TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6_marshaled_pinvoke
{
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___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_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6_marshaled_com
{
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___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;
};
// TMPro.TMP_Offset
struct TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117
{
public:
// System.Single TMPro.TMP_Offset::m_Left
float ___m_Left_0;
// System.Single TMPro.TMP_Offset::m_Right
float ___m_Right_1;
// System.Single TMPro.TMP_Offset::m_Top
float ___m_Top_2;
// System.Single TMPro.TMP_Offset::m_Bottom
float ___m_Bottom_3;
public:
inline static int32_t get_offset_of_m_Left_0() { return static_cast<int32_t>(offsetof(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117, ___m_Left_0)); }
inline float get_m_Left_0() const { return ___m_Left_0; }
inline float* get_address_of_m_Left_0() { return &___m_Left_0; }
inline void set_m_Left_0(float value)
{
___m_Left_0 = value;
}
inline static int32_t get_offset_of_m_Right_1() { return static_cast<int32_t>(offsetof(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117, ___m_Right_1)); }
inline float get_m_Right_1() const { return ___m_Right_1; }
inline float* get_address_of_m_Right_1() { return &___m_Right_1; }
inline void set_m_Right_1(float value)
{
___m_Right_1 = value;
}
inline static int32_t get_offset_of_m_Top_2() { return static_cast<int32_t>(offsetof(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117, ___m_Top_2)); }
inline float get_m_Top_2() const { return ___m_Top_2; }
inline float* get_address_of_m_Top_2() { return &___m_Top_2; }
inline void set_m_Top_2(float value)
{
___m_Top_2 = value;
}
inline static int32_t get_offset_of_m_Bottom_3() { return static_cast<int32_t>(offsetof(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117, ___m_Bottom_3)); }
inline float get_m_Bottom_3() const { return ___m_Bottom_3; }
inline float* get_address_of_m_Bottom_3() { return &___m_Bottom_3; }
inline void set_m_Bottom_3(float value)
{
___m_Bottom_3 = value;
}
};
struct TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117_StaticFields
{
public:
// TMPro.TMP_Offset TMPro.TMP_Offset::k_ZeroOffset
TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 ___k_ZeroOffset_4;
public:
inline static int32_t get_offset_of_k_ZeroOffset_4() { return static_cast<int32_t>(offsetof(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117_StaticFields, ___k_ZeroOffset_4)); }
inline TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 get_k_ZeroOffset_4() const { return ___k_ZeroOffset_4; }
inline TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 * get_address_of_k_ZeroOffset_4() { return &___k_ZeroOffset_4; }
inline void set_k_ZeroOffset_4(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 value)
{
___k_ZeroOffset_4 = value;
}
};
// TMPro.TMP_PageInfo
struct TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC
{
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_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC, ___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_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC, ___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_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC, ___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_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC, ___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_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC, ___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;
}
};
// TMPro.TMP_WordInfo
struct TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C
{
public:
// TMPro.TMP_Text TMPro.TMP_WordInfo::textComponent
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___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_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C, ___textComponent_0)); }
inline TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * get_textComponent_0() const { return ___textComponent_0; }
inline TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 ** get_address_of_textComponent_0() { return &___textComponent_0; }
inline void set_textComponent_0(TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * value)
{
___textComponent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textComponent_0), (void*)value);
}
inline static int32_t get_offset_of_firstCharacterIndex_1() { return static_cast<int32_t>(offsetof(TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C, ___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_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C, ___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_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C, ___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;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_WordInfo
struct TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C_marshaled_pinvoke
{
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___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_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C_marshaled_com
{
TMP_Text_t86179C97C713E1A6B3751B48DC7A16C874A7B262 * ___textComponent_0;
int32_t ___firstCharacterIndex_1;
int32_t ___lastCharacterIndex_2;
int32_t ___characterCount_3;
};
// UnityEngine.XR.ARSubsystems.TrackableId
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId1
uint64_t ___m_SubId1_2;
// System.UInt64 UnityEngine.XR.ARSubsystems.TrackableId::m_SubId2
uint64_t ___m_SubId2_3;
public:
inline static int32_t get_offset_of_m_SubId1_2() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId1_2)); }
inline uint64_t get_m_SubId1_2() const { return ___m_SubId1_2; }
inline uint64_t* get_address_of_m_SubId1_2() { return &___m_SubId1_2; }
inline void set_m_SubId1_2(uint64_t value)
{
___m_SubId1_2 = value;
}
inline static int32_t get_offset_of_m_SubId2_3() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B, ___m_SubId2_3)); }
inline uint64_t get_m_SubId2_3() const { return ___m_SubId2_3; }
inline uint64_t* get_address_of_m_SubId2_3() { return &___m_SubId2_3; }
inline void set_m_SubId2_3(uint64_t value)
{
___m_SubId2_3 = value;
}
};
struct TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields
{
public:
// System.Text.RegularExpressions.Regex UnityEngine.XR.ARSubsystems.TrackableId::s_TrackableIdRegex
Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___s_TrackableIdRegex_0;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.TrackableId::s_InvalidId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___s_InvalidId_1;
public:
inline static int32_t get_offset_of_s_TrackableIdRegex_0() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_TrackableIdRegex_0)); }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_s_TrackableIdRegex_0() const { return ___s_TrackableIdRegex_0; }
inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_s_TrackableIdRegex_0() { return &___s_TrackableIdRegex_0; }
inline void set_s_TrackableIdRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value)
{
___s_TrackableIdRegex_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_TrackableIdRegex_0), (void*)value);
}
inline static int32_t get_offset_of_s_InvalidId_1() { return static_cast<int32_t>(offsetof(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B_StaticFields, ___s_InvalidId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_s_InvalidId_1() const { return ___s_InvalidId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_s_InvalidId_1() { return &___s_InvalidId_1; }
inline void set_s_InvalidId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___s_InvalidId_1 = value;
}
};
// Mapbox.Json.Utilities.TypeNameKey
struct TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970
{
public:
// System.String Mapbox.Json.Utilities.TypeNameKey::AssemblyName
String_t* ___AssemblyName_0;
// System.String Mapbox.Json.Utilities.TypeNameKey::TypeName
String_t* ___TypeName_1;
public:
inline static int32_t get_offset_of_AssemblyName_0() { return static_cast<int32_t>(offsetof(TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970, ___AssemblyName_0)); }
inline String_t* get_AssemblyName_0() const { return ___AssemblyName_0; }
inline String_t** get_address_of_AssemblyName_0() { return &___AssemblyName_0; }
inline void set_AssemblyName_0(String_t* value)
{
___AssemblyName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___AssemblyName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeName_1() { return static_cast<int32_t>(offsetof(TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970, ___TypeName_1)); }
inline String_t* get_TypeName_1() const { return ___TypeName_1; }
inline String_t** get_address_of_TypeName_1() { return &___TypeName_1; }
inline void set_TypeName_1(String_t* value)
{
___TypeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeName_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mapbox.Json.Utilities.TypeNameKey
struct TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970_marshaled_pinvoke
{
char* ___AssemblyName_0;
char* ___TypeName_1;
};
// Native definition for COM marshalling of Mapbox.Json.Utilities.TypeNameKey
struct TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970_marshaled_com
{
Il2CppChar* ___AssemblyName_0;
Il2CppChar* ___TypeName_1;
};
// UnityEngine.UILineInfo
struct UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C
{
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_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___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_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___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_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___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_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C, ___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;
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___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;
}
};
// System.UInt32
struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
{
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_tE60352A06233E4E69DD198BCC67142159F686B15, ___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;
}
};
// System.UInt64
struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___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;
}
};
// Mapbox.Map.UnwrappedTileId
struct UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD
{
public:
// System.Int32 Mapbox.Map.UnwrappedTileId::Z
int32_t ___Z_0;
// System.Int32 Mapbox.Map.UnwrappedTileId::X
int32_t ___X_1;
// System.Int32 Mapbox.Map.UnwrappedTileId::Y
int32_t ___Y_2;
public:
inline static int32_t get_offset_of_Z_0() { return static_cast<int32_t>(offsetof(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD, ___Z_0)); }
inline int32_t get_Z_0() const { return ___Z_0; }
inline int32_t* get_address_of_Z_0() { return &___Z_0; }
inline void set_Z_0(int32_t value)
{
___Z_0 = value;
}
inline static int32_t get_offset_of_X_1() { return static_cast<int32_t>(offsetof(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD, ___X_1)); }
inline int32_t get_X_1() const { return ___X_1; }
inline int32_t* get_address_of_X_1() { return &___X_1; }
inline void set_X_1(int32_t value)
{
___X_1 = value;
}
inline static int32_t get_offset_of_Y_2() { return static_cast<int32_t>(offsetof(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD, ___Y_2)); }
inline int32_t get_Y_2() const { return ___Y_2; }
inline int32_t* get_address_of_Y_2() { return &___Y_2; }
inline void set_Y_2(int32_t value)
{
___Y_2 = value;
}
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector2Int
struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9
{
public:
// System.Int32 UnityEngine.Vector2Int::m_X
int32_t ___m_X_0;
// System.Int32 UnityEngine.Vector2Int::m_Y
int32_t ___m_Y_1;
public:
inline static int32_t get_offset_of_m_X_0() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_X_0)); }
inline int32_t get_m_X_0() const { return ___m_X_0; }
inline int32_t* get_address_of_m_X_0() { return &___m_X_0; }
inline void set_m_X_0(int32_t value)
{
___m_X_0 = value;
}
inline static int32_t get_offset_of_m_Y_1() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9, ___m_Y_1)); }
inline int32_t get_m_Y_1() const { return ___m_Y_1; }
inline int32_t* get_address_of_m_Y_1() { return &___m_Y_1; }
inline void set_m_Y_1(int32_t value)
{
___m_Y_1 = value;
}
};
struct Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields
{
public:
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Zero
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Zero_2;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_One
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_One_3;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Up
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Up_4;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Down
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Down_5;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Left
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Left_6;
// UnityEngine.Vector2Int UnityEngine.Vector2Int::s_Right
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___s_Right_7;
public:
inline static int32_t get_offset_of_s_Zero_2() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Zero_2)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Zero_2() const { return ___s_Zero_2; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Zero_2() { return &___s_Zero_2; }
inline void set_s_Zero_2(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Zero_2 = value;
}
inline static int32_t get_offset_of_s_One_3() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_One_3)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_One_3() const { return ___s_One_3; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_One_3() { return &___s_One_3; }
inline void set_s_One_3(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_One_3 = value;
}
inline static int32_t get_offset_of_s_Up_4() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Up_4)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Up_4() const { return ___s_Up_4; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Up_4() { return &___s_Up_4; }
inline void set_s_Up_4(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Up_4 = value;
}
inline static int32_t get_offset_of_s_Down_5() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Down_5)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Down_5() const { return ___s_Down_5; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Down_5() { return &___s_Down_5; }
inline void set_s_Down_5(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Down_5 = value;
}
inline static int32_t get_offset_of_s_Left_6() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Left_6)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Left_6() const { return ___s_Left_6; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Left_6() { return &___s_Left_6; }
inline void set_s_Left_6(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Left_6 = value;
}
inline static int32_t get_offset_of_s_Right_7() { return static_cast<int32_t>(offsetof(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9_StaticFields, ___s_Right_7)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_s_Right_7() const { return ___s_Right_7; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_s_Right_7() { return &___s_Right_7; }
inline void set_s_Right_7(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___s_Right_7 = value;
}
};
// Mapbox.Utils.Vector2d
struct Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577
{
public:
// System.Double Mapbox.Utils.Vector2d::x
double ___x_1;
// System.Double Mapbox.Utils.Vector2d::y
double ___y_2;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577, ___x_1)); }
inline double get_x_1() const { return ___x_1; }
inline double* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(double value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577, ___y_2)); }
inline double get_y_2() const { return ___y_2; }
inline double* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(double value)
{
___y_2 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
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_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___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_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___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_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___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_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7
{
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_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___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_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___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_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___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_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___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_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___negativeInfinityVector_8 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// MS.Internal.Xml.Cache.XPathNode
struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7
{
public:
// MS.Internal.Xml.Cache.XPathNodeInfoAtom MS.Internal.Xml.Cache.XPathNode::info
XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___info_0)); }
inline XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * get_info_0() const { return ___info_0; }
inline XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 ** get_address_of_info_0() { return &___info_0; }
inline void set_info_0(XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * value)
{
___info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___info_0), (void*)value);
}
inline static int32_t get_offset_of_idxSibling_1() { return static_cast<int32_t>(offsetof(XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7, ___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((void**)(&___value_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNode
struct XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke
{
XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___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_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com
{
XPathNodeInfoAtom_tD28503461CDC6B0676C301A1559C7530C8D129C6 * ___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;
};
// MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503
{
public:
// MS.Internal.Xml.Cache.XPathNode[] MS.Internal.Xml.Cache.XPathNodeRef::page
XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* ___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_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___page_0)); }
inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* get_page_0() const { return ___page_0; }
inline XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986** get_address_of_page_0() { return &___page_0; }
inline void set_page_0(XPathNodeU5BU5D_t9C12796872BE720EA06A401CEBEE89CCB2482986* value)
{
___page_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___page_0), (void*)value);
}
inline static int32_t get_offset_of_idx_1() { return static_cast<int32_t>(offsetof(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503, ___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;
}
};
// Native definition for P/Invoke marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_pinvoke
{
XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_pinvoke* ___page_0;
int32_t ___idx_1;
};
// Native definition for COM marshalling of MS.Internal.Xml.Cache.XPathNodeRef
struct XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503_marshaled_com
{
XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7_marshaled_com* ___page_0;
int32_t ___idx_1;
};
// UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidLow
uint64_t ___m_GuidLow_0;
// System.UInt64 UnityEngine.XR.ARSubsystems.XRReferenceObject::m_GuidHigh
uint64_t ___m_GuidHigh_1;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Name
String_t* ___m_Name_2;
// System.Collections.Generic.List`1<UnityEngine.XR.ARSubsystems.XRReferenceObjectEntry> UnityEngine.XR.ARSubsystems.XRReferenceObject::m_Entries
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
public:
inline static int32_t get_offset_of_m_GuidLow_0() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidLow_0)); }
inline uint64_t get_m_GuidLow_0() const { return ___m_GuidLow_0; }
inline uint64_t* get_address_of_m_GuidLow_0() { return &___m_GuidLow_0; }
inline void set_m_GuidLow_0(uint64_t value)
{
___m_GuidLow_0 = value;
}
inline static int32_t get_offset_of_m_GuidHigh_1() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_GuidHigh_1)); }
inline uint64_t get_m_GuidHigh_1() const { return ___m_GuidHigh_1; }
inline uint64_t* get_address_of_m_GuidHigh_1() { return &___m_GuidHigh_1; }
inline void set_m_GuidHigh_1(uint64_t value)
{
___m_GuidHigh_1 = value;
}
inline static int32_t get_offset_of_m_Name_2() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Name_2)); }
inline String_t* get_m_Name_2() const { return ___m_Name_2; }
inline String_t** get_address_of_m_Name_2() { return &___m_Name_2; }
inline void set_m_Name_2(String_t* value)
{
___m_Name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_2), (void*)value);
}
inline static int32_t get_offset_of_m_Entries_3() { return static_cast<int32_t>(offsetof(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE, ___m_Entries_3)); }
inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * get_m_Entries_3() const { return ___m_Entries_3; }
inline List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A ** get_address_of_m_Entries_3() { return &___m_Entries_3; }
inline void set_m_Entries_3(List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * value)
{
___m_Entries_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Entries_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_pinvoke
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
char* ___m_Name_2;
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceObject
struct XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE_marshaled_com
{
uint64_t ___m_GuidLow_0;
uint64_t ___m_GuidHigh_1;
Il2CppChar* ___m_Name_2;
List_1_tB23AEDE769BF4EA511C93F224596EF58939F8E5A * ___m_Entries_3;
};
// UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo
struct PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1
{
public:
// System.Single UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo::distance
float ___distance_0;
// System.Single UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo::cosineAngleWithRay
float ___cosineAngleWithRay_1;
public:
inline static int32_t get_offset_of_distance_0() { return static_cast<int32_t>(offsetof(PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1, ___distance_0)); }
inline float get_distance_0() const { return ___distance_0; }
inline float* get_address_of_distance_0() { return &___distance_0; }
inline void set_distance_0(float value)
{
___distance_0 = value;
}
inline static int32_t get_offset_of_cosineAngleWithRay_1() { return static_cast<int32_t>(offsetof(PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1, ___cosineAngleWithRay_1)); }
inline float get_cosineAngleWithRay_1() const { return ___cosineAngleWithRay_1; }
inline float* get_address_of_cosineAngleWithRay_1() { return &___cosineAngleWithRay_1; }
inline void set_cosineAngleWithRay_1(float value)
{
___cosineAngleWithRay_1 = value;
}
};
// System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC
{
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_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC, ___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((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC, ___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;
}
};
// Native definition for P/Invoke marshalling of System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC_marshaled_pinvoke
{
Type_t * ___type_0;
int32_t ___index_1;
};
// Native definition for COM marshalling of System.ComponentModel.AttributeCollection/AttributeEntry
struct AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC_marshaled_com
{
Type_t * ___type_0;
int32_t ___index_1;
};
// UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper/OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper/OrderBlock::callback
UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___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_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2, ___callback_1)); }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_callback_1() const { return ___callback_1; }
inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Mono.Globalization.Unicode.CodePointIndexer/TableRange
struct TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1
{
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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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;
}
};
// Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0
{
public:
// System.Type Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey::_initialType
Type_t * ____initialType_0;
// System.Type Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey::_targetType
Type_t * ____targetType_1;
public:
inline static int32_t get_offset_of__initialType_0() { return static_cast<int32_t>(offsetof(TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0, ____initialType_0)); }
inline Type_t * get__initialType_0() const { return ____initialType_0; }
inline Type_t ** get_address_of__initialType_0() { return &____initialType_0; }
inline void set__initialType_0(Type_t * value)
{
____initialType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____initialType_0), (void*)value);
}
inline static int32_t get_offset_of__targetType_1() { return static_cast<int32_t>(offsetof(TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0, ____targetType_1)); }
inline Type_t * get__targetType_1() const { return ____targetType_1; }
inline Type_t ** get_address_of__targetType_1() { return &____targetType_1; }
inline void set__targetType_1(Type_t * value)
{
____targetType_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetType_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0_marshaled_pinvoke
{
Type_t * ____initialType_0;
Type_t * ____targetType_1;
};
// Native definition for COM marshalling of Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey
struct TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0_marshaled_com
{
Type_t * ____initialType_0;
Type_t * ____targetType_1;
};
// System.Data.DataError/ColumnError
struct ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568
{
public:
// System.Data.DataColumn System.Data.DataError/ColumnError::_column
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ____column_0;
// System.String System.Data.DataError/ColumnError::_error
String_t* ____error_1;
public:
inline static int32_t get_offset_of__column_0() { return static_cast<int32_t>(offsetof(ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568, ____column_0)); }
inline DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * get__column_0() const { return ____column_0; }
inline DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 ** get_address_of__column_0() { return &____column_0; }
inline void set__column_0(DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * value)
{
____column_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____column_0), (void*)value);
}
inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568, ____error_1)); }
inline String_t* get__error_1() const { return ____error_1; }
inline String_t** get_address_of__error_1() { return &____error_1; }
inline void set__error_1(String_t* value)
{
____error_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____error_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Data.DataError/ColumnError
struct ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568_marshaled_pinvoke
{
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ____column_0;
char* ____error_1;
};
// Native definition for COM marshalling of System.Data.DataError/ColumnError
struct ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568_marshaled_com
{
DataColumn_tC346323CF7BCB3895FDAF750C8B594F436CD1638 * ____column_0;
Il2CppChar* ____error_1;
};
// System.Collections.Hashtable/bucket
struct bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D
{
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_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D, ___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((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D_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_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint
struct IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103
{
public:
// System.Int64 Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint::X
int64_t ___X_0;
// System.Int64 Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint::Y
int64_t ___Y_1;
public:
inline static int32_t get_offset_of_X_0() { return static_cast<int32_t>(offsetof(IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103, ___X_0)); }
inline int64_t get_X_0() const { return ___X_0; }
inline int64_t* get_address_of_X_0() { return &___X_0; }
inline void set_X_0(int64_t value)
{
___X_0 = value;
}
inline static int32_t get_offset_of_Y_1() { return static_cast<int32_t>(offsetof(IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103, ___Y_1)); }
inline int64_t get_Y_1() const { return ___Y_1; }
inline int64_t* get_address_of_Y_1() { return &___Y_1; }
inline void set_Y_1(int64_t value)
{
___Y_1 = value;
}
};
// System.ParameterizedStrings/FormatParam
struct FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE
{
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_tA765680E7894569CC4BDEB5DF722F646311E23EE, ____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_tA765680E7894569CC4BDEB5DF722F646311E23EE, ____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((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE
{
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_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE, ____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_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE, ____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_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE, ____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_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE, ____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;
}
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE_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_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// SQLite4Unity3d.SQLiteConnection/IndexInfo
struct IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64
{
public:
// System.String SQLite4Unity3d.SQLiteConnection/IndexInfo::IndexName
String_t* ___IndexName_0;
// System.String SQLite4Unity3d.SQLiteConnection/IndexInfo::TableName
String_t* ___TableName_1;
// System.Boolean SQLite4Unity3d.SQLiteConnection/IndexInfo::Unique
bool ___Unique_2;
// System.Collections.Generic.List`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn> SQLite4Unity3d.SQLiteConnection/IndexInfo::Columns
List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A * ___Columns_3;
public:
inline static int32_t get_offset_of_IndexName_0() { return static_cast<int32_t>(offsetof(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64, ___IndexName_0)); }
inline String_t* get_IndexName_0() const { return ___IndexName_0; }
inline String_t** get_address_of_IndexName_0() { return &___IndexName_0; }
inline void set_IndexName_0(String_t* value)
{
___IndexName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___IndexName_0), (void*)value);
}
inline static int32_t get_offset_of_TableName_1() { return static_cast<int32_t>(offsetof(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64, ___TableName_1)); }
inline String_t* get_TableName_1() const { return ___TableName_1; }
inline String_t** get_address_of_TableName_1() { return &___TableName_1; }
inline void set_TableName_1(String_t* value)
{
___TableName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TableName_1), (void*)value);
}
inline static int32_t get_offset_of_Unique_2() { return static_cast<int32_t>(offsetof(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64, ___Unique_2)); }
inline bool get_Unique_2() const { return ___Unique_2; }
inline bool* get_address_of_Unique_2() { return &___Unique_2; }
inline void set_Unique_2(bool value)
{
___Unique_2 = value;
}
inline static int32_t get_offset_of_Columns_3() { return static_cast<int32_t>(offsetof(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64, ___Columns_3)); }
inline List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A * get_Columns_3() const { return ___Columns_3; }
inline List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A ** get_address_of_Columns_3() { return &___Columns_3; }
inline void set_Columns_3(List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A * value)
{
___Columns_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Columns_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of SQLite4Unity3d.SQLiteConnection/IndexInfo
struct IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64_marshaled_pinvoke
{
char* ___IndexName_0;
char* ___TableName_1;
int32_t ___Unique_2;
List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A * ___Columns_3;
};
// Native definition for COM marshalling of SQLite4Unity3d.SQLiteConnection/IndexInfo
struct IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64_marshaled_com
{
Il2CppChar* ___IndexName_0;
Il2CppChar* ___TableName_1;
int32_t ___Unique_2;
List_1_tF80A81890D9FBEE17A8FF021BE412E8824D5959A * ___Columns_3;
};
// SQLite4Unity3d.SQLiteConnection/IndexedColumn
struct IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616
{
public:
// System.Int32 SQLite4Unity3d.SQLiteConnection/IndexedColumn::Order
int32_t ___Order_0;
// System.String SQLite4Unity3d.SQLiteConnection/IndexedColumn::ColumnName
String_t* ___ColumnName_1;
public:
inline static int32_t get_offset_of_Order_0() { return static_cast<int32_t>(offsetof(IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616, ___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_ColumnName_1() { return static_cast<int32_t>(offsetof(IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616, ___ColumnName_1)); }
inline String_t* get_ColumnName_1() const { return ___ColumnName_1; }
inline String_t** get_address_of_ColumnName_1() { return &___ColumnName_1; }
inline void set_ColumnName_1(String_t* value)
{
___ColumnName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ColumnName_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of SQLite4Unity3d.SQLiteConnection/IndexedColumn
struct IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616_marshaled_pinvoke
{
int32_t ___Order_0;
char* ___ColumnName_1;
};
// Native definition for COM marshalling of SQLite4Unity3d.SQLiteConnection/IndexedColumn
struct IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616_marshaled_com
{
int32_t ___Order_0;
Il2CppChar* ___ColumnName_1;
};
// UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6
{
public:
// UnityEngine.GameObject UnityEngine.SendMouseEvents/HitInfo::target
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___target_0;
// UnityEngine.Camera UnityEngine.SendMouseEvents/HitInfo::camera
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___camera_1;
public:
inline static int32_t get_offset_of_target_0() { return static_cast<int32_t>(offsetof(HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6, ___target_0)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_target_0() const { return ___target_0; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6, ___camera_1)); }
inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get_camera_1() const { return ___camera_1; }
inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6_marshaled_pinvoke
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___target_0;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6_marshaled_com
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___target_0;
Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___camera_1;
};
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED
{
public:
// System.Xml.Schema.SequenceNode System.Xml.Schema.SequenceNode/SequenceConstructPosContext::this_
SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstpos
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastpos
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::lastposLeft
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3;
// System.Xml.Schema.BitSet System.Xml.Schema.SequenceNode/SequenceConstructPosContext::firstposRight
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4;
public:
inline static int32_t get_offset_of_this__0() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___this__0)); }
inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * get_this__0() const { return ___this__0; }
inline SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD ** get_address_of_this__0() { return &___this__0; }
inline void set_this__0(SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * value)
{
___this__0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___this__0), (void*)value);
}
inline static int32_t get_offset_of_firstpos_1() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstpos_1)); }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstpos_1() const { return ___firstpos_1; }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstpos_1() { return &___firstpos_1; }
inline void set_firstpos_1(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value)
{
___firstpos_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstpos_1), (void*)value);
}
inline static int32_t get_offset_of_lastpos_2() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastpos_2)); }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastpos_2() const { return ___lastpos_2; }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastpos_2() { return &___lastpos_2; }
inline void set_lastpos_2(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value)
{
___lastpos_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lastpos_2), (void*)value);
}
inline static int32_t get_offset_of_lastposLeft_3() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___lastposLeft_3)); }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_lastposLeft_3() const { return ___lastposLeft_3; }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_lastposLeft_3() { return &___lastposLeft_3; }
inline void set_lastposLeft_3(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value)
{
___lastposLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lastposLeft_3), (void*)value);
}
inline static int32_t get_offset_of_firstposRight_4() { return static_cast<int32_t>(offsetof(SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED, ___firstposRight_4)); }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * get_firstposRight_4() const { return ___firstposRight_4; }
inline BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 ** get_address_of_firstposRight_4() { return &___firstposRight_4; }
inline void set_firstposRight_4(BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * value)
{
___firstposRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___firstposRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_pinvoke
{
SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4;
};
// Native definition for COM marshalling of System.Xml.Schema.SequenceNode/SequenceConstructPosContext
struct SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED_marshaled_com
{
SequenceNode_t78A21AD6631AE7818CF1914282B25863653EE4FD * ___this__0;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstpos_1;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastpos_2;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___lastposLeft_3;
BitSet_t36CD5E21CDE8972A6BCEF9E414933DD893966438 * ___firstposRight_4;
};
// TMPro.TMP_Text/UnicodeChar
struct UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25
{
public:
// System.Int32 TMPro.TMP_Text/UnicodeChar::unicode
int32_t ___unicode_0;
// System.Int32 TMPro.TMP_Text/UnicodeChar::stringIndex
int32_t ___stringIndex_1;
// System.Int32 TMPro.TMP_Text/UnicodeChar::length
int32_t ___length_2;
public:
inline static int32_t get_offset_of_unicode_0() { return static_cast<int32_t>(offsetof(UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25, ___unicode_0)); }
inline int32_t get_unicode_0() const { return ___unicode_0; }
inline int32_t* get_address_of_unicode_0() { return &___unicode_0; }
inline void set_unicode_0(int32_t value)
{
___unicode_0 = value;
}
inline static int32_t get_offset_of_stringIndex_1() { return static_cast<int32_t>(offsetof(UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25, ___stringIndex_1)); }
inline int32_t get_stringIndex_1() const { return ___stringIndex_1; }
inline int32_t* get_address_of_stringIndex_1() { return &___stringIndex_1; }
inline void set_stringIndex_1(int32_t value)
{
___stringIndex_1 = value;
}
inline static int32_t get_offset_of_length_2() { return static_cast<int32_t>(offsetof(UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25, ___length_2)); }
inline int32_t get_length_2() const { return ___length_2; }
inline int32_t* get_address_of_length_2() { return &___length_2; }
inline void set_length_2(int32_t value)
{
___length_2 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame
struct SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame::x
float ___x_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame::y
float ___y_1;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame::w
float ___w_2;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame::h
float ___h_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9, ___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_t5B610F44C5943B89962CC8CC4245EECDE29E94D9, ___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_t5B610F44C5943B89962CC8CC4245EECDE29E94D9, ___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_t5B610F44C5943B89962CC8CC4245EECDE29E94D9, ___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;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteSize
struct SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteSize::w
float ___w_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteSize::h
float ___h_1;
public:
inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D, ___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_t7D47B39A52139B8CD3CE7F233C48981F70275A3D, ___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;
}
};
// UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3
{
public:
// System.Collections.Generic.List`1<System.String> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::PoseNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
// System.Collections.Generic.List`1<UnityEngine.SpatialTracking.TrackedPoseDriver/TrackedPose> UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData::Poses
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
public:
inline static int32_t get_offset_of_PoseNames_0() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___PoseNames_0)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_PoseNames_0() const { return ___PoseNames_0; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_PoseNames_0() { return &___PoseNames_0; }
inline void set_PoseNames_0(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___PoseNames_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PoseNames_0), (void*)value);
}
inline static int32_t get_offset_of_Poses_1() { return static_cast<int32_t>(offsetof(PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3, ___Poses_1)); }
inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * get_Poses_1() const { return ___Poses_1; }
inline List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 ** get_address_of_Poses_1() { return &___Poses_1; }
inline void set_Poses_1(List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * value)
{
___Poses_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Poses_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_pinvoke
{
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
};
// Native definition for COM marshalling of UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData
struct PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3_marshaled_com
{
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___PoseNames_0;
List_1_tA9A7E2A508B3146A7DE46E73A64E988FE4BD5248 * ___Poses_1;
};
// UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateCallback
SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext/WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext/WorkRequest::m_WaitHandle
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___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((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393, ___m_WaitHandle_2)); }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_WaitHandle_2;
};
// System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48
{
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_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___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((void**)(&___prefix_0), (void*)value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___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((void**)(&___uri_1), (void*)value);
}
inline static int32_t get_offset_of_scopeId_2() { return static_cast<int32_t>(offsetof(NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___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_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlNamespaceManager/NamespaceDeclaration
struct NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_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_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___uri_1;
int32_t ___scopeId_2;
int32_t ___previousNsIndex_3;
};
// System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE
{
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_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE, ___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((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE, ___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((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE_marshaled_pinvoke
{
char* ___name_0;
char* ___value_1;
};
// Native definition for COM marshalling of System.Xml.XmlNodeReaderNavigator/VirtualAttribute
struct VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE_marshaled_com
{
Il2CppChar* ___name_0;
Il2CppChar* ___value_1;
};
// System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917
{
public:
// System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::qname
XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_0;
// System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry::xso
XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * ___xso_1;
public:
inline static int32_t get_offset_of_qname_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917, ___qname_0)); }
inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * get_qname_0() const { return ___qname_0; }
inline XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 ** get_address_of_qname_0() { return &___qname_0; }
inline void set_qname_0(XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * value)
{
___qname_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___qname_0), (void*)value);
}
inline static int32_t get_offset_of_xso_1() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917, ___xso_1)); }
inline XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * get_xso_1() const { return ___xso_1; }
inline XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 ** get_address_of_xso_1() { return &___xso_1; }
inline void set_xso_1(XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * value)
{
___xso_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xso_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917_marshaled_pinvoke
{
XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_0;
XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * ___xso_1;
};
// Native definition for COM marshalling of System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry
struct XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917_marshaled_com
{
XmlQualifiedName_t7A0154DCFCA5749B28B5B0CAE578FDF65EE17905 * ___qname_0;
XmlSchemaObject_tD14BD548E370305745B6E1CAAF2572F1DBC7F3D3 * ___xso_1;
};
// System.Xml.XmlSqlBinaryReader/QName
struct QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08
{
public:
// System.String System.Xml.XmlSqlBinaryReader/QName::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlSqlBinaryReader/QName::localname
String_t* ___localname_1;
// System.String System.Xml.XmlSqlBinaryReader/QName::namespaceUri
String_t* ___namespaceUri_2;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08, ___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((void**)(&___prefix_0), (void*)value);
}
inline static int32_t get_offset_of_localname_1() { return static_cast<int32_t>(offsetof(QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08, ___localname_1)); }
inline String_t* get_localname_1() const { return ___localname_1; }
inline String_t** get_address_of_localname_1() { return &___localname_1; }
inline void set_localname_1(String_t* value)
{
___localname_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___localname_1), (void*)value);
}
inline static int32_t get_offset_of_namespaceUri_2() { return static_cast<int32_t>(offsetof(QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08, ___namespaceUri_2)); }
inline String_t* get_namespaceUri_2() const { return ___namespaceUri_2; }
inline String_t** get_address_of_namespaceUri_2() { return &___namespaceUri_2; }
inline void set_namespaceUri_2(String_t* value)
{
___namespaceUri_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namespaceUri_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlSqlBinaryReader/QName
struct QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_pinvoke
{
char* ___prefix_0;
char* ___localname_1;
char* ___namespaceUri_2;
};
// Native definition for COM marshalling of System.Xml.XmlSqlBinaryReader/QName
struct QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___localname_1;
Il2CppChar* ___namespaceUri_2;
};
// System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF
{
public:
// System.Char[] System.Xml.XmlTextReaderImpl/ParsingState::chars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___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_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3;
// System.Boolean System.Xml.XmlTextReaderImpl/ParsingState::appendMode
bool ___appendMode_4;
// System.IO.Stream System.Xml.XmlTextReaderImpl/ParsingState::stream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5;
// System.Text.Decoder System.Xml.XmlTextReaderImpl/ParsingState::decoder
Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6;
// System.Byte[] System.Xml.XmlTextReaderImpl/ParsingState::bytes
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___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_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___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_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___chars_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_chars_0() const { return ___chars_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_chars_0() { return &___chars_0; }
inline void set_chars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___chars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___chars_0), (void*)value);
}
inline static int32_t get_offset_of_charPos_1() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___encoding_3)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_3() const { return ___encoding_3; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_3() { return &___encoding_3; }
inline void set_encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_3), (void*)value);
}
inline static int32_t get_offset_of_appendMode_4() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___stream_5)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_5() const { return ___stream_5; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value);
}
inline static int32_t get_offset_of_decoder_6() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___decoder_6)); }
inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_decoder_6() const { return ___decoder_6; }
inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_decoder_6() { return &___decoder_6; }
inline void set_decoder_6(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value)
{
___decoder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_6), (void*)value);
}
inline static int32_t get_offset_of_bytes_7() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___bytes_7)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_bytes_7() const { return ___bytes_7; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_bytes_7() { return &___bytes_7; }
inline void set_bytes_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___bytes_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bytes_7), (void*)value);
}
inline static int32_t get_offset_of_bytePos_8() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___textReader_10)); }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_textReader_10() const { return ___textReader_10; }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_textReader_10() { return &___textReader_10; }
inline void set_textReader_10(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value)
{
___textReader_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textReader_10), (void*)value);
}
inline static int32_t get_offset_of_lineNo_11() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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((void**)(&___baseUriStr_13), (void*)value);
}
inline static int32_t get_offset_of_baseUri_14() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___baseUri_14)); }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_baseUri_14() const { return ___baseUri_14; }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_baseUri_14() { return &___baseUri_14; }
inline void set_baseUri_14(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
{
___baseUri_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseUri_14), (void*)value);
}
inline static int32_t get_offset_of_isEof_15() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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((void**)(&___entity_17), (void*)value);
}
inline static int32_t get_offset_of_entityId_18() { return static_cast<int32_t>(offsetof(ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlTextReaderImpl/ParsingState
struct ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_pinvoke
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3;
int32_t ___appendMode_4;
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5;
Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6;
Il2CppSafeArray/*NONE*/* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
char* ___baseUriStr_13;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___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_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF_marshaled_com
{
uint8_t* ___chars_0;
int32_t ___charPos_1;
int32_t ___charsUsed_2;
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_3;
int32_t ___appendMode_4;
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5;
Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_6;
Il2CppSafeArray/*NONE*/* ___bytes_7;
int32_t ___bytePos_8;
int32_t ___bytesUsed_9;
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___textReader_10;
int32_t ___lineNo_11;
int32_t ___lineStartPos_12;
Il2CppChar* ___baseUriStr_13;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___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;
};
// System.Xml.XmlTextWriter/Namespace
struct Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB
{
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_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___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((void**)(&___prefix_0), (void*)value);
}
inline static int32_t get_offset_of_ns_1() { return static_cast<int32_t>(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___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((void**)(&___ns_1), (void*)value);
}
inline static int32_t get_offset_of_declared_2() { return static_cast<int32_t>(offsetof(Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___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_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/Namespace
struct Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_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_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___ns_1;
int32_t ___declared_2;
int32_t ___prevNsIndex_3;
};
// System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C
{
public:
// System.String System.Xml.XmlWellFormedWriter/AttrName::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlWellFormedWriter/AttrName::namespaceUri
String_t* ___namespaceUri_1;
// System.String System.Xml.XmlWellFormedWriter/AttrName::localName
String_t* ___localName_2;
// System.Int32 System.Xml.XmlWellFormedWriter/AttrName::prev
int32_t ___prev_3;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C, ___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((void**)(&___prefix_0), (void*)value);
}
inline static int32_t get_offset_of_namespaceUri_1() { return static_cast<int32_t>(offsetof(AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C, ___namespaceUri_1)); }
inline String_t* get_namespaceUri_1() const { return ___namespaceUri_1; }
inline String_t** get_address_of_namespaceUri_1() { return &___namespaceUri_1; }
inline void set_namespaceUri_1(String_t* value)
{
___namespaceUri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namespaceUri_1), (void*)value);
}
inline static int32_t get_offset_of_localName_2() { return static_cast<int32_t>(offsetof(AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C, ___localName_2)); }
inline String_t* get_localName_2() const { return ___localName_2; }
inline String_t** get_address_of_localName_2() { return &___localName_2; }
inline void set_localName_2(String_t* value)
{
___localName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___localName_2), (void*)value);
}
inline static int32_t get_offset_of_prev_3() { return static_cast<int32_t>(offsetof(AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C, ___prev_3)); }
inline int32_t get_prev_3() const { return ___prev_3; }
inline int32_t* get_address_of_prev_3() { return &___prev_3; }
inline void set_prev_3(int32_t value)
{
___prev_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C_marshaled_pinvoke
{
char* ___prefix_0;
char* ___namespaceUri_1;
char* ___localName_2;
int32_t ___prev_3;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/AttrName
struct AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___namespaceUri_1;
Il2CppChar* ___localName_2;
int32_t ___prev_3;
};
// System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1
{
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_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1, ___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_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1, ___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((void**)(&___replacement_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1_marshaled_pinvoke
{
uint8_t ___match_0;
char* ___replacement_1;
};
// Native definition for COM marshalling of System.Xml.Schema.FacetsChecker/FacetsCompiler/Map
struct Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1_marshaled_com
{
uint8_t ___match_0;
Il2CppChar* ___replacement_1;
};
// Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2<System.Object,System.Object>
struct U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA : public RuntimeObject
{
public:
// System.Int32 Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<>2__current
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___U3CU3E2__current_1;
// Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<TEnumeratorKey,TEnumeratorValue> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<>4__this
EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * ___U3CU3E4__this_2;
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue>> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<>s__1
RuntimeObject* ___U3CU3Es__1_3;
// System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<item>5__2
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___U3CitemU3E5__2_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA, ___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(U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA, ___U3CU3E2__current_1)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; }
inline void set_U3CU3E2__current_1(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___U3CU3E2__current_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CU3E2__current_1))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA, ___U3CU3E4__this_2)); }
inline EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value);
}
inline static int32_t get_offset_of_U3CU3Es__1_3() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA, ___U3CU3Es__1_3)); }
inline RuntimeObject* get_U3CU3Es__1_3() const { return ___U3CU3Es__1_3; }
inline RuntimeObject** get_address_of_U3CU3Es__1_3() { return &___U3CU3Es__1_3; }
inline void set_U3CU3Es__1_3(RuntimeObject* value)
{
___U3CU3Es__1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CU3Es__1_3), (void*)value);
}
inline static int32_t get_offset_of_U3CitemU3E5__2_4() { return static_cast<int32_t>(offsetof(U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA, ___U3CitemU3E5__2_4)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_U3CitemU3E5__2_4() const { return ___U3CitemU3E5__2_4; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_U3CitemU3E5__2_4() { return &___U3CitemU3E5__2_4; }
inline void set_U3CitemU3E5__2_4(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___U3CitemU3E5__2_4 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CitemU3E5__2_4))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CitemU3E5__2_4))->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
struct Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF
{
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
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___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_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___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_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___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_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___key_2)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_key_2() const { return ___key_2; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>
struct Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93
{
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_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___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_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___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_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___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_t93EE83F6AABF1097132D1968F2D35414B871BF93, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D
{
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
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___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_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___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_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___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_t2869E6078C7CCCBDE1D513E0741811192282AD2D, ___value_3)); }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE get_value_3() const { return ___value_3; }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>
struct Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C
{
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
intptr_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_tDBB97F1D3C77068A5F60D56F2C858787FC69280C, ___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_tDBB97F1D3C77068A5F60D56F2C858787FC69280C, ___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_tDBB97F1D3C77068A5F60D56F2C858787FC69280C, ___key_2)); }
inline intptr_t get_key_2() const { return ___key_2; }
inline intptr_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(intptr_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26
{
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_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___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_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___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_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26, ___value_3)); }
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_3() const { return ___value_3; }
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>
struct Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C
{
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
IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C, ___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_t2AC360282B389644DE3766CC38FC3F2113A6733C, ___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_t2AC360282B389644DE3766CC38FC3F2113A6733C, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C, ___value_3)); }
inline IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 get_value_3() const { return ___value_3; }
inline IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___IndexName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___TableName_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___Columns_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5
{
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
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___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_t2D084E1D7F7AAD3B522648211242520F3A35F0F5, ___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_t2D084E1D7F7AAD3B522648211242520F3A35F0F5, ___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_t2D084E1D7F7AAD3B522648211242520F3A35F0F5, ___key_2)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_key_2() const { return ___key_2; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>
struct Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72
{
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
TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 ___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_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72, ___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_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72, ___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_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72, ___key_2)); }
inline TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 get_key_2() const { return ___key_2; }
inline TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___AssemblyName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___TypeName_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>
struct Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F
{
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
uint64_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F, ___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_t9BD4E05FE646701488EE6B97A5981473BFE15E2F, ___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_t9BD4E05FE646701488EE6B97A5981473BFE15E2F, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F, ___value_3)); }
inline Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 get_value_3() const { return ___value_3; }
inline Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>
struct Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894
{
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
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD ___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_tECAFDCC7D6218B539EAA303199B4C665BA867894, ___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_tECAFDCC7D6218B539EAA303199B4C665BA867894, ___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_tECAFDCC7D6218B539EAA303199B4C665BA867894, ___key_2)); }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD get_key_2() const { return ___key_2; }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>
struct Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D
{
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
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD ___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_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D, ___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_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D, ___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_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D, ___key_2)); }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD get_key_2() const { return ___key_2; }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A
{
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_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___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_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___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_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___key_2)); }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_key_2() const { return ___key_2; }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___page_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A, ___value_3)); }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_value_3() const { return ___value_3; }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___page_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>
struct Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948
{
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
TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 ___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_tB9F380D02E832334385D4AE1D79D2B7A48796948, ___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_tB9F380D02E832334385D4AE1D79D2B7A48796948, ___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_tB9F380D02E832334385D4AE1D79D2B7A48796948, ___key_2)); }
inline TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 get_key_2() const { return ___key_2; }
inline TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->____initialType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->____targetType_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___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
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___list_0)); }
inline List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * get_list_0() const { return ___list_0; }
inline List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___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_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___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_tA73714A95511E4A3614246077E7C1FDAD5447D04, ___current_3)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>
struct Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * ___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
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA, ___list_0)); }
inline List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * get_list_0() const { return ___list_0; }
inline List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA, ___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_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA, ___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_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA, ___current_3)); }
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB get_current_3() const { return ___current_3; }
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>
struct Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * ___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
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6, ___list_0)); }
inline List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * get_list_0() const { return ___list_0; }
inline List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6, ___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_t86CECE1D5739065750077AF165FC2D5655AD13D6, ___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_t86CECE1D5739065750077AF165FC2D5655AD13D6, ___current_3)); }
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC get_current_3() const { return ___current_3; }
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___X_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___Y_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>
struct Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * ___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
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4, ___list_0)); }
inline List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * get_list_0() const { return ___list_0; }
inline List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4, ___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_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4, ___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_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4, ___current_3)); }
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE get_current_3() const { return ___current_3; }
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE value)
{
___current_3 = value;
}
};
// System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>
struct Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_list
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ____list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_node
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * ____node_1;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.LinkedList`1/Enumerator::_current
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ____current_3;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index
int32_t ____index_4;
public:
inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE, ____list_0)); }
inline LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * get__list_0() const { return ____list_0; }
inline LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B ** get_address_of__list_0() { return &____list_0; }
inline void set__list_0(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * value)
{
____list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value);
}
inline static int32_t get_offset_of__node_1() { return static_cast<int32_t>(offsetof(Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE, ____node_1)); }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * get__node_1() const { return ____node_1; }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 ** get_address_of__node_1() { return &____node_1; }
inline void set__node_1(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * value)
{
____node_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value);
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE, ____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_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE, ____current_3)); }
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 get__current_3() const { return ____current_3; }
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * get_address_of__current_3() { return &____current_3; }
inline void set__current_3(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____current_3))->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____current_3))->___Item2_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
};
// System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_list
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ____list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1/Enumerator::_node
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * ____node_1;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.LinkedList`1/Enumerator::_current
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ____current_3;
// System.Int32 System.Collections.Generic.LinkedList`1/Enumerator::_index
int32_t ____index_4;
public:
inline static int32_t get_offset_of__list_0() { return static_cast<int32_t>(offsetof(Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514, ____list_0)); }
inline LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * get__list_0() const { return ____list_0; }
inline LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 ** get_address_of__list_0() { return &____list_0; }
inline void set__list_0(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * value)
{
____list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____list_0), (void*)value);
}
inline static int32_t get_offset_of__node_1() { return static_cast<int32_t>(offsetof(Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514, ____node_1)); }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * get__node_1() const { return ____node_1; }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC ** get_address_of__node_1() { return &____node_1; }
inline void set__node_1(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * value)
{
____node_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____node_1), (void*)value);
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514, ____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_tDC59471D5148D9341C44E818E45BF04091D98514, ____current_3)); }
inline ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D get__current_3() const { return ____current_3; }
inline ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * get_address_of__current_3() { return &____current_3; }
inline void set__current_3(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D value)
{
____current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____current_3))->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____current_3))->___Item2_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&____current_3))->___Item3_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of__index_4() { return static_cast<int32_t>(offsetof(Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514, ____index_4)); }
inline int32_t get__index_4() const { return ____index_4; }
inline int32_t* get_address_of__index_4() { return &____index_4; }
inline void set__index_4(int32_t value)
{
____index_4 = value;
}
};
// Unity.Collections.NativeSlice`1/Enumerator<System.Byte>
struct Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B
{
public:
// Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSlice`1/Enumerator::m_Array
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B ___m_Array_0;
// System.Int32 Unity.Collections.NativeSlice`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B, ___m_Array_0)); }
inline NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B get_m_Array_0() const { return ___m_Array_0; }
inline NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B, ___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;
}
};
// System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>
struct Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B, ____set_0)); }
inline HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * get__set_0() const { return ____set_0; }
inline HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * value)
{
____set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value);
}
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B, ____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_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B, ____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_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B, ____current_3)); }
inline CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 get__current_3() const { return ____current_3; }
inline CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 * get_address_of__current_3() { return &____current_3; }
inline void set__current_3(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 value)
{
____current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>
struct Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___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
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753, ___list_0)); }
inline List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * get_list_0() const { return ___list_0; }
inline List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753, ___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_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753, ___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_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753, ___current_3)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_current_3() const { return ___current_3; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___current_3 = value;
}
};
// Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573
{
public:
// Unity.Collections.NativeSlice`1<T> Unity.Collections.NativeSlice`1/Enumerator::m_Array
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 ___m_Array_0;
// System.Int32 Unity.Collections.NativeSlice`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573, ___m_Array_0)); }
inline NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 get_m_Array_0() const { return ___m_Array_0; }
inline NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573, ___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;
}
};
// System.Collections.Generic.List`1/Enumerator<System.DateTime>
struct Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * ___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
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B, ___list_0)); }
inline List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * get_list_0() const { return ___list_0; }
inline List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B, ___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_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B, ___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_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B, ___current_3)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_current_3() const { return ___current_3; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Decimal>
struct Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * ___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
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021, ___list_0)); }
inline List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * get_list_0() const { return ___list_0; }
inline List_1_t137B540BF717527106254AA05BE36A51A068C8F5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021, ___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_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021, ___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_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021, ___current_3)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_current_3() const { return ___current_3; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>
struct Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___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
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9, ___list_0)); }
inline List_1_tE870449A6BC21548542BC92F18B284004FA8668A * get_list_0() const { return ___list_0; }
inline List_1_tE870449A6BC21548542BC92F18B284004FA8668A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE870449A6BC21548542BC92F18B284004FA8668A * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9, ___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_t60E904AEE37E2688632D36FADDC618A6F615F7D9, ___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_t60E904AEE37E2688632D36FADDC618A6F615F7D9, ___current_3)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_current_3() const { return ___current_3; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>
struct Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * ___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
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D, ___list_0)); }
inline List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * get_list_0() const { return ___list_0; }
inline List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D, ___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_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D, ___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_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D, ___current_3)); }
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E get_current_3() const { return ___current_3; }
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>
struct Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * ___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
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B, ___list_0)); }
inline List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * get_list_0() const { return ___list_0; }
inline List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B, ___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_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B, ___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_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B, ___current_3)); }
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 get_current_3() const { return ___current_3; }
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 value)
{
___current_3 = value;
}
};
// System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>
struct Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207, ____set_0)); }
inline HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * get__set_0() const { return ____set_0; }
inline HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * value)
{
____set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value);
}
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207, ____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_t0D41433B840FC0DD4F41C6C52972BD47C1977207, ____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_t0D41433B840FC0DD4F41C6C52972BD47C1977207, ____current_3)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get__current_3() const { return ____current_3; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of__current_3() { return &____current_3; }
inline void set__current_3(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
____current_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>
struct KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___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_t1B914BF18094476B791944B44FA368D34B03BD89, ___key_0)); }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_key_0() const { return ___key_0; }
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___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_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___key_0)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_key_0() const { return ___key_0; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>
struct KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F
{
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_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F, ___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_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>
struct KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B, ___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_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B, ___value_1)); }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE get_value_1() const { return ___value_1; }
inline XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Name_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Entries_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>
struct KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
intptr_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_t9929596D6B05353257A804D74C9405F53868F45F, ___key_0)); }
inline intptr_t get_key_0() const { return ___key_0; }
inline intptr_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(intptr_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF, ___value_1)); }
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 get_value_1() const { return ___value_1; }
inline ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>
struct KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E, ___value_1)); }
inline IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 get_value_1() const { return ___value_1; }
inline IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___IndexName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___TableName_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___Columns_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___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_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D, ___key_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_key_0() const { return ___key_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>
struct KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 ___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_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD, ___key_0)); }
inline TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 get_key_0() const { return ___key_0; }
inline TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___AssemblyName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___TypeName_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>
struct KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D, ___value_1)); }
inline Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 get_value_1() const { return ___value_1; }
inline Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>
struct KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD ___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_t1E62AD339E3FE56353154AC5680D3D99348B836B, ___key_0)); }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD get_key_0() const { return ___key_0; }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B, ___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;
}
};
// System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>
struct KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD ___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_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74, ___key_0)); }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD get_key_0() const { return ___key_0; }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>
struct KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717, ___key_0)); }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_key_0() const { return ___key_0; }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___page_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717, ___value_1)); }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 get_value_1() const { return ___value_1; }
inline XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___page_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>
struct KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 ___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_t657BDC96FF3F7A00EB85AAA602250F3E237B5963, ___key_0)); }
inline TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 get_key_0() const { return ___key_0; }
inline TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->____initialType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->____targetType_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.ValueTuple`2<System.Object,System.Object>>
struct LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10, ___list_0)); }
inline LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * get_list_0() const { return ___list_0; }
inline LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10, ___next_1)); }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10, ___prev_2)); }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10, ___item_3)); }
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 get_item_3() const { return ___item_3; }
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * get_address_of_item_3() { return &___item_3; }
inline void set_item_3(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___item_3))->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___item_3))->___Item2_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.LinkedListNode`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>
struct LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC, ___list_0)); }
inline LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * get_list_0() const { return ___list_0; }
inline LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC, ___next_1)); }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC, ___prev_2)); }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC, ___item_3)); }
inline ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D get_item_3() const { return ___item_3; }
inline ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * get_address_of_item_3() { return &___item_3; }
inline void set_item_3(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___item_3))->___Item1_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___item_3))->___Item2_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___item_3))->___Item3_2), (void*)NULL);
#endif
}
};
// System.Data.RBTree`1/NodeColor<System.Int32>
struct NodeColor_t53B46D8E15B8D147D7D413BECF7C6D695F734F7C
{
public:
// System.Int32 System.Data.RBTree`1/NodeColor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NodeColor_t53B46D8E15B8D147D7D413BECF7C6D695F734F7C, ___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;
}
};
// System.Data.RBTree`1/NodeColor<System.Object>
struct NodeColor_tFCE936798E77921D3C3D7C0161832B25D5977A3C
{
public:
// System.Int32 System.Data.RBTree`1/NodeColor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NodeColor_tFCE936798E77921D3C3D7C0161832B25D5977A3C, ___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;
}
};
// System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>
struct Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69
{
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
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69, ___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_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69, ___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_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69, ___value_2)); }
inline CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 get_value_2() const { return ___value_2; }
inline CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 value)
{
___value_2 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>
struct Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46
{
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
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___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_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___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_tC220CE39D614D00A90A9A213DC270E937D4A4D46, ___value_2)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_value_2() const { return ___value_2; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
___value_2 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>
struct Slot_tF19B24344565224A40EBF69AE775C757153B1467
{
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
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tF19B24344565224A40EBF69AE775C757153B1467, ___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_tF19B24344565224A40EBF69AE775C757153B1467, ___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_tF19B24344565224A40EBF69AE775C757153B1467, ___value_2)); }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD get_value_2() const { return ___value_2; }
inline UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD * get_address_of_value_2() { return &___value_2; }
inline void set_value_2(UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD value)
{
___value_2 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>
struct TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___itemStack_0)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get_itemStack_0() const { return ___itemStack_0; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___m_DefaultItem_2)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>
struct TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
MaterialReferenceU5BU5D_t06D1C1249B8051EC092684920106F77B6FC203FD* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___itemStack_0)); }
inline MaterialReferenceU5BU5D_t06D1C1249B8051EC092684920106F77B6FC203FD* get_itemStack_0() const { return ___itemStack_0; }
inline MaterialReferenceU5BU5D_t06D1C1249B8051EC092684920106F77B6FC203FD** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(MaterialReferenceU5BU5D_t06D1C1249B8051EC092684920106F77B6FC203FD* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___m_DefaultItem_2)); }
inline MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B * get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B value)
{
___m_DefaultItem_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___fontAsset_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___fallbackMaterial_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// UnityEngine.XR.ARCore.ARCoreFaceRegion
struct ARCoreFaceRegion_t1C15D961C65A62B99563CCF843093D53AC251412
{
public:
// System.Int32 UnityEngine.XR.ARCore.ARCoreFaceRegion::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ARCoreFaceRegion_t1C15D961C65A62B99563CCF843093D53AC251412, ___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;
}
};
// Unity.Collections.Allocator
struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05
{
public:
// System.Int32 Unity.Collections.Allocator::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___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;
}
};
// UnityEngine.XR.AvailableTrackingData
struct AvailableTrackingData_tECF9F41E063E32F92AF43156E0C61190C82B47FC
{
public:
// System.Int32 UnityEngine.XR.AvailableTrackingData::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AvailableTrackingData_tECF9F41E063E32F92AF43156E0C61190C82B47FC, ___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;
}
};
// Mapbox.Utils.BearingFilter
struct BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25
{
public:
// System.Nullable`1<System.Double> Mapbox.Utils.BearingFilter::Bearing
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Bearing_0;
// System.Nullable`1<System.Double> Mapbox.Utils.BearingFilter::Range
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Range_1;
public:
inline static int32_t get_offset_of_Bearing_0() { return static_cast<int32_t>(offsetof(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25, ___Bearing_0)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_Bearing_0() const { return ___Bearing_0; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_Bearing_0() { return &___Bearing_0; }
inline void set_Bearing_0(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___Bearing_0 = value;
}
inline static int32_t get_offset_of_Range_1() { return static_cast<int32_t>(offsetof(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25, ___Range_1)); }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 get_Range_1() const { return ___Range_1; }
inline Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 * get_address_of_Range_1() { return &___Range_1; }
inline void set_Range_1(Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 value)
{
___Range_1 = value;
}
};
// Native definition for P/Invoke marshalling of Mapbox.Utils.BearingFilter
struct BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25_marshaled_pinvoke
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Bearing_0;
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Range_1;
};
// Native definition for COM marshalling of Mapbox.Utils.BearingFilter
struct BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25_marshaled_com
{
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Bearing_0;
Nullable_1_t75730434CAD4E48A4EE117588CFD586FFBCAC209 ___Range_1;
};
// System.Reflection.BindingFlags
struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___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;
}
};
// UnityEngine.Bounds
struct Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37
{
public:
// UnityEngine.Vector3 UnityEngine.Bounds::m_Center
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Center_0;
// UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Extents_1;
public:
inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37, ___m_Center_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Center_0() const { return ___m_Center_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Center_0() { return &___m_Center_0; }
inline void set_m_Center_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Center_0 = value;
}
inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37, ___m_Extents_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Extents_1() const { return ___m_Extents_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Extents_1() { return &___m_Extents_1; }
inline void set_m_Extents_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Extents_1 = value;
}
};
// System.ByteEnum
struct ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307, ___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;
}
};
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 value)
{
___m_registrationInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_NormalColor_0)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_HighlightedColor_1)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_PressedColor_2)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_SelectedColor_3)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_DisabledColor_4)); }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
struct ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields
{
public:
// UnityEngine.UI.ColorBlock UnityEngine.UI.ColorBlock::defaultColorBlock
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 ___defaultColorBlock_7;
public:
inline static int32_t get_offset_of_defaultColorBlock_7() { return static_cast<int32_t>(offsetof(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955_StaticFields, ___defaultColorBlock_7)); }
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 get_defaultColorBlock_7() const { return ___defaultColorBlock_7; }
inline ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 * get_address_of_defaultColorBlock_7() { return &___defaultColorBlock_7; }
inline void set_defaultColorBlock_7(ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 value)
{
___defaultColorBlock_7 = value;
}
};
// System.Globalization.CompareOptions
struct CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725
{
public:
// System.Int32 System.Globalization.CompareOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725, ___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;
}
};
// UnityEngine.ContactPoint
struct ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___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_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_Point_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___m_Normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___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_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___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_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017, ___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;
}
};
// System.Net.CookieToken
struct CookieToken_tBD532A435A4CA3813387EE31B5906C993A3F81DD
{
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_tBD532A435A4CA3813387EE31B5906C993A3F81DD, ___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;
}
};
// System.Net.CookieVariant
struct CookieVariant_tD627E5E4655DB30095BE805EB361BBCD7539463E
{
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_tD627E5E4655DB30095BE805EB361BBCD7539463E, ___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;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 ___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_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA, ___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((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_pinvoke
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA_marshaled_com
{
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// System.DateTimeOffset
struct DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5
{
public:
// System.DateTime System.DateTimeOffset::m_dateTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___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_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___m_dateTime_2)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_m_dateTime_2() const { return ___m_dateTime_2; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_m_dateTime_2() { return &___m_dateTime_2; }
inline void set_m_dateTime_2(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___m_dateTime_2 = value;
}
inline static int32_t get_offset_of_m_offsetMinutes_3() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5, ___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_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields
{
public:
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___MaxValue_1;
public:
inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MinValue_0)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MinValue_0() const { return ___MinValue_0; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MinValue_0() { return &___MinValue_0; }
inline void set_MinValue_0(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___MinValue_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5_StaticFields, ___MaxValue_1)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_MaxValue_1() const { return ___MaxValue_1; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___MaxValue_1 = value;
}
};
// System.Delegate
struct Delegate_t : 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t, ___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_t, ___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_t, ___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((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___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_t, ___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_t, ___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_t, ___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_t, ___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((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___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((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___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((void**)(&____className_1), (void*)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((void**)(&____message_2), (void*)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((void**)(&____data_3), (void*)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((void**)(&____innerException_4), (void*)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((void**)(&____helpURL_5), (void*)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((void**)(&____stackTrace_6), (void*)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((void**)(&____stackTraceString_7), (void*)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((void**)(&____remoteStackTraceString_8), (void*)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((void**)(&____dynamicMethods_10), (void*)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((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)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_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)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((void**)(&___s_EDILock_0), (void*)value);
}
};
// 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.ExceptionResource
struct ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA
{
public:
// System.Int32 System.ExceptionResource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA, ___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;
}
};
// TMPro.Extents
struct Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA
{
public:
// UnityEngine.Vector2 TMPro.Extents::min
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___min_2;
// UnityEngine.Vector2 TMPro.Extents::max
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___max_3;
public:
inline static int32_t get_offset_of_min_2() { return static_cast<int32_t>(offsetof(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA, ___min_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_min_2() const { return ___min_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_min_2() { return &___min_2; }
inline void set_min_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___min_2 = value;
}
inline static int32_t get_offset_of_max_3() { return static_cast<int32_t>(offsetof(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA, ___max_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_max_3() const { return ___max_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_max_3() { return &___max_3; }
inline void set_max_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___max_3 = value;
}
};
struct Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA_StaticFields
{
public:
// TMPro.Extents TMPro.Extents::zero
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___zero_0;
// TMPro.Extents TMPro.Extents::uninitialized
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___uninitialized_1;
public:
inline static int32_t get_offset_of_zero_0() { return static_cast<int32_t>(offsetof(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA_StaticFields, ___zero_0)); }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA get_zero_0() const { return ___zero_0; }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA * get_address_of_zero_0() { return &___zero_0; }
inline void set_zero_0(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA value)
{
___zero_0 = value;
}
inline static int32_t get_offset_of_uninitialized_1() { return static_cast<int32_t>(offsetof(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA_StaticFields, ___uninitialized_1)); }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA get_uninitialized_1() const { return ___uninitialized_1; }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA * get_address_of_uninitialized_1() { return &___uninitialized_1; }
inline void set_uninitialized_1(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA value)
{
___uninitialized_1 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.FalloffType
struct FalloffType_t983DA2C11C909629E51BD1D4CF088C689C9863CB
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.FalloffType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FalloffType_t983DA2C11C909629E51BD1D4CF088C689C9863CB, ___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;
}
};
// UnityEngine.XR.ARSubsystems.Feature
struct Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83
{
public:
// System.UInt64 UnityEngine.XR.ARSubsystems.Feature::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Feature_t079F5923A4893A9E07B968C27F44AC5FCAC87C83, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags
struct FontFeatureLookupFlags_t37E41419FC68819F0CA4BD748675CE571DEA2781
{
public:
// System.Int32 UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontFeatureLookupFlags_t37E41419FC68819F0CA4BD748675CE571DEA2781, ___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;
}
};
// TMPro.FontStyles
struct FontStyles_tAB9AC2C8316219AE73612ED4DD60417C14B5B74C
{
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_tAB9AC2C8316219AE73612ED4DD60417C14B5B74C, ___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;
}
};
// TMPro.FontWeight
struct FontWeight_tBF8B23C3A4F63D5602FEC93BE775C93CA4DDDC26
{
public:
// System.Int32 TMPro.FontWeight::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontWeight_tBF8B23C3A4F63D5602FEC93BE775C93CA4DDDC26, ___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;
}
};
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord
struct GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphIndex
uint32_t ___m_GlyphIndex_0;
// UnityEngine.TextCore.LowLevel.GlyphValueRecord UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord::m_GlyphValueRecord
GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 ___m_GlyphValueRecord_1;
public:
inline static int32_t get_offset_of_m_GlyphIndex_0() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA, ___m_GlyphIndex_0)); }
inline uint32_t get_m_GlyphIndex_0() const { return ___m_GlyphIndex_0; }
inline uint32_t* get_address_of_m_GlyphIndex_0() { return &___m_GlyphIndex_0; }
inline void set_m_GlyphIndex_0(uint32_t value)
{
___m_GlyphIndex_0 = value;
}
inline static int32_t get_offset_of_m_GlyphValueRecord_1() { return static_cast<int32_t>(offsetof(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA, ___m_GlyphValueRecord_1)); }
inline GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 get_m_GlyphValueRecord_1() const { return ___m_GlyphValueRecord_1; }
inline GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 * get_address_of_m_GlyphValueRecord_1() { return &___m_GlyphValueRecord_1; }
inline void set_m_GlyphValueRecord_1(GlyphValueRecord_tC3EE2C6CB47827CE4BD352D84B3E9E540567DAB3 value)
{
___m_GlyphValueRecord_1 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct
struct GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19
{
public:
// System.UInt32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::index
uint32_t ___index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::metrics
GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B ___metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::glyphRect
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ___glyphRect_2;
// System.Single UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::scale
float ___scale_3;
// System.Int32 UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct::atlasIndex
int32_t ___atlasIndex_4;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___index_0)); }
inline uint32_t get_index_0() const { return ___index_0; }
inline uint32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(uint32_t value)
{
___index_0 = value;
}
inline static int32_t get_offset_of_metrics_1() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___metrics_1)); }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B get_metrics_1() const { return ___metrics_1; }
inline GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B * get_address_of_metrics_1() { return &___metrics_1; }
inline void set_metrics_1(GlyphMetrics_t46B609AF0FC41272561342E8B5AEF35E4E1B537B value)
{
___metrics_1 = value;
}
inline static int32_t get_offset_of_glyphRect_2() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___glyphRect_2)); }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D get_glyphRect_2() const { return ___glyphRect_2; }
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * get_address_of_glyphRect_2() { return &___glyphRect_2; }
inline void set_glyphRect_2(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
___glyphRect_2 = value;
}
inline static int32_t get_offset_of_scale_3() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___scale_3)); }
inline float get_scale_3() const { return ___scale_3; }
inline float* get_address_of_scale_3() { return &___scale_3; }
inline void set_scale_3(float value)
{
___scale_3 = value;
}
inline static int32_t get_offset_of_atlasIndex_4() { return static_cast<int32_t>(offsetof(GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19, ___atlasIndex_4)); }
inline int32_t get_atlasIndex_4() const { return ___atlasIndex_4; }
inline int32_t* get_address_of_atlasIndex_4() { return &___atlasIndex_4; }
inline void set_atlasIndex_4(int32_t value)
{
___atlasIndex_4 = value;
}
};
// TMPro.HighlightState
struct HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759
{
public:
// UnityEngine.Color32 TMPro.HighlightState::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_0;
// TMPro.TMP_Offset TMPro.HighlightState::padding
TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 ___padding_1;
public:
inline static int32_t get_offset_of_color_0() { return static_cast<int32_t>(offsetof(HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759, ___color_0)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_0() const { return ___color_0; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_0() { return &___color_0; }
inline void set_color_0(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_0 = value;
}
inline static int32_t get_offset_of_padding_1() { return static_cast<int32_t>(offsetof(HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759, ___padding_1)); }
inline TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 get_padding_1() const { return ___padding_1; }
inline TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 * get_address_of_padding_1() { return &___padding_1; }
inline void set_padding_1(TMP_Offset_tFD2420EE03933F6A720EB5B66ED6B4FB67AE2117 value)
{
___padding_1 = value;
}
};
// TMPro.HorizontalAlignmentOptions
struct HorizontalAlignmentOptions_tCBBC74167BDEF6B5B510DDC43B5136F793A05193
{
public:
// System.Int32 TMPro.HorizontalAlignmentOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HorizontalAlignmentOptions_tCBBC74167BDEF6B5B510DDC43B5136F793A05193, ___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;
}
};
// System.Int32Enum
struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___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;
}
};
// Mapbox.Json.JsonContainerType
struct JsonContainerType_t64A6B4C918C529BA3DF6337CA5A030B3C3048531
{
public:
// System.Int32 Mapbox.Json.JsonContainerType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(JsonContainerType_t64A6B4C918C529BA3DF6337CA5A030B3C3048531, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightMode
struct LightMode_t9D89979F39C1DBB9CD1E275BDD77C7EA1B506491
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightMode::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightMode_t9D89979F39C1DBB9CD1E275BDD77C7EA1B506491, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightType
struct LightType_t4205DE4BEF130CE507C87172DAB60E5B1EB05552
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t4205DE4BEF130CE507C87172DAB60E5B1EB05552, ___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;
}
};
// UnityEngine.XR.ARCore.ManagedReferenceImage
struct ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10
{
public:
// System.Guid UnityEngine.XR.ARCore.ManagedReferenceImage::guid
Guid_t ___guid_0;
// System.Guid UnityEngine.XR.ARCore.ManagedReferenceImage::textureGuid
Guid_t ___textureGuid_1;
// UnityEngine.Vector2 UnityEngine.XR.ARCore.ManagedReferenceImage::size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___size_2;
// System.IntPtr UnityEngine.XR.ARCore.ManagedReferenceImage::name
intptr_t ___name_3;
// System.IntPtr UnityEngine.XR.ARCore.ManagedReferenceImage::texture
intptr_t ___texture_4;
public:
inline static int32_t get_offset_of_guid_0() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10, ___guid_0)); }
inline Guid_t get_guid_0() const { return ___guid_0; }
inline Guid_t * get_address_of_guid_0() { return &___guid_0; }
inline void set_guid_0(Guid_t value)
{
___guid_0 = value;
}
inline static int32_t get_offset_of_textureGuid_1() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10, ___textureGuid_1)); }
inline Guid_t get_textureGuid_1() const { return ___textureGuid_1; }
inline Guid_t * get_address_of_textureGuid_1() { return &___textureGuid_1; }
inline void set_textureGuid_1(Guid_t value)
{
___textureGuid_1 = value;
}
inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10, ___size_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_size_2() const { return ___size_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_size_2() { return &___size_2; }
inline void set_size_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___size_2 = value;
}
inline static int32_t get_offset_of_name_3() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10, ___name_3)); }
inline intptr_t get_name_3() const { return ___name_3; }
inline intptr_t* get_address_of_name_3() { return &___name_3; }
inline void set_name_3(intptr_t value)
{
___name_3 = value;
}
inline static int32_t get_offset_of_texture_4() { return static_cast<int32_t>(offsetof(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10, ___texture_4)); }
inline intptr_t get_texture_4() const { return ___texture_4; }
inline intptr_t* get_address_of_texture_4() { return &___texture_4; }
inline void set_texture_4(intptr_t value)
{
___texture_4 = value;
}
};
// UnityEngine.XR.MeshChangeState
struct MeshChangeState_t577B449627A869D7B8E062F9D9C218418790E046
{
public:
// System.Int32 UnityEngine.XR.MeshChangeState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MeshChangeState_t577B449627A869D7B8E062F9D9C218418790E046, ___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;
}
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : 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_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_tF2F3778131EFF286AF62B7B013A170F95A91571A_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;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Plane
struct Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_2;
public:
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7, ___m_Normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_Distance_2() { return static_cast<int32_t>(offsetof(Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7, ___m_Distance_2)); }
inline float get_m_Distance_2() const { return ___m_Distance_2; }
inline float* get_address_of_m_Distance_2() { return &___m_Distance_2; }
inline void set_m_Distance_2(float value)
{
___m_Distance_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.PlaneAlignment
struct PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneAlignment::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneAlignment_t1BB7048E3969913434FB1B3BCBCA2E81D4E71ADA, ___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;
}
};
// UnityEngine.XR.ARSubsystems.PlaneClassification
struct PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.PlaneClassification::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlaneClassification_tAC2E2E9609D4396BC311E2987CA3EFA5115EDD10, ___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;
}
};
// UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C
{
public:
// System.Type UnityEngine.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.LowLevel.PlayerLoopSystem[] UnityEngine.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_t3BA4C765F5D8A6C384A54624258E9A167CA8CD17* ___subSystemList_1;
// UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction UnityEngine.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_tEDC2A88F61F179480CAA9443E6ADDA3F126B8AEA * ___updateDelegate_2;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C, ___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((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_t3BA4C765F5D8A6C384A54624258E9A167CA8CD17* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_t3BA4C765F5D8A6C384A54624258E9A167CA8CD17** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_t3BA4C765F5D8A6C384A54624258E9A167CA8CD17* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C, ___updateDelegate_2)); }
inline UpdateFunction_tEDC2A88F61F179480CAA9443E6ADDA3F126B8AEA * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_tEDC2A88F61F179480CAA9443E6ADDA3F126B8AEA ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_tEDC2A88F61F179480CAA9443E6ADDA3F126B8AEA * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C, ___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_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C, ___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;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// UnityEngine.Pose
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A
{
public:
// UnityEngine.Vector3 UnityEngine.Pose::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Quaternion UnityEngine.Pose::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_1;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_rotation_1() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A, ___rotation_1)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_1() const { return ___rotation_1; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_1() { return &___rotation_1; }
inline void set_rotation_1(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_1 = value;
}
};
struct Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields
{
public:
// UnityEngine.Pose UnityEngine.Pose::k_Identity
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___k_Identity_2;
public:
inline static int32_t get_offset_of_k_Identity_2() { return static_cast<int32_t>(offsetof(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A_StaticFields, ___k_Identity_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_k_Identity_2() const { return ___k_Identity_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_k_Identity_2() { return &___k_Identity_2; }
inline void set_k_Identity_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___k_Identity_2 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___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_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Point_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___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_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___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_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_UV_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___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;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Centroid_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Point_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Normal_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___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;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___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_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___m_GameObject_0)); }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___module_1)); }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___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_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___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_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___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_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___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_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___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_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldPosition_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___worldNormal_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___screenPosition_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_pinvoke
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// Native definition for COM marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE_marshaled_com
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_GameObject_0;
BaseRaycaster_tBC0FB2CBE6D3D40991EC20F689C43F76AD82A876 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPosition_7;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldNormal_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___screenPosition_9;
int32_t ___displayIndex_10;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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;
}
};
// System.Data.SqlTypes.SqlCompareOptions
struct SqlCompareOptions_tE6B6889C977EFFF3D7DE2B565D89163F9FA6ECE3
{
public:
// System.Int32 System.Data.SqlTypes.SqlCompareOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SqlCompareOptions_tE6B6889C977EFFF3D7DE2B565D89163F9FA6ECE3, ___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;
}
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___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;
}
};
// TMPro.TMP_TextElementType
struct TMP_TextElementType_t4BDF96DA2071216188B19EB33C35912BD185ECA3
{
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_t4BDF96DA2071216188B19EB33C35912BD185ECA3, ___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;
}
};
// TMPro.TMP_Vertex
struct TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E
{
public:
// UnityEngine.Vector3 TMPro.TMP_Vertex::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___uv_1;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv2
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___uv2_2;
// UnityEngine.Vector2 TMPro.TMP_Vertex::uv4
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___uv4_3;
// UnityEngine.Color32 TMPro.TMP_Vertex::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_4;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_uv_1() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E, ___uv_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_uv_1() const { return ___uv_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_uv_1() { return &___uv_1; }
inline void set_uv_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___uv_1 = value;
}
inline static int32_t get_offset_of_uv2_2() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E, ___uv2_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_uv2_2() const { return ___uv2_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_uv2_2() { return &___uv2_2; }
inline void set_uv2_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___uv2_2 = value;
}
inline static int32_t get_offset_of_uv4_3() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E, ___uv4_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_uv4_3() const { return ___uv4_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_uv4_3() { return &___uv4_3; }
inline void set_uv4_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___uv4_3 = value;
}
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E, ___color_4)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_4() const { return ___color_4; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_4 = value;
}
};
struct TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E_StaticFields
{
public:
// TMPro.TMP_Vertex TMPro.TMP_Vertex::k_Zero
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___k_Zero_5;
public:
inline static int32_t get_offset_of_k_Zero_5() { return static_cast<int32_t>(offsetof(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E_StaticFields, ___k_Zero_5)); }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E get_k_Zero_5() const { return ___k_Zero_5; }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E * get_address_of_k_Zero_5() { return &___k_Zero_5; }
inline void set_k_Zero_5(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E value)
{
___k_Zero_5 = value;
}
};
// TMPro.TagUnitType
struct TagUnitType_t49D497DCEF602CC71A9788FB5C964D7AA57ED107
{
public:
// System.Int32 TMPro.TagUnitType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagUnitType_t49D497DCEF602CC71A9788FB5C964D7AA57ED107, ___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;
}
};
// TMPro.TagValueType
struct TagValueType_t45477BE8BE064D51E9DF1DAE60A0C84D7CDD564C
{
public:
// System.Int32 TMPro.TagValueType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TagValueType_t45477BE8BE064D51E9DF1DAE60A0C84D7CDD564C, ___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;
}
};
// UnityEngine.Rendering.TextureDimension
struct TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC
{
public:
// System.Int32 UnityEngine.Rendering.TextureDimension::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureDimension_tADCCB7C1D30E4D1182651BA9094B4DE61B63EACC, ___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;
}
};
// UnityEngine.TextureFormat
struct TextureFormat_tBED5388A0445FE978F97B41D247275B036407932
{
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_tBED5388A0445FE978F97B41D247275B036407932, ___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;
}
};
// System.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; }
inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_19 = value;
}
inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; }
inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_20 = value;
}
inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; }
inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_21 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_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;
}
};
// System.Data.Tokens
struct Tokens_t7F7B46C51F508BB849DE2C84D182B5F7DFFE0B16
{
public:
// System.Int32 System.Data.Tokens::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Tokens_t7F7B46C51F508BB849DE2C84D182B5F7DFFE0B16, ___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;
}
};
// Mapbox.ProbeExtractorCs.TracePoint
struct TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E
{
public:
// System.Int64 Mapbox.ProbeExtractorCs.TracePoint::Timestamp
int64_t ___Timestamp_0;
// System.Double Mapbox.ProbeExtractorCs.TracePoint::Latitude
double ___Latitude_1;
// System.Double Mapbox.ProbeExtractorCs.TracePoint::Longitude
double ___Longitude_2;
// System.Double Mapbox.ProbeExtractorCs.TracePoint::Bearing
double ___Bearing_3;
// System.Nullable`1<System.Single> Mapbox.ProbeExtractorCs.TracePoint::Elevation
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___Elevation_4;
// System.Nullable`1<System.Single> Mapbox.ProbeExtractorCs.TracePoint::HDop
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___HDop_5;
// System.Nullable`1<System.Single> Mapbox.ProbeExtractorCs.TracePoint::VDop
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___VDop_6;
public:
inline static int32_t get_offset_of_Timestamp_0() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___Timestamp_0)); }
inline int64_t get_Timestamp_0() const { return ___Timestamp_0; }
inline int64_t* get_address_of_Timestamp_0() { return &___Timestamp_0; }
inline void set_Timestamp_0(int64_t value)
{
___Timestamp_0 = value;
}
inline static int32_t get_offset_of_Latitude_1() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___Latitude_1)); }
inline double get_Latitude_1() const { return ___Latitude_1; }
inline double* get_address_of_Latitude_1() { return &___Latitude_1; }
inline void set_Latitude_1(double value)
{
___Latitude_1 = value;
}
inline static int32_t get_offset_of_Longitude_2() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___Longitude_2)); }
inline double get_Longitude_2() const { return ___Longitude_2; }
inline double* get_address_of_Longitude_2() { return &___Longitude_2; }
inline void set_Longitude_2(double value)
{
___Longitude_2 = value;
}
inline static int32_t get_offset_of_Bearing_3() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___Bearing_3)); }
inline double get_Bearing_3() const { return ___Bearing_3; }
inline double* get_address_of_Bearing_3() { return &___Bearing_3; }
inline void set_Bearing_3(double value)
{
___Bearing_3 = value;
}
inline static int32_t get_offset_of_Elevation_4() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___Elevation_4)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_Elevation_4() const { return ___Elevation_4; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_Elevation_4() { return &___Elevation_4; }
inline void set_Elevation_4(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___Elevation_4 = value;
}
inline static int32_t get_offset_of_HDop_5() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___HDop_5)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_HDop_5() const { return ___HDop_5; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_HDop_5() { return &___HDop_5; }
inline void set_HDop_5(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___HDop_5 = value;
}
inline static int32_t get_offset_of_VDop_6() { return static_cast<int32_t>(offsetof(TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E, ___VDop_6)); }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A get_VDop_6() const { return ___VDop_6; }
inline Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * get_address_of_VDop_6() { return &___VDop_6; }
inline void set_VDop_6(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A value)
{
___VDop_6 = value;
}
};
// Native definition for P/Invoke marshalling of Mapbox.ProbeExtractorCs.TracePoint
struct TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E_marshaled_pinvoke
{
int64_t ___Timestamp_0;
double ___Latitude_1;
double ___Longitude_2;
double ___Bearing_3;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___Elevation_4;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___HDop_5;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___VDop_6;
};
// Native definition for COM marshalling of Mapbox.ProbeExtractorCs.TracePoint
struct TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E_marshaled_com
{
int64_t ___Timestamp_0;
double ___Latitude_1;
double ___Longitude_2;
double ___Bearing_3;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___Elevation_4;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___HDop_5;
Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A ___VDop_6;
};
// UnityEngine.XR.ARSubsystems.TrackableType
struct TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackableType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackableType_t2352F7091A5BE0192C8D908019BA7481A347C85F, ___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;
}
};
// UnityEngine.XR.ARSubsystems.TrackingState
struct TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.TrackingState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TrackingState_tB6996ED0D52D2A17DFACC90800705B81D370FC38, ___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;
}
};
// System.TypeCode
struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C
{
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_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___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;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A, ___cursorPos_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A, ___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;
}
};
// UnityEngine.UIVertex
struct UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_3;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv0
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv0_4;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv1
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv1_5;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv2
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv2_6;
// UnityEngine.Vector4 UnityEngine.UIVertex::uv3
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_0() const { return ___position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___normal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_normal_1() const { return ___normal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___tangent_2)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_tangent_2() const { return ___tangent_2; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___color_3)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_3() const { return ___color_3; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv0_4)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv0_4() const { return ___uv0_4; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv1_5)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv1_5() const { return ___uv1_5; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv2_6)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv2_6() const { return ___uv2_6; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A, ___uv3_7)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_uv3_7() const { return ___uv3_7; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___uv3_7 = value;
}
};
struct UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___s_DefaultColor_8)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A_StaticFields, ___simpleVert_10)); }
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A value)
{
___simpleVert_10 = value;
}
};
// System.UInt16Enum
struct UInt16Enum_tF2B459B3D0051061056FFACAB957767640B848ED
{
public:
// System.UInt16 System.UInt16Enum::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt16Enum_tF2B459B3D0051061056FFACAB957767640B848ED, ___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;
}
};
// System.UInt32Enum
struct UInt32Enum_t205AC9FF1DBA9F24788030B596D7BE3A2E808EF1
{
public:
// System.UInt32 System.UInt32Enum::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt32Enum_t205AC9FF1DBA9F24788030B596D7BE3A2E808EF1, ___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;
}
};
// System.Security.Cryptography.X509Certificates.X509ChainStatusFlags
struct X509ChainStatusFlags_t16F457BB24891840519B66C39DE91268909174F9
{
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_t16F457BB24891840519B66C39DE91268909174F9, ___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;
}
};
// UnityEngine.XR.ARSubsystems.XRCameraConfiguration
struct XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A
{
public:
// UnityEngine.Vector2Int UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Resolution
Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 ___m_Resolution_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_Framerate
int32_t ___m_Framerate_1;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRCameraConfiguration::m_NativeConfigurationHandle
intptr_t ___m_NativeConfigurationHandle_2;
public:
inline static int32_t get_offset_of_m_Resolution_0() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_Resolution_0)); }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 get_m_Resolution_0() const { return ___m_Resolution_0; }
inline Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 * get_address_of_m_Resolution_0() { return &___m_Resolution_0; }
inline void set_m_Resolution_0(Vector2Int_tF49F5C2443670DE126D9EC8DBE81D8F480EAA6E9 value)
{
___m_Resolution_0 = value;
}
inline static int32_t get_offset_of_m_Framerate_1() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_Framerate_1)); }
inline int32_t get_m_Framerate_1() const { return ___m_Framerate_1; }
inline int32_t* get_address_of_m_Framerate_1() { return &___m_Framerate_1; }
inline void set_m_Framerate_1(int32_t value)
{
___m_Framerate_1 = value;
}
inline static int32_t get_offset_of_m_NativeConfigurationHandle_2() { return static_cast<int32_t>(offsetof(XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A, ___m_NativeConfigurationHandle_2)); }
inline intptr_t get_m_NativeConfigurationHandle_2() const { return ___m_NativeConfigurationHandle_2; }
inline intptr_t* get_address_of_m_NativeConfigurationHandle_2() { return &___m_NativeConfigurationHandle_2; }
inline void set_m_NativeConfigurationHandle_2(intptr_t value)
{
___m_NativeConfigurationHandle_2 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint
struct XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Position
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Position_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint::m_Tracked
int32_t ___m_Tracked_3;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Position_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Position_2() const { return ___m_Position_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Tracked_3() { return static_cast<int32_t>(offsetof(XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4, ___m_Tracked_3)); }
inline int32_t get_m_Tracked_3() const { return ___m_Tracked_3; }
inline int32_t* get_address_of_m_Tracked_3() { return &___m_Tracked_3; }
inline void set_m_Tracked_3(int32_t value)
{
___m_Tracked_3 = value;
}
};
// UnityEngine.XR.XRNode
struct XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD
{
public:
// System.Int32 UnityEngine.XR.XRNode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD, ___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;
}
};
// UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467
{
public:
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedGuid
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
// UnityEngine.XR.ARSubsystems.SerializableGuid UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SerializedTextureGuid
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
// System.Boolean UnityEngine.XR.ARSubsystems.XRReferenceImage::m_SpecifySize
bool ___m_SpecifySize_3;
// System.String UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Name
String_t* ___m_Name_4;
// UnityEngine.Texture2D UnityEngine.XR.ARSubsystems.XRReferenceImage::m_Texture
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
public:
inline static int32_t get_offset_of_m_SerializedGuid_0() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedGuid_0)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedGuid_0() const { return ___m_SerializedGuid_0; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedGuid_0() { return &___m_SerializedGuid_0; }
inline void set_m_SerializedGuid_0(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___m_SerializedGuid_0 = value;
}
inline static int32_t get_offset_of_m_SerializedTextureGuid_1() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SerializedTextureGuid_1)); }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC get_m_SerializedTextureGuid_1() const { return ___m_SerializedTextureGuid_1; }
inline SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC * get_address_of_m_SerializedTextureGuid_1() { return &___m_SerializedTextureGuid_1; }
inline void set_m_SerializedTextureGuid_1(SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC value)
{
___m_SerializedTextureGuid_1 = value;
}
inline static int32_t get_offset_of_m_Size_2() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Size_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_2() const { return ___m_Size_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_2() { return &___m_Size_2; }
inline void set_m_Size_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_2 = value;
}
inline static int32_t get_offset_of_m_SpecifySize_3() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_SpecifySize_3)); }
inline bool get_m_SpecifySize_3() const { return ___m_SpecifySize_3; }
inline bool* get_address_of_m_SpecifySize_3() { return &___m_SpecifySize_3; }
inline void set_m_SpecifySize_3(bool value)
{
___m_SpecifySize_3 = value;
}
inline static int32_t get_offset_of_m_Name_4() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Name_4)); }
inline String_t* get_m_Name_4() const { return ___m_Name_4; }
inline String_t** get_address_of_m_Name_4() { return &___m_Name_4; }
inline void set_m_Name_4(String_t* value)
{
___m_Name_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_4), (void*)value);
}
inline static int32_t get_offset_of_m_Texture_5() { return static_cast<int32_t>(offsetof(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467, ___m_Texture_5)); }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_m_Texture_5() const { return ___m_Texture_5; }
inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_m_Texture_5() { return &___m_Texture_5; }
inline void set_m_Texture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value)
{
___m_Texture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_pinvoke
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
int32_t ___m_SpecifySize_3;
char* ___m_Name_4;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
};
// Native definition for COM marshalling of UnityEngine.XR.ARSubsystems.XRReferenceImage
struct XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467_marshaled_com
{
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedGuid_0;
SerializableGuid_t5F8E8B4FF33F91AF9B16C6CC3F75AE00014505CC ___m_SerializedTextureGuid_1;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_2;
int32_t ___m_SpecifySize_3;
Il2CppChar* ___m_Name_4;
Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___m_Texture_5;
};
// System.Xml.XmlSpace
struct XmlSpace_t16F1125FF443A131844086CD412753BFE485A047
{
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_t16F1125FF443A131844086CD412753BFE485A047, ___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;
}
};
// UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Boolean UnityEngine.jvalue::z
bool ___z_0;
};
#pragma pack(pop, tp)
struct
{
bool ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.SByte UnityEngine.jvalue::b
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Char UnityEngine.jvalue::c
Il2CppChar ___c_2;
};
#pragma pack(pop, tp)
struct
{
Il2CppChar ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int16 UnityEngine.jvalue::s
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.jvalue::i
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 UnityEngine.jvalue::j
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Single UnityEngine.jvalue::f
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.jvalue::d
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr UnityEngine.jvalue::l
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_z_0() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___z_0)); }
inline bool get_z_0() const { return ___z_0; }
inline bool* get_address_of_z_0() { return &___z_0; }
inline void set_z_0(bool value)
{
___z_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___b_1)); }
inline int8_t get_b_1() const { return ___b_1; }
inline int8_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int8_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___c_2)); }
inline Il2CppChar get_c_2() const { return ___c_2; }
inline Il2CppChar* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(Il2CppChar value)
{
___c_2 = value;
}
inline static int32_t get_offset_of_s_3() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___s_3)); }
inline int16_t get_s_3() const { return ___s_3; }
inline int16_t* get_address_of_s_3() { return &___s_3; }
inline void set_s_3(int16_t value)
{
___s_3 = value;
}
inline static int32_t get_offset_of_i_4() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___i_4)); }
inline int32_t get_i_4() const { return ___i_4; }
inline int32_t* get_address_of_i_4() { return &___i_4; }
inline void set_i_4(int32_t value)
{
___i_4 = value;
}
inline static int32_t get_offset_of_j_5() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___j_5)); }
inline int64_t get_j_5() const { return ___j_5; }
inline int64_t* get_address_of_j_5() { return &___j_5; }
inline void set_j_5(int64_t value)
{
___j_5 = value;
}
inline static int32_t get_offset_of_f_6() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___f_6)); }
inline float get_f_6() const { return ___f_6; }
inline float* get_address_of_f_6() { return &___f_6; }
inline void set_f_6(float value)
{
___f_6 = value;
}
inline static int32_t get_offset_of_d_7() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___d_7)); }
inline double get_d_7() const { return ___d_7; }
inline double* get_address_of_d_7() { return &___d_7; }
inline void set_d_7(double value)
{
___d_7 = value;
}
inline static int32_t get_offset_of_l_8() { return static_cast<int32_t>(offsetof(jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587, ___l_8)); }
inline intptr_t get_l_8() const { return ___l_8; }
inline intptr_t* get_address_of_l_8() { return &___l_8; }
inline void set_l_8(intptr_t value)
{
___l_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.jvalue
struct jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCorePose
struct ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49
{
public:
// UnityEngine.Quaternion UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCorePose::rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_0;
// UnityEngine.Vector3 UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCorePose::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_1;
public:
inline static int32_t get_offset_of_rotation_0() { return static_cast<int32_t>(offsetof(ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49, ___rotation_0)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_0() const { return ___rotation_0; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_0() { return &___rotation_0; }
inline void set_rotation_0(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___rotation_0 = value;
}
inline static int32_t get_offset_of_position_1() { return static_cast<int32_t>(offsetof(ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49, ___position_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_1() const { return ___position_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_1() { return &___position_1; }
inline void set_position_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_1 = value;
}
};
// UnityEngine.Camera/RenderRequestMode
struct RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestMode_tCB120B82DED523ADBA2D6093A1A8ABF17D94A313, ___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;
}
};
// UnityEngine.Camera/RenderRequestOutputSpace
struct RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5
{
public:
// System.Int32 UnityEngine.Camera/RenderRequestOutputSpace::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RenderRequestOutputSpace_t8EB93E4720B2D1BAB624A04ADB473C37C7F3D6A5, ___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;
}
};
// UnityEngine.UI.Navigation/Mode
struct Mode_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F
{
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_t3113FDF05158BBA1DFC78D7F69E4C1D25135CB0F, ___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;
}
};
// UnityEngine.ParticleSystem/Particle
struct Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1
{
public:
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Position_0;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Velocity_1;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AnimatedVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AnimatedVelocity_2;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_InitialVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_InitialVelocity_3;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AxisOfRotation
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AxisOfRotation_4;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_Rotation
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Rotation_5;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_AngularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularVelocity_6;
// UnityEngine.Vector3 UnityEngine.ParticleSystem/Particle::m_StartSize
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_StartSize_7;
// UnityEngine.Color32 UnityEngine.ParticleSystem/Particle::m_StartColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___m_StartColor_8;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_RandomSeed
uint32_t ___m_RandomSeed_9;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_ParentRandomSeed
uint32_t ___m_ParentRandomSeed_10;
// System.Single UnityEngine.ParticleSystem/Particle::m_Lifetime
float ___m_Lifetime_11;
// System.Single UnityEngine.ParticleSystem/Particle::m_StartLifetime
float ___m_StartLifetime_12;
// System.Int32 UnityEngine.ParticleSystem/Particle::m_MeshIndex
int32_t ___m_MeshIndex_13;
// System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator0
float ___m_EmitAccumulator0_14;
// System.Single UnityEngine.ParticleSystem/Particle::m_EmitAccumulator1
float ___m_EmitAccumulator1_15;
// System.UInt32 UnityEngine.ParticleSystem/Particle::m_Flags
uint32_t ___m_Flags_16;
public:
inline static int32_t get_offset_of_m_Position_0() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Position_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Position_0() const { return ___m_Position_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Position_0() { return &___m_Position_0; }
inline void set_m_Position_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Position_0 = value;
}
inline static int32_t get_offset_of_m_Velocity_1() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Velocity_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Velocity_1() const { return ___m_Velocity_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Velocity_1() { return &___m_Velocity_1; }
inline void set_m_Velocity_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Velocity_1 = value;
}
inline static int32_t get_offset_of_m_AnimatedVelocity_2() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AnimatedVelocity_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AnimatedVelocity_2() const { return ___m_AnimatedVelocity_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AnimatedVelocity_2() { return &___m_AnimatedVelocity_2; }
inline void set_m_AnimatedVelocity_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AnimatedVelocity_2 = value;
}
inline static int32_t get_offset_of_m_InitialVelocity_3() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_InitialVelocity_3)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_InitialVelocity_3() const { return ___m_InitialVelocity_3; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_InitialVelocity_3() { return &___m_InitialVelocity_3; }
inline void set_m_InitialVelocity_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_InitialVelocity_3 = value;
}
inline static int32_t get_offset_of_m_AxisOfRotation_4() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AxisOfRotation_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AxisOfRotation_4() const { return ___m_AxisOfRotation_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AxisOfRotation_4() { return &___m_AxisOfRotation_4; }
inline void set_m_AxisOfRotation_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AxisOfRotation_4 = value;
}
inline static int32_t get_offset_of_m_Rotation_5() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Rotation_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Rotation_5() const { return ___m_Rotation_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Rotation_5() { return &___m_Rotation_5; }
inline void set_m_Rotation_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Rotation_5 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_6() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_AngularVelocity_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularVelocity_6() const { return ___m_AngularVelocity_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularVelocity_6() { return &___m_AngularVelocity_6; }
inline void set_m_AngularVelocity_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AngularVelocity_6 = value;
}
inline static int32_t get_offset_of_m_StartSize_7() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartSize_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_StartSize_7() const { return ___m_StartSize_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_StartSize_7() { return &___m_StartSize_7; }
inline void set_m_StartSize_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_StartSize_7 = value;
}
inline static int32_t get_offset_of_m_StartColor_8() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartColor_8)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_m_StartColor_8() const { return ___m_StartColor_8; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_m_StartColor_8() { return &___m_StartColor_8; }
inline void set_m_StartColor_8(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___m_StartColor_8 = value;
}
inline static int32_t get_offset_of_m_RandomSeed_9() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_RandomSeed_9)); }
inline uint32_t get_m_RandomSeed_9() const { return ___m_RandomSeed_9; }
inline uint32_t* get_address_of_m_RandomSeed_9() { return &___m_RandomSeed_9; }
inline void set_m_RandomSeed_9(uint32_t value)
{
___m_RandomSeed_9 = value;
}
inline static int32_t get_offset_of_m_ParentRandomSeed_10() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_ParentRandomSeed_10)); }
inline uint32_t get_m_ParentRandomSeed_10() const { return ___m_ParentRandomSeed_10; }
inline uint32_t* get_address_of_m_ParentRandomSeed_10() { return &___m_ParentRandomSeed_10; }
inline void set_m_ParentRandomSeed_10(uint32_t value)
{
___m_ParentRandomSeed_10 = value;
}
inline static int32_t get_offset_of_m_Lifetime_11() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Lifetime_11)); }
inline float get_m_Lifetime_11() const { return ___m_Lifetime_11; }
inline float* get_address_of_m_Lifetime_11() { return &___m_Lifetime_11; }
inline void set_m_Lifetime_11(float value)
{
___m_Lifetime_11 = value;
}
inline static int32_t get_offset_of_m_StartLifetime_12() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_StartLifetime_12)); }
inline float get_m_StartLifetime_12() const { return ___m_StartLifetime_12; }
inline float* get_address_of_m_StartLifetime_12() { return &___m_StartLifetime_12; }
inline void set_m_StartLifetime_12(float value)
{
___m_StartLifetime_12 = value;
}
inline static int32_t get_offset_of_m_MeshIndex_13() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_MeshIndex_13)); }
inline int32_t get_m_MeshIndex_13() const { return ___m_MeshIndex_13; }
inline int32_t* get_address_of_m_MeshIndex_13() { return &___m_MeshIndex_13; }
inline void set_m_MeshIndex_13(int32_t value)
{
___m_MeshIndex_13 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator0_14() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_EmitAccumulator0_14)); }
inline float get_m_EmitAccumulator0_14() const { return ___m_EmitAccumulator0_14; }
inline float* get_address_of_m_EmitAccumulator0_14() { return &___m_EmitAccumulator0_14; }
inline void set_m_EmitAccumulator0_14(float value)
{
___m_EmitAccumulator0_14 = value;
}
inline static int32_t get_offset_of_m_EmitAccumulator1_15() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_EmitAccumulator1_15)); }
inline float get_m_EmitAccumulator1_15() const { return ___m_EmitAccumulator1_15; }
inline float* get_address_of_m_EmitAccumulator1_15() { return &___m_EmitAccumulator1_15; }
inline void set_m_EmitAccumulator1_15(float value)
{
___m_EmitAccumulator1_15 = value;
}
inline static int32_t get_offset_of_m_Flags_16() { return static_cast<int32_t>(offsetof(Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1, ___m_Flags_16)); }
inline uint32_t get_m_Flags_16() const { return ___m_Flags_16; }
inline uint32_t* get_address_of_m_Flags_16() { return &___m_Flags_16; }
inline void set_m_Flags_16(uint32_t value)
{
___m_Flags_16 = value;
}
};
// System.Net.Sockets.Socket/WSABUF
struct WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57
{
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_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57, ___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_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57, ___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;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame
struct Frame_t277B57D2C572A3B179CEA0357869DB245F52128D
{
public:
// System.String TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::filename
String_t* ___filename_0;
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::frame
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___frame_1;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::rotated
bool ___rotated_2;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::trimmed
bool ___trimmed_3;
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::spriteSourceSize
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___spriteSourceSize_4;
// TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/SpriteSize TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::sourceSize
SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D ___sourceSize_5;
// UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame::pivot
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pivot_6;
public:
inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___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((void**)(&___filename_0), (void*)value);
}
inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___frame_1)); }
inline SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 get_frame_1() const { return ___frame_1; }
inline SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 * get_address_of_frame_1() { return &___frame_1; }
inline void set_frame_1(SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 value)
{
___frame_1 = value;
}
inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___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(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___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(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___spriteSourceSize_4)); }
inline SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; }
inline SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; }
inline void set_spriteSourceSize_4(SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 value)
{
___spriteSourceSize_4 = value;
}
inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___sourceSize_5)); }
inline SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D get_sourceSize_5() const { return ___sourceSize_5; }
inline SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D * get_address_of_sourceSize_5() { return &___sourceSize_5; }
inline void set_sourceSize_5(SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D value)
{
___sourceSize_5 = value;
}
inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(Frame_t277B57D2C572A3B179CEA0357869DB245F52128D, ___pivot_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_pivot_6() const { return ___pivot_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_pivot_6() { return &___pivot_6; }
inline void set_pivot_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___pivot_6 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame
struct Frame_t277B57D2C572A3B179CEA0357869DB245F52128D_marshaled_pinvoke
{
char* ___filename_0;
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___spriteSourceSize_4;
SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D ___sourceSize_5;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pivot_6;
};
// Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame
struct Frame_t277B57D2C572A3B179CEA0357869DB245F52128D_marshaled_com
{
Il2CppChar* ___filename_0;
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_t5B610F44C5943B89962CC8CC4245EECDE29E94D9 ___spriteSourceSize_4;
SpriteSize_t7D47B39A52139B8CD3CE7F233C48981F70275A3D ___sourceSize_5;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___pivot_6;
};
// System.Globalization.TimeSpanParse/TTT
struct TTT_t5BC35B6ACCBA357988B1A7B0B263B83471D6A0B1
{
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_t5BC35B6ACCBA357988B1A7B0B263B83471D6A0B1, ___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;
}
};
// System.Xml.XmlEventCache/XmlEventType
struct XmlEventType_t138BCDD49AC4660058C13E24EAE70C2FA7FDEB70
{
public:
// System.Int32 System.Xml.XmlEventCache/XmlEventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(XmlEventType_t138BCDD49AC4660058C13E24EAE70C2FA7FDEB70, ___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;
}
};
// System.Xml.XmlSqlBinaryReader/AttrInfo
struct AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84
{
public:
// System.Xml.XmlSqlBinaryReader/QName System.Xml.XmlSqlBinaryReader/AttrInfo::name
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 ___name_0;
// System.String System.Xml.XmlSqlBinaryReader/AttrInfo::val
String_t* ___val_1;
// System.Int32 System.Xml.XmlSqlBinaryReader/AttrInfo::contentPos
int32_t ___contentPos_2;
// System.Int32 System.Xml.XmlSqlBinaryReader/AttrInfo::hashCode
int32_t ___hashCode_3;
// System.Int32 System.Xml.XmlSqlBinaryReader/AttrInfo::prevHash
int32_t ___prevHash_4;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84, ___name_0)); }
inline QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 get_name_0() const { return ___name_0; }
inline QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 * get_address_of_name_0() { return &___name_0; }
inline void set_name_0(QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___localname_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___namespaceUri_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84, ___val_1)); }
inline String_t* get_val_1() const { return ___val_1; }
inline String_t** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(String_t* value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_contentPos_2() { return static_cast<int32_t>(offsetof(AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84, ___contentPos_2)); }
inline int32_t get_contentPos_2() const { return ___contentPos_2; }
inline int32_t* get_address_of_contentPos_2() { return &___contentPos_2; }
inline void set_contentPos_2(int32_t value)
{
___contentPos_2 = value;
}
inline static int32_t get_offset_of_hashCode_3() { return static_cast<int32_t>(offsetof(AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84, ___hashCode_3)); }
inline int32_t get_hashCode_3() const { return ___hashCode_3; }
inline int32_t* get_address_of_hashCode_3() { return &___hashCode_3; }
inline void set_hashCode_3(int32_t value)
{
___hashCode_3 = value;
}
inline static int32_t get_offset_of_prevHash_4() { return static_cast<int32_t>(offsetof(AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84, ___prevHash_4)); }
inline int32_t get_prevHash_4() const { return ___prevHash_4; }
inline int32_t* get_address_of_prevHash_4() { return &___prevHash_4; }
inline void set_prevHash_4(int32_t value)
{
___prevHash_4 = value;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlSqlBinaryReader/AttrInfo
struct AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84_marshaled_pinvoke
{
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_pinvoke ___name_0;
char* ___val_1;
int32_t ___contentPos_2;
int32_t ___hashCode_3;
int32_t ___prevHash_4;
};
// Native definition for COM marshalling of System.Xml.XmlSqlBinaryReader/AttrInfo
struct AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84_marshaled_com
{
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_com ___name_0;
Il2CppChar* ___val_1;
int32_t ___contentPos_2;
int32_t ___hashCode_3;
int32_t ___prevHash_4;
};
// System.Xml.XmlTextWriter/NamespaceState
struct NamespaceState_t70DDAB16B7FAF8E9437F174C42B9CA023C7ABB8B
{
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_t70DDAB16B7FAF8E9437F174C42B9CA023C7ABB8B, ___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;
}
};
// System.Xml.XmlWellFormedWriter/NamespaceKind
struct NamespaceKind_t97A70AC8EF0DDB1B8CDE7E4AFEB6EA96532D14E9
{
public:
// System.Int32 System.Xml.XmlWellFormedWriter/NamespaceKind::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NamespaceKind_t97A70AC8EF0DDB1B8CDE7E4AFEB6EA96532D14E9, ___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;
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE
{
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
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___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_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___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_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___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_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE, ___value_3)); }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 get_value_3() const { return ___value_3; }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->___m_Texture_5), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>
struct Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B
{
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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B, ___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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>
struct Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58
{
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_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58, ___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_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58, ___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_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58, ___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((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58, ___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;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>
struct Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * ___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
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375, ___list_0)); }
inline List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * get_list_0() const { return ___list_0; }
inline List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375, ___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_tE036E4FD1082339F5FB8546407ABF40ACBC97375, ___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_tE036E4FD1082339F5FB8546407ABF40ACBC97375, ___current_3)); }
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 get_current_3() const { return ___current_3; }
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>
struct Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * ___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
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE, ___list_0)); }
inline List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * get_list_0() const { return ___list_0; }
inline List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE, ___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_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE, ___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_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE, ___current_3)); }
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 get_current_3() const { return ___current_3; }
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 value)
{
___current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>
struct Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * ___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
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3, ___list_0)); }
inline List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * get_list_0() const { return ___list_0; }
inline List_1_t6A1295D69B538887EB0A62B321F30014A5691173 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3, ___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_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3, ___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_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3, ___current_3)); }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 get_current_3() const { return ___current_3; }
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
___current_3 = value;
}
};
// System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>
struct Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937
{
public:
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * ____set_0;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.HashSet`1/Enumerator::_current
int32_t ____current_3;
public:
inline static int32_t get_offset_of__set_0() { return static_cast<int32_t>(offsetof(Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937, ____set_0)); }
inline HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * get__set_0() const { return ____set_0; }
inline HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC ** get_address_of__set_0() { return &____set_0; }
inline void set__set_0(HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * value)
{
____set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____set_0), (void*)value);
}
inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937, ____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_t174934A25D0E66C6E9C4E51B0DA854E733B17937, ____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_t174934A25D0E66C6E9C4E51B0DA854E733B17937, ____current_3)); }
inline int32_t get__current_3() const { return ____current_3; }
inline int32_t* get_address_of__current_3() { return &____current_3; }
inline void set__current_3(int32_t value)
{
____current_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<System.Int32Enum>
struct Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * ___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
int32_t ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984, ___list_0)); }
inline List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * get_list_0() const { return ___list_0; }
inline List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984, ___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_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984, ___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_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984, ___current_3)); }
inline int32_t get_current_3() const { return ___current_3; }
inline int32_t* get_address_of_current_3() { return &___current_3; }
inline void set_current_3(int32_t value)
{
___current_3 = value;
}
};
// System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>
struct Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921
{
public:
// System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___dictionary_0;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
int32_t ___version_1;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
int32_t ___index_2;
// System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D ___current_3;
// System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
int32_t ___getEnumeratorRetType_4;
public:
inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___dictionary_0)); }
inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * get_dictionary_0() const { return ___dictionary_0; }
inline Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 ** get_address_of_dictionary_0() { return &___dictionary_0; }
inline void set_dictionary_0(Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * value)
{
___dictionary_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
}
inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___version_1)); }
inline int32_t get_version_1() const { return ___version_1; }
inline int32_t* get_address_of_version_1() { return &___version_1; }
inline void set_version_1(int32_t value)
{
___version_1 = value;
}
inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___index_2)); }
inline int32_t get_index_2() const { return ___index_2; }
inline int32_t* get_address_of_index_2() { return &___index_2; }
inline void set_index_2(int32_t value)
{
___index_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___current_3)); }
inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D get_current_3() const { return ___current_3; }
inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
}
inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921, ___getEnumeratorRetType_4)); }
inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
inline void set_getEnumeratorRetType_4(int32_t value)
{
___getEnumeratorRetType_4 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>
struct KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71, ___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_tEF616F78E313EF3F5933770546101BEC9AB5EC71, ___value_1)); }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 get_value_1() const { return ___value_1; }
inline XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Name_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->___m_Texture_5), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>
struct KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1
{
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_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___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_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1, ___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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>
struct KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297
{
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_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297, ___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((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297, ___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;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>
struct NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>
struct NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>
struct NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>
struct NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Byte>
struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<System.Int32>
struct NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARCore.ManagedReferenceImage>
struct NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>
struct NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB
{
public:
// System.Void* Unity.Collections.NativeArray`1::m_Buffer
void* ___m_Buffer_0;
// System.Int32 Unity.Collections.NativeArray`1::m_Length
int32_t ___m_Length_1;
// Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
int32_t ___m_AllocatorLabel_2;
public:
inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Buffer_0)); }
inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
inline void set_m_Buffer_0(void* value)
{
___m_Buffer_0 = value;
}
inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_Length_1)); }
inline int32_t get_m_Length_1() const { return ___m_Length_1; }
inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
inline void set_m_Length_1(int32_t value)
{
___m_Length_1 = value;
}
inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB, ___m_AllocatorLabel_2)); }
inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
inline void set_m_AllocatorLabel_2(int32_t value)
{
___m_AllocatorLabel_2 = value;
}
};
// System.Data.RBTree`1/Node<System.Int32>
struct Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F
{
public:
// System.Int32 System.Data.RBTree`1/Node::_selfId
int32_t ____selfId_0;
// System.Int32 System.Data.RBTree`1/Node::_leftId
int32_t ____leftId_1;
// System.Int32 System.Data.RBTree`1/Node::_rightId
int32_t ____rightId_2;
// System.Int32 System.Data.RBTree`1/Node::_parentId
int32_t ____parentId_3;
// System.Int32 System.Data.RBTree`1/Node::_nextId
int32_t ____nextId_4;
// System.Int32 System.Data.RBTree`1/Node::_subTreeSize
int32_t ____subTreeSize_5;
// K System.Data.RBTree`1/Node::_keyOfNode
int32_t ____keyOfNode_6;
// System.Data.RBTree`1/NodeColor<K> System.Data.RBTree`1/Node::_nodeColor
int32_t ____nodeColor_7;
public:
inline static int32_t get_offset_of__selfId_0() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____selfId_0)); }
inline int32_t get__selfId_0() const { return ____selfId_0; }
inline int32_t* get_address_of__selfId_0() { return &____selfId_0; }
inline void set__selfId_0(int32_t value)
{
____selfId_0 = value;
}
inline static int32_t get_offset_of__leftId_1() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____leftId_1)); }
inline int32_t get__leftId_1() const { return ____leftId_1; }
inline int32_t* get_address_of__leftId_1() { return &____leftId_1; }
inline void set__leftId_1(int32_t value)
{
____leftId_1 = value;
}
inline static int32_t get_offset_of__rightId_2() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____rightId_2)); }
inline int32_t get__rightId_2() const { return ____rightId_2; }
inline int32_t* get_address_of__rightId_2() { return &____rightId_2; }
inline void set__rightId_2(int32_t value)
{
____rightId_2 = value;
}
inline static int32_t get_offset_of__parentId_3() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____parentId_3)); }
inline int32_t get__parentId_3() const { return ____parentId_3; }
inline int32_t* get_address_of__parentId_3() { return &____parentId_3; }
inline void set__parentId_3(int32_t value)
{
____parentId_3 = value;
}
inline static int32_t get_offset_of__nextId_4() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____nextId_4)); }
inline int32_t get__nextId_4() const { return ____nextId_4; }
inline int32_t* get_address_of__nextId_4() { return &____nextId_4; }
inline void set__nextId_4(int32_t value)
{
____nextId_4 = value;
}
inline static int32_t get_offset_of__subTreeSize_5() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____subTreeSize_5)); }
inline int32_t get__subTreeSize_5() const { return ____subTreeSize_5; }
inline int32_t* get_address_of__subTreeSize_5() { return &____subTreeSize_5; }
inline void set__subTreeSize_5(int32_t value)
{
____subTreeSize_5 = value;
}
inline static int32_t get_offset_of__keyOfNode_6() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____keyOfNode_6)); }
inline int32_t get__keyOfNode_6() const { return ____keyOfNode_6; }
inline int32_t* get_address_of__keyOfNode_6() { return &____keyOfNode_6; }
inline void set__keyOfNode_6(int32_t value)
{
____keyOfNode_6 = value;
}
inline static int32_t get_offset_of__nodeColor_7() { return static_cast<int32_t>(offsetof(Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F, ____nodeColor_7)); }
inline int32_t get__nodeColor_7() const { return ____nodeColor_7; }
inline int32_t* get_address_of__nodeColor_7() { return &____nodeColor_7; }
inline void set__nodeColor_7(int32_t value)
{
____nodeColor_7 = value;
}
};
// System.Data.RBTree`1/Node<System.Object>
struct Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C
{
public:
// System.Int32 System.Data.RBTree`1/Node::_selfId
int32_t ____selfId_0;
// System.Int32 System.Data.RBTree`1/Node::_leftId
int32_t ____leftId_1;
// System.Int32 System.Data.RBTree`1/Node::_rightId
int32_t ____rightId_2;
// System.Int32 System.Data.RBTree`1/Node::_parentId
int32_t ____parentId_3;
// System.Int32 System.Data.RBTree`1/Node::_nextId
int32_t ____nextId_4;
// System.Int32 System.Data.RBTree`1/Node::_subTreeSize
int32_t ____subTreeSize_5;
// K System.Data.RBTree`1/Node::_keyOfNode
RuntimeObject * ____keyOfNode_6;
// System.Data.RBTree`1/NodeColor<K> System.Data.RBTree`1/Node::_nodeColor
int32_t ____nodeColor_7;
public:
inline static int32_t get_offset_of__selfId_0() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____selfId_0)); }
inline int32_t get__selfId_0() const { return ____selfId_0; }
inline int32_t* get_address_of__selfId_0() { return &____selfId_0; }
inline void set__selfId_0(int32_t value)
{
____selfId_0 = value;
}
inline static int32_t get_offset_of__leftId_1() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____leftId_1)); }
inline int32_t get__leftId_1() const { return ____leftId_1; }
inline int32_t* get_address_of__leftId_1() { return &____leftId_1; }
inline void set__leftId_1(int32_t value)
{
____leftId_1 = value;
}
inline static int32_t get_offset_of__rightId_2() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____rightId_2)); }
inline int32_t get__rightId_2() const { return ____rightId_2; }
inline int32_t* get_address_of__rightId_2() { return &____rightId_2; }
inline void set__rightId_2(int32_t value)
{
____rightId_2 = value;
}
inline static int32_t get_offset_of__parentId_3() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____parentId_3)); }
inline int32_t get__parentId_3() const { return ____parentId_3; }
inline int32_t* get_address_of__parentId_3() { return &____parentId_3; }
inline void set__parentId_3(int32_t value)
{
____parentId_3 = value;
}
inline static int32_t get_offset_of__nextId_4() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____nextId_4)); }
inline int32_t get__nextId_4() const { return ____nextId_4; }
inline int32_t* get_address_of__nextId_4() { return &____nextId_4; }
inline void set__nextId_4(int32_t value)
{
____nextId_4 = value;
}
inline static int32_t get_offset_of__subTreeSize_5() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____subTreeSize_5)); }
inline int32_t get__subTreeSize_5() const { return ____subTreeSize_5; }
inline int32_t* get_address_of__subTreeSize_5() { return &____subTreeSize_5; }
inline void set__subTreeSize_5(int32_t value)
{
____subTreeSize_5 = value;
}
inline static int32_t get_offset_of__keyOfNode_6() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____keyOfNode_6)); }
inline RuntimeObject * get__keyOfNode_6() const { return ____keyOfNode_6; }
inline RuntimeObject ** get_address_of__keyOfNode_6() { return &____keyOfNode_6; }
inline void set__keyOfNode_6(RuntimeObject * value)
{
____keyOfNode_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____keyOfNode_6), (void*)value);
}
inline static int32_t get_offset_of__nodeColor_7() { return static_cast<int32_t>(offsetof(Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C, ____nodeColor_7)); }
inline int32_t get__nodeColor_7() const { return ____nodeColor_7; }
inline int32_t* get_address_of__nodeColor_7() { return &____nodeColor_7; }
inline void set__nodeColor_7(int32_t value)
{
____nodeColor_7 = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>
struct Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F
{
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_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___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_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___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_tC31C6E818814F95B7C786172916C5FAF09A00B2F, ___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;
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.FontWeight>
struct TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
FontWeightU5BU5D_t0C9E436904E570F798885BC6F264C7AE6608B5C6* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
int32_t ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___itemStack_0)); }
inline FontWeightU5BU5D_t0C9E436904E570F798885BC6F264C7AE6608B5C6* get_itemStack_0() const { return ___itemStack_0; }
inline FontWeightU5BU5D_t0C9E436904E570F798885BC6F264C7AE6608B5C6** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(FontWeightU5BU5D_t0C9E436904E570F798885BC6F264C7AE6608B5C6* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___m_DefaultItem_2)); }
inline int32_t get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline int32_t* get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(int32_t value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>
struct TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
HighlightStateU5BU5D_t8150DD4545DE751DD24E4106F1E66C41DFFE38EA* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___itemStack_0)); }
inline HighlightStateU5BU5D_t8150DD4545DE751DD24E4106F1E66C41DFFE38EA* get_itemStack_0() const { return ___itemStack_0; }
inline HighlightStateU5BU5D_t8150DD4545DE751DD24E4106F1E66C41DFFE38EA** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(HighlightStateU5BU5D_t8150DD4545DE751DD24E4106F1E66C41DFFE38EA* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___m_DefaultItem_2)); }
inline HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 * get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.HorizontalAlignmentOptions>
struct TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
HorizontalAlignmentOptionsU5BU5D_t57D37E3CA431B98ECF9444788AA9C047B990DDBB* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
int32_t ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___itemStack_0)); }
inline HorizontalAlignmentOptionsU5BU5D_t57D37E3CA431B98ECF9444788AA9C047B990DDBB* get_itemStack_0() const { return ___itemStack_0; }
inline HorizontalAlignmentOptionsU5BU5D_t57D37E3CA431B98ECF9444788AA9C047B990DDBB** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(HorizontalAlignmentOptionsU5BU5D_t57D37E3CA431B98ECF9444788AA9C047B990DDBB* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___m_DefaultItem_2)); }
inline int32_t get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline int32_t* get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(int32_t value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// TMPro.TMP_TextProcessingStack`1<System.Int32Enum>
struct TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
int32_t ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___itemStack_0)); }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* get_itemStack_0() const { return ___itemStack_0; }
inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___m_DefaultItem_2)); }
inline int32_t get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline int32_t* get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(int32_t value)
{
___m_DefaultItem_2 = value;
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// UnityEngine.XR.ARCore.ARCoreFaceRegionData
struct ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6
{
public:
// UnityEngine.XR.ARCore.ARCoreFaceRegion UnityEngine.XR.ARCore.ARCoreFaceRegionData::m_Region
int32_t ___m_Region_0;
// UnityEngine.Pose UnityEngine.XR.ARCore.ARCoreFaceRegionData::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
public:
inline static int32_t get_offset_of_m_Region_0() { return static_cast<int32_t>(offsetof(ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6, ___m_Region_0)); }
inline int32_t get_m_Region_0() const { return ___m_Region_0; }
inline int32_t* get_address_of_m_Region_0() { return &___m_Region_0; }
inline void set_m_Region_0(int32_t value)
{
___m_Region_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
};
// UnityEngine.XR.ARSubsystems.BoundedPlane
struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.BoundedPlane::m_SubsumedById
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_SubsumedById_2;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Center
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Center_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.BoundedPlane::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_4;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.BoundedPlane::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_5;
// UnityEngine.XR.ARSubsystems.PlaneAlignment UnityEngine.XR.ARSubsystems.BoundedPlane::m_Alignment
int32_t ___m_Alignment_6;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.BoundedPlane::m_TrackingState
int32_t ___m_TrackingState_7;
// System.IntPtr UnityEngine.XR.ARSubsystems.BoundedPlane::m_NativePtr
intptr_t ___m_NativePtr_8;
// UnityEngine.XR.ARSubsystems.PlaneClassification UnityEngine.XR.ARSubsystems.BoundedPlane::m_Classification
int32_t ___m_Classification_9;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_SubsumedById_2() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_SubsumedById_2)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_SubsumedById_2() const { return ___m_SubsumedById_2; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_SubsumedById_2() { return &___m_SubsumedById_2; }
inline void set_m_SubsumedById_2(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_SubsumedById_2 = value;
}
inline static int32_t get_offset_of_m_Center_3() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Center_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Center_3() const { return ___m_Center_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Center_3() { return &___m_Center_3; }
inline void set_m_Center_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Center_3 = value;
}
inline static int32_t get_offset_of_m_Pose_4() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Pose_4)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_4() const { return ___m_Pose_4; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_4() { return &___m_Pose_4; }
inline void set_m_Pose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_4 = value;
}
inline static int32_t get_offset_of_m_Size_5() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Size_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_5() const { return ___m_Size_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_5() { return &___m_Size_5; }
inline void set_m_Size_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_5 = value;
}
inline static int32_t get_offset_of_m_Alignment_6() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Alignment_6)); }
inline int32_t get_m_Alignment_6() const { return ___m_Alignment_6; }
inline int32_t* get_address_of_m_Alignment_6() { return &___m_Alignment_6; }
inline void set_m_Alignment_6(int32_t value)
{
___m_Alignment_6 = value;
}
inline static int32_t get_offset_of_m_TrackingState_7() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_TrackingState_7)); }
inline int32_t get_m_TrackingState_7() const { return ___m_TrackingState_7; }
inline int32_t* get_address_of_m_TrackingState_7() { return &___m_TrackingState_7; }
inline void set_m_TrackingState_7(int32_t value)
{
___m_TrackingState_7 = value;
}
inline static int32_t get_offset_of_m_NativePtr_8() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_NativePtr_8)); }
inline intptr_t get_m_NativePtr_8() const { return ___m_NativePtr_8; }
inline intptr_t* get_address_of_m_NativePtr_8() { return &___m_NativePtr_8; }
inline void set_m_NativePtr_8(intptr_t value)
{
___m_NativePtr_8 = value;
}
inline static int32_t get_offset_of_m_Classification_9() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5, ___m_Classification_9)); }
inline int32_t get_m_Classification_9() const { return ___m_Classification_9; }
inline int32_t* get_address_of_m_Classification_9() { return &___m_Classification_9; }
inline void set_m_Classification_9(int32_t value)
{
___m_Classification_9 = value;
}
};
struct BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.BoundedPlane UnityEngine.XR.ARSubsystems.BoundedPlane::s_Default
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5_StaticFields, ___s_Default_0)); }
inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 get_s_Default_0() const { return ___s_Default_0; }
inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.ConfigurationDescriptor
struct ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Identifier
intptr_t ___m_Identifier_0;
// UnityEngine.XR.ARSubsystems.Feature UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Capabilities
uint64_t ___m_Capabilities_1;
// System.Int32 UnityEngine.XR.ARSubsystems.ConfigurationDescriptor::m_Rank
int32_t ___m_Rank_2;
public:
inline static int32_t get_offset_of_m_Identifier_0() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Identifier_0)); }
inline intptr_t get_m_Identifier_0() const { return ___m_Identifier_0; }
inline intptr_t* get_address_of_m_Identifier_0() { return &___m_Identifier_0; }
inline void set_m_Identifier_0(intptr_t value)
{
___m_Identifier_0 = value;
}
inline static int32_t get_offset_of_m_Capabilities_1() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Capabilities_1)); }
inline uint64_t get_m_Capabilities_1() const { return ___m_Capabilities_1; }
inline uint64_t* get_address_of_m_Capabilities_1() { return &___m_Capabilities_1; }
inline void set_m_Capabilities_1(uint64_t value)
{
___m_Capabilities_1 = value;
}
inline static int32_t get_offset_of_m_Rank_2() { return static_cast<int32_t>(offsetof(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78, ___m_Rank_2)); }
inline int32_t get_m_Rank_2() const { return ___m_Rank_2; }
inline int32_t* get_address_of_m_Rank_2() { return &___m_Rank_2; }
inline void set_m_Rank_2(int32_t value)
{
___m_Rank_2 = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord
struct GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169
{
public:
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FirstAdjustmentRecord
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA ___m_FirstAdjustmentRecord_0;
// UnityEngine.TextCore.LowLevel.GlyphAdjustmentRecord UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_SecondAdjustmentRecord
GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA ___m_SecondAdjustmentRecord_1;
// UnityEngine.TextCore.LowLevel.FontFeatureLookupFlags UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord::m_FeatureLookupFlags
int32_t ___m_FeatureLookupFlags_2;
public:
inline static int32_t get_offset_of_m_FirstAdjustmentRecord_0() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_FirstAdjustmentRecord_0)); }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA get_m_FirstAdjustmentRecord_0() const { return ___m_FirstAdjustmentRecord_0; }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * get_address_of_m_FirstAdjustmentRecord_0() { return &___m_FirstAdjustmentRecord_0; }
inline void set_m_FirstAdjustmentRecord_0(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA value)
{
___m_FirstAdjustmentRecord_0 = value;
}
inline static int32_t get_offset_of_m_SecondAdjustmentRecord_1() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_SecondAdjustmentRecord_1)); }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA get_m_SecondAdjustmentRecord_1() const { return ___m_SecondAdjustmentRecord_1; }
inline GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA * get_address_of_m_SecondAdjustmentRecord_1() { return &___m_SecondAdjustmentRecord_1; }
inline void set_m_SecondAdjustmentRecord_1(GlyphAdjustmentRecord_tF7DD4F1F660B62990292705F25D43A7EF3ED35EA value)
{
___m_SecondAdjustmentRecord_1 = value;
}
inline static int32_t get_offset_of_m_FeatureLookupFlags_2() { return static_cast<int32_t>(offsetof(GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169, ___m_FeatureLookupFlags_2)); }
inline int32_t get_m_FeatureLookupFlags_2() const { return ___m_FeatureLookupFlags_2; }
inline int32_t* get_address_of_m_FeatureLookupFlags_2() { return &___m_FeatureLookupFlags_2; }
inline void set_m_FeatureLookupFlags_2(int32_t value)
{
___m_FeatureLookupFlags_2 = value;
}
};
// System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3
{
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_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3, ___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((void**)(&___m_name_0), (void*)value);
}
inline static int32_t get_offset_of_m_variant_1() { return static_cast<int32_t>(offsetof(HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_variant_1;
};
// Native definition for COM marshalling of System.Net.HeaderVariantInfo
struct HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_variant_1;
};
// Mapbox.Json.JsonPosition
struct JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748
{
public:
// Mapbox.Json.JsonContainerType Mapbox.Json.JsonPosition::Type
int32_t ___Type_1;
// System.Int32 Mapbox.Json.JsonPosition::Position
int32_t ___Position_2;
// System.String Mapbox.Json.JsonPosition::PropertyName
String_t* ___PropertyName_3;
// System.Boolean Mapbox.Json.JsonPosition::HasIndex
bool ___HasIndex_4;
public:
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748, ___Type_1)); }
inline int32_t get_Type_1() const { return ___Type_1; }
inline int32_t* get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(int32_t value)
{
___Type_1 = value;
}
inline static int32_t get_offset_of_Position_2() { return static_cast<int32_t>(offsetof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748, ___Position_2)); }
inline int32_t get_Position_2() const { return ___Position_2; }
inline int32_t* get_address_of_Position_2() { return &___Position_2; }
inline void set_Position_2(int32_t value)
{
___Position_2 = value;
}
inline static int32_t get_offset_of_PropertyName_3() { return static_cast<int32_t>(offsetof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748, ___PropertyName_3)); }
inline String_t* get_PropertyName_3() const { return ___PropertyName_3; }
inline String_t** get_address_of_PropertyName_3() { return &___PropertyName_3; }
inline void set_PropertyName_3(String_t* value)
{
___PropertyName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___PropertyName_3), (void*)value);
}
inline static int32_t get_offset_of_HasIndex_4() { return static_cast<int32_t>(offsetof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748, ___HasIndex_4)); }
inline bool get_HasIndex_4() const { return ___HasIndex_4; }
inline bool* get_address_of_HasIndex_4() { return &___HasIndex_4; }
inline void set_HasIndex_4(bool value)
{
___HasIndex_4 = value;
}
};
struct JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748_StaticFields
{
public:
// System.Char[] Mapbox.Json.JsonPosition::SpecialCharacters
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___SpecialCharacters_0;
public:
inline static int32_t get_offset_of_SpecialCharacters_0() { return static_cast<int32_t>(offsetof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748_StaticFields, ___SpecialCharacters_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_SpecialCharacters_0() const { return ___SpecialCharacters_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_SpecialCharacters_0() { return &___SpecialCharacters_0; }
inline void set_SpecialCharacters_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___SpecialCharacters_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SpecialCharacters_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Mapbox.Json.JsonPosition
struct JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748_marshaled_pinvoke
{
int32_t ___Type_1;
int32_t ___Position_2;
char* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// Native definition for COM marshalling of Mapbox.Json.JsonPosition
struct JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748_marshaled_com
{
int32_t ___Type_1;
int32_t ___Position_2;
Il2CppChar* ___PropertyName_3;
int32_t ___HasIndex_4;
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI
struct LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2
{
public:
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::instanceID
int32_t ___instanceID_0;
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::cookieID
int32_t ___cookieID_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::cookieScale
float ___cookieScale_2;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::color
LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 ___color_3;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::indirectColor
LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 ___indirectColor_4;
// UnityEngine.Quaternion UnityEngine.Experimental.GlobalIllumination.LightDataGI::orientation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___orientation_5;
// UnityEngine.Vector3 UnityEngine.Experimental.GlobalIllumination.LightDataGI::position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_6;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::range
float ___range_7;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::coneAngle
float ___coneAngle_8;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::innerConeAngle
float ___innerConeAngle_9;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape0
float ___shape0_10;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape1
float ___shape1_11;
// UnityEngine.Experimental.GlobalIllumination.LightType UnityEngine.Experimental.GlobalIllumination.LightDataGI::type
uint8_t ___type_12;
// UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightDataGI::mode
uint8_t ___mode_13;
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightDataGI::shadow
uint8_t ___shadow_14;
// UnityEngine.Experimental.GlobalIllumination.FalloffType UnityEngine.Experimental.GlobalIllumination.LightDataGI::falloff
uint8_t ___falloff_15;
public:
inline static int32_t get_offset_of_instanceID_0() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___instanceID_0)); }
inline int32_t get_instanceID_0() const { return ___instanceID_0; }
inline int32_t* get_address_of_instanceID_0() { return &___instanceID_0; }
inline void set_instanceID_0(int32_t value)
{
___instanceID_0 = value;
}
inline static int32_t get_offset_of_cookieID_1() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___cookieID_1)); }
inline int32_t get_cookieID_1() const { return ___cookieID_1; }
inline int32_t* get_address_of_cookieID_1() { return &___cookieID_1; }
inline void set_cookieID_1(int32_t value)
{
___cookieID_1 = value;
}
inline static int32_t get_offset_of_cookieScale_2() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___cookieScale_2)); }
inline float get_cookieScale_2() const { return ___cookieScale_2; }
inline float* get_address_of_cookieScale_2() { return &___cookieScale_2; }
inline void set_cookieScale_2(float value)
{
___cookieScale_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___color_3)); }
inline LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 get_color_3() const { return ___color_3; }
inline LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_indirectColor_4() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___indirectColor_4)); }
inline LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 get_indirectColor_4() const { return ___indirectColor_4; }
inline LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 * get_address_of_indirectColor_4() { return &___indirectColor_4; }
inline void set_indirectColor_4(LinearColor_tB134EA090C61E6624DE36F52980CA7E2C893D5F2 value)
{
___indirectColor_4 = value;
}
inline static int32_t get_offset_of_orientation_5() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___orientation_5)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_orientation_5() const { return ___orientation_5; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_orientation_5() { return &___orientation_5; }
inline void set_orientation_5(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___orientation_5 = value;
}
inline static int32_t get_offset_of_position_6() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___position_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_6() const { return ___position_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_6() { return &___position_6; }
inline void set_position_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___position_6 = value;
}
inline static int32_t get_offset_of_range_7() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___range_7)); }
inline float get_range_7() const { return ___range_7; }
inline float* get_address_of_range_7() { return &___range_7; }
inline void set_range_7(float value)
{
___range_7 = value;
}
inline static int32_t get_offset_of_coneAngle_8() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___coneAngle_8)); }
inline float get_coneAngle_8() const { return ___coneAngle_8; }
inline float* get_address_of_coneAngle_8() { return &___coneAngle_8; }
inline void set_coneAngle_8(float value)
{
___coneAngle_8 = value;
}
inline static int32_t get_offset_of_innerConeAngle_9() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___innerConeAngle_9)); }
inline float get_innerConeAngle_9() const { return ___innerConeAngle_9; }
inline float* get_address_of_innerConeAngle_9() { return &___innerConeAngle_9; }
inline void set_innerConeAngle_9(float value)
{
___innerConeAngle_9 = value;
}
inline static int32_t get_offset_of_shape0_10() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___shape0_10)); }
inline float get_shape0_10() const { return ___shape0_10; }
inline float* get_address_of_shape0_10() { return &___shape0_10; }
inline void set_shape0_10(float value)
{
___shape0_10 = value;
}
inline static int32_t get_offset_of_shape1_11() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___shape1_11)); }
inline float get_shape1_11() const { return ___shape1_11; }
inline float* get_address_of_shape1_11() { return &___shape1_11; }
inline void set_shape1_11(float value)
{
___shape1_11 = value;
}
inline static int32_t get_offset_of_type_12() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___type_12)); }
inline uint8_t get_type_12() const { return ___type_12; }
inline uint8_t* get_address_of_type_12() { return &___type_12; }
inline void set_type_12(uint8_t value)
{
___type_12 = value;
}
inline static int32_t get_offset_of_mode_13() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___mode_13)); }
inline uint8_t get_mode_13() const { return ___mode_13; }
inline uint8_t* get_address_of_mode_13() { return &___mode_13; }
inline void set_mode_13(uint8_t value)
{
___mode_13 = value;
}
inline static int32_t get_offset_of_shadow_14() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___shadow_14)); }
inline uint8_t get_shadow_14() const { return ___shadow_14; }
inline uint8_t* get_address_of_shadow_14() { return &___shadow_14; }
inline void set_shadow_14(uint8_t value)
{
___shadow_14 = value;
}
inline static int32_t get_offset_of_falloff_15() { return static_cast<int32_t>(offsetof(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2, ___falloff_15)); }
inline uint8_t get_falloff_15() const { return ___falloff_15; }
inline uint8_t* get_address_of_falloff_15() { return &___falloff_15; }
inline void set_falloff_15(uint8_t value)
{
___falloff_15 = value;
}
};
// UnityEngine.XR.MeshInfo
struct MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611
{
public:
// UnityEngine.XR.MeshId UnityEngine.XR.MeshInfo::<MeshId>k__BackingField
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___U3CMeshIdU3Ek__BackingField_0;
// UnityEngine.XR.MeshChangeState UnityEngine.XR.MeshInfo::<ChangeState>k__BackingField
int32_t ___U3CChangeStateU3Ek__BackingField_1;
// System.Int32 UnityEngine.XR.MeshInfo::<PriorityHint>k__BackingField
int32_t ___U3CPriorityHintU3Ek__BackingField_2;
public:
inline static int32_t get_offset_of_U3CMeshIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CMeshIdU3Ek__BackingField_0)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_U3CMeshIdU3Ek__BackingField_0() const { return ___U3CMeshIdU3Ek__BackingField_0; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_U3CMeshIdU3Ek__BackingField_0() { return &___U3CMeshIdU3Ek__BackingField_0; }
inline void set_U3CMeshIdU3Ek__BackingField_0(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
___U3CMeshIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CChangeStateU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CChangeStateU3Ek__BackingField_1)); }
inline int32_t get_U3CChangeStateU3Ek__BackingField_1() const { return ___U3CChangeStateU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CChangeStateU3Ek__BackingField_1() { return &___U3CChangeStateU3Ek__BackingField_1; }
inline void set_U3CChangeStateU3Ek__BackingField_1(int32_t value)
{
___U3CChangeStateU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CPriorityHintU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611, ___U3CPriorityHintU3Ek__BackingField_2)); }
inline int32_t get_U3CPriorityHintU3Ek__BackingField_2() const { return ___U3CPriorityHintU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CPriorityHintU3Ek__BackingField_2() { return &___U3CPriorityHintU3Ek__BackingField_2; }
inline void set_U3CPriorityHintU3Ek__BackingField_2(int32_t value)
{
___U3CPriorityHintU3Ek__BackingField_2 = value;
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A
{
public:
// UnityEngine.UI.Navigation/Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// System.Boolean UnityEngine.UI.Navigation::m_WrapAround
bool ___m_WrapAround_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___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_WrapAround_1() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_WrapAround_1)); }
inline bool get_m_WrapAround_1() const { return ___m_WrapAround_1; }
inline bool* get_address_of_m_WrapAround_1() { return &___m_WrapAround_1; }
inline void set_m_WrapAround_1(bool value)
{
___m_WrapAround_1 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_2() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnUp_2)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnUp_2() const { return ___m_SelectOnUp_2; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnUp_2() { return &___m_SelectOnUp_2; }
inline void set_m_SelectOnUp_2(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnUp_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_3() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnDown_3)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnDown_3() const { return ___m_SelectOnDown_3; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnDown_3() { return &___m_SelectOnDown_3; }
inline void set_m_SelectOnDown_3(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnDown_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_4() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnLeft_4)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnLeft_4() const { return ___m_SelectOnLeft_4; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnLeft_4() { return &___m_SelectOnLeft_4; }
inline void set_m_SelectOnLeft_4(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnLeft_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_4), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_5() { return static_cast<int32_t>(offsetof(Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A, ___m_SelectOnRight_5)); }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * get_m_SelectOnRight_5() const { return ___m_SelectOnRight_5; }
inline Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD ** get_address_of_m_SelectOnRight_5() { return &___m_SelectOnRight_5; }
inline void set_m_SelectOnRight_5(Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * value)
{
___m_SelectOnRight_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_pinvoke
{
int32_t ___m_Mode_0;
int32_t ___m_WrapAround_1;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A_marshaled_com
{
int32_t ___m_Mode_0;
int32_t ___m_WrapAround_1;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnUp_2;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnDown_3;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnLeft_4;
Selectable_t34088A3677CC9D344F81B0D91999D8C5963D7DBD * ___m_SelectOnRight_5;
};
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___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_t7A129D00E8823B50AEDD0C9B082C9CB3DF863876 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2, ___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((void**)(&___m_StreamName_0), (void*)value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2, ___m_SourceObject_1)); }
inline Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_tF2F3778131EFF286AF62B7B013A170F95A91571A ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2, ___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((void**)(&___m_SourceBindingType_2), (void*)value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_t7A129D00E8823B50AEDD0C9B082C9CB3DF863876 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_t7A129D00E8823B50AEDD0C9B082C9CB3DF863876 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_t7A129D00E8823B50AEDD0C9B082C9CB3DF863876 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value);
}
};
struct PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t4FD470872BB5C6A1794C9CB06830B557CA874CB3* ___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_t265202500C703254AD9777368C05D1986C8AC7A2_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t4FD470872BB5C6A1794C9CB06830B557CA874CB3* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t4FD470872BB5C6A1794C9CB06830B557CA874CB3** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t4FD470872BB5C6A1794C9CB06830B557CA874CB3* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2_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;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_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_t265202500C703254AD9777368C05D1986C8AC7A2_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// TMPro.RichTextTagAttribute
struct RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9
{
public:
// System.Int32 TMPro.RichTextTagAttribute::nameHashCode
int32_t ___nameHashCode_0;
// System.Int32 TMPro.RichTextTagAttribute::valueHashCode
int32_t ___valueHashCode_1;
// TMPro.TagValueType TMPro.RichTextTagAttribute::valueType
int32_t ___valueType_2;
// System.Int32 TMPro.RichTextTagAttribute::valueStartIndex
int32_t ___valueStartIndex_3;
// System.Int32 TMPro.RichTextTagAttribute::valueLength
int32_t ___valueLength_4;
// TMPro.TagUnitType TMPro.RichTextTagAttribute::unitType
int32_t ___unitType_5;
public:
inline static int32_t get_offset_of_nameHashCode_0() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___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_valueHashCode_1() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___valueHashCode_1)); }
inline int32_t get_valueHashCode_1() const { return ___valueHashCode_1; }
inline int32_t* get_address_of_valueHashCode_1() { return &___valueHashCode_1; }
inline void set_valueHashCode_1(int32_t value)
{
___valueHashCode_1 = value;
}
inline static int32_t get_offset_of_valueType_2() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___valueType_2)); }
inline int32_t get_valueType_2() const { return ___valueType_2; }
inline int32_t* get_address_of_valueType_2() { return &___valueType_2; }
inline void set_valueType_2(int32_t value)
{
___valueType_2 = value;
}
inline static int32_t get_offset_of_valueStartIndex_3() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___valueStartIndex_3)); }
inline int32_t get_valueStartIndex_3() const { return ___valueStartIndex_3; }
inline int32_t* get_address_of_valueStartIndex_3() { return &___valueStartIndex_3; }
inline void set_valueStartIndex_3(int32_t value)
{
___valueStartIndex_3 = value;
}
inline static int32_t get_offset_of_valueLength_4() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___valueLength_4)); }
inline int32_t get_valueLength_4() const { return ___valueLength_4; }
inline int32_t* get_address_of_valueLength_4() { return &___valueLength_4; }
inline void set_valueLength_4(int32_t value)
{
___valueLength_4 = value;
}
inline static int32_t get_offset_of_unitType_5() { return static_cast<int32_t>(offsetof(RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9, ___unitType_5)); }
inline int32_t get_unitType_5() const { return ___unitType_5; }
inline int32_t* get_address_of_unitType_5() { return &___unitType_5; }
inline void set_unitType_5(int32_t value)
{
___unitType_5 = value;
}
};
// System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D
{
public:
// System.Boolean System.Data.SqlTypes.SqlDateTime::m_fNotNull
bool ___m_fNotNull_0;
// System.Int32 System.Data.SqlTypes.SqlDateTime::m_day
int32_t ___m_day_1;
// System.Int32 System.Data.SqlTypes.SqlDateTime::m_time
int32_t ___m_time_2;
public:
inline static int32_t get_offset_of_m_fNotNull_0() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D, ___m_fNotNull_0)); }
inline bool get_m_fNotNull_0() const { return ___m_fNotNull_0; }
inline bool* get_address_of_m_fNotNull_0() { return &___m_fNotNull_0; }
inline void set_m_fNotNull_0(bool value)
{
___m_fNotNull_0 = value;
}
inline static int32_t get_offset_of_m_day_1() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D, ___m_day_1)); }
inline int32_t get_m_day_1() const { return ___m_day_1; }
inline int32_t* get_address_of_m_day_1() { return &___m_day_1; }
inline void set_m_day_1(int32_t value)
{
___m_day_1 = value;
}
inline static int32_t get_offset_of_m_time_2() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D, ___m_time_2)); }
inline int32_t get_m_time_2() const { return ___m_time_2; }
inline int32_t* get_address_of_m_time_2() { return &___m_time_2; }
inline void set_m_time_2(int32_t value)
{
___m_time_2 = value;
}
};
struct SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields
{
public:
// System.Double System.Data.SqlTypes.SqlDateTime::s_SQLTicksPerMillisecond
double ___s_SQLTicksPerMillisecond_3;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerSecond
int32_t ___SQLTicksPerSecond_4;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerMinute
int32_t ___SQLTicksPerMinute_5;
// System.Int32 System.Data.SqlTypes.SqlDateTime::SQLTicksPerHour
int32_t ___SQLTicksPerHour_6;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_SQLTicksPerDay
int32_t ___s_SQLTicksPerDay_7;
// System.Int64 System.Data.SqlTypes.SqlDateTime::s_ticksPerSecond
int64_t ___s_ticksPerSecond_8;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_SQLBaseDate
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___s_SQLBaseDate_9;
// System.Int64 System.Data.SqlTypes.SqlDateTime::s_SQLBaseDateTicks
int64_t ___s_SQLBaseDateTicks_10;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minYear
int32_t ___s_minYear_11;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxYear
int32_t ___s_maxYear_12;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minDay
int32_t ___s_minDay_13;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxDay
int32_t ___s_maxDay_14;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_minTime
int32_t ___s_minTime_15;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_maxTime
int32_t ___s_maxTime_16;
// System.Int32 System.Data.SqlTypes.SqlDateTime::s_dayBase
int32_t ___s_dayBase_17;
// System.Int32[] System.Data.SqlTypes.SqlDateTime::s_daysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___s_daysToMonth365_18;
// System.Int32[] System.Data.SqlTypes.SqlDateTime::s_daysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___s_daysToMonth366_19;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_minDateTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___s_minDateTime_20;
// System.DateTime System.Data.SqlTypes.SqlDateTime::s_maxDateTime
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___s_maxDateTime_21;
// System.TimeSpan System.Data.SqlTypes.SqlDateTime::s_minTimeSpan
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___s_minTimeSpan_22;
// System.TimeSpan System.Data.SqlTypes.SqlDateTime::s_maxTimeSpan
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___s_maxTimeSpan_23;
// System.String System.Data.SqlTypes.SqlDateTime::s_ISO8601_DateTimeFormat
String_t* ___s_ISO8601_DateTimeFormat_24;
// System.String[] System.Data.SqlTypes.SqlDateTime::s_dateTimeFormats
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___s_dateTimeFormats_25;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::MinValue
SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D ___MinValue_26;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::MaxValue
SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D ___MaxValue_27;
// System.Data.SqlTypes.SqlDateTime System.Data.SqlTypes.SqlDateTime::Null
SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D ___Null_28;
public:
inline static int32_t get_offset_of_s_SQLTicksPerMillisecond_3() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_SQLTicksPerMillisecond_3)); }
inline double get_s_SQLTicksPerMillisecond_3() const { return ___s_SQLTicksPerMillisecond_3; }
inline double* get_address_of_s_SQLTicksPerMillisecond_3() { return &___s_SQLTicksPerMillisecond_3; }
inline void set_s_SQLTicksPerMillisecond_3(double value)
{
___s_SQLTicksPerMillisecond_3 = value;
}
inline static int32_t get_offset_of_SQLTicksPerSecond_4() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___SQLTicksPerSecond_4)); }
inline int32_t get_SQLTicksPerSecond_4() const { return ___SQLTicksPerSecond_4; }
inline int32_t* get_address_of_SQLTicksPerSecond_4() { return &___SQLTicksPerSecond_4; }
inline void set_SQLTicksPerSecond_4(int32_t value)
{
___SQLTicksPerSecond_4 = value;
}
inline static int32_t get_offset_of_SQLTicksPerMinute_5() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___SQLTicksPerMinute_5)); }
inline int32_t get_SQLTicksPerMinute_5() const { return ___SQLTicksPerMinute_5; }
inline int32_t* get_address_of_SQLTicksPerMinute_5() { return &___SQLTicksPerMinute_5; }
inline void set_SQLTicksPerMinute_5(int32_t value)
{
___SQLTicksPerMinute_5 = value;
}
inline static int32_t get_offset_of_SQLTicksPerHour_6() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___SQLTicksPerHour_6)); }
inline int32_t get_SQLTicksPerHour_6() const { return ___SQLTicksPerHour_6; }
inline int32_t* get_address_of_SQLTicksPerHour_6() { return &___SQLTicksPerHour_6; }
inline void set_SQLTicksPerHour_6(int32_t value)
{
___SQLTicksPerHour_6 = value;
}
inline static int32_t get_offset_of_s_SQLTicksPerDay_7() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_SQLTicksPerDay_7)); }
inline int32_t get_s_SQLTicksPerDay_7() const { return ___s_SQLTicksPerDay_7; }
inline int32_t* get_address_of_s_SQLTicksPerDay_7() { return &___s_SQLTicksPerDay_7; }
inline void set_s_SQLTicksPerDay_7(int32_t value)
{
___s_SQLTicksPerDay_7 = value;
}
inline static int32_t get_offset_of_s_ticksPerSecond_8() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_ticksPerSecond_8)); }
inline int64_t get_s_ticksPerSecond_8() const { return ___s_ticksPerSecond_8; }
inline int64_t* get_address_of_s_ticksPerSecond_8() { return &___s_ticksPerSecond_8; }
inline void set_s_ticksPerSecond_8(int64_t value)
{
___s_ticksPerSecond_8 = value;
}
inline static int32_t get_offset_of_s_SQLBaseDate_9() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_SQLBaseDate_9)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_s_SQLBaseDate_9() const { return ___s_SQLBaseDate_9; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_s_SQLBaseDate_9() { return &___s_SQLBaseDate_9; }
inline void set_s_SQLBaseDate_9(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___s_SQLBaseDate_9 = value;
}
inline static int32_t get_offset_of_s_SQLBaseDateTicks_10() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_SQLBaseDateTicks_10)); }
inline int64_t get_s_SQLBaseDateTicks_10() const { return ___s_SQLBaseDateTicks_10; }
inline int64_t* get_address_of_s_SQLBaseDateTicks_10() { return &___s_SQLBaseDateTicks_10; }
inline void set_s_SQLBaseDateTicks_10(int64_t value)
{
___s_SQLBaseDateTicks_10 = value;
}
inline static int32_t get_offset_of_s_minYear_11() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_minYear_11)); }
inline int32_t get_s_minYear_11() const { return ___s_minYear_11; }
inline int32_t* get_address_of_s_minYear_11() { return &___s_minYear_11; }
inline void set_s_minYear_11(int32_t value)
{
___s_minYear_11 = value;
}
inline static int32_t get_offset_of_s_maxYear_12() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_maxYear_12)); }
inline int32_t get_s_maxYear_12() const { return ___s_maxYear_12; }
inline int32_t* get_address_of_s_maxYear_12() { return &___s_maxYear_12; }
inline void set_s_maxYear_12(int32_t value)
{
___s_maxYear_12 = value;
}
inline static int32_t get_offset_of_s_minDay_13() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_minDay_13)); }
inline int32_t get_s_minDay_13() const { return ___s_minDay_13; }
inline int32_t* get_address_of_s_minDay_13() { return &___s_minDay_13; }
inline void set_s_minDay_13(int32_t value)
{
___s_minDay_13 = value;
}
inline static int32_t get_offset_of_s_maxDay_14() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_maxDay_14)); }
inline int32_t get_s_maxDay_14() const { return ___s_maxDay_14; }
inline int32_t* get_address_of_s_maxDay_14() { return &___s_maxDay_14; }
inline void set_s_maxDay_14(int32_t value)
{
___s_maxDay_14 = value;
}
inline static int32_t get_offset_of_s_minTime_15() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_minTime_15)); }
inline int32_t get_s_minTime_15() const { return ___s_minTime_15; }
inline int32_t* get_address_of_s_minTime_15() { return &___s_minTime_15; }
inline void set_s_minTime_15(int32_t value)
{
___s_minTime_15 = value;
}
inline static int32_t get_offset_of_s_maxTime_16() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_maxTime_16)); }
inline int32_t get_s_maxTime_16() const { return ___s_maxTime_16; }
inline int32_t* get_address_of_s_maxTime_16() { return &___s_maxTime_16; }
inline void set_s_maxTime_16(int32_t value)
{
___s_maxTime_16 = value;
}
inline static int32_t get_offset_of_s_dayBase_17() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_dayBase_17)); }
inline int32_t get_s_dayBase_17() const { return ___s_dayBase_17; }
inline int32_t* get_address_of_s_dayBase_17() { return &___s_dayBase_17; }
inline void set_s_dayBase_17(int32_t value)
{
___s_dayBase_17 = value;
}
inline static int32_t get_offset_of_s_daysToMonth365_18() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_daysToMonth365_18)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_s_daysToMonth365_18() const { return ___s_daysToMonth365_18; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_s_daysToMonth365_18() { return &___s_daysToMonth365_18; }
inline void set_s_daysToMonth365_18(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___s_daysToMonth365_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_daysToMonth365_18), (void*)value);
}
inline static int32_t get_offset_of_s_daysToMonth366_19() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_daysToMonth366_19)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_s_daysToMonth366_19() const { return ___s_daysToMonth366_19; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_s_daysToMonth366_19() { return &___s_daysToMonth366_19; }
inline void set_s_daysToMonth366_19(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___s_daysToMonth366_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_daysToMonth366_19), (void*)value);
}
inline static int32_t get_offset_of_s_minDateTime_20() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_minDateTime_20)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_s_minDateTime_20() const { return ___s_minDateTime_20; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_s_minDateTime_20() { return &___s_minDateTime_20; }
inline void set_s_minDateTime_20(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___s_minDateTime_20 = value;
}
inline static int32_t get_offset_of_s_maxDateTime_21() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_maxDateTime_21)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_s_maxDateTime_21() const { return ___s_maxDateTime_21; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_s_maxDateTime_21() { return &___s_maxDateTime_21; }
inline void set_s_maxDateTime_21(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___s_maxDateTime_21 = value;
}
inline static int32_t get_offset_of_s_minTimeSpan_22() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_minTimeSpan_22)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_s_minTimeSpan_22() const { return ___s_minTimeSpan_22; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_s_minTimeSpan_22() { return &___s_minTimeSpan_22; }
inline void set_s_minTimeSpan_22(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___s_minTimeSpan_22 = value;
}
inline static int32_t get_offset_of_s_maxTimeSpan_23() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_maxTimeSpan_23)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_s_maxTimeSpan_23() const { return ___s_maxTimeSpan_23; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_s_maxTimeSpan_23() { return &___s_maxTimeSpan_23; }
inline void set_s_maxTimeSpan_23(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___s_maxTimeSpan_23 = value;
}
inline static int32_t get_offset_of_s_ISO8601_DateTimeFormat_24() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_ISO8601_DateTimeFormat_24)); }
inline String_t* get_s_ISO8601_DateTimeFormat_24() const { return ___s_ISO8601_DateTimeFormat_24; }
inline String_t** get_address_of_s_ISO8601_DateTimeFormat_24() { return &___s_ISO8601_DateTimeFormat_24; }
inline void set_s_ISO8601_DateTimeFormat_24(String_t* value)
{
___s_ISO8601_DateTimeFormat_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ISO8601_DateTimeFormat_24), (void*)value);
}
inline static int32_t get_offset_of_s_dateTimeFormats_25() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___s_dateTimeFormats_25)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_s_dateTimeFormats_25() const { return ___s_dateTimeFormats_25; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_s_dateTimeFormats_25() { return &___s_dateTimeFormats_25; }
inline void set_s_dateTimeFormats_25(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___s_dateTimeFormats_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_dateTimeFormats_25), (void*)value);
}
inline static int32_t get_offset_of_MinValue_26() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___MinValue_26)); }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D get_MinValue_26() const { return ___MinValue_26; }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D * get_address_of_MinValue_26() { return &___MinValue_26; }
inline void set_MinValue_26(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D value)
{
___MinValue_26 = value;
}
inline static int32_t get_offset_of_MaxValue_27() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___MaxValue_27)); }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D get_MaxValue_27() const { return ___MaxValue_27; }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D * get_address_of_MaxValue_27() { return &___MaxValue_27; }
inline void set_MaxValue_27(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D value)
{
___MaxValue_27 = value;
}
inline static int32_t get_offset_of_Null_28() { return static_cast<int32_t>(offsetof(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_StaticFields, ___Null_28)); }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D get_Null_28() const { return ___Null_28; }
inline SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D * get_address_of_Null_28() { return &___Null_28; }
inline void set_Null_28(SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D value)
{
___Null_28 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_marshaled_pinvoke
{
int32_t ___m_fNotNull_0;
int32_t ___m_day_1;
int32_t ___m_time_2;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlDateTime
struct SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D_marshaled_com
{
int32_t ___m_fNotNull_0;
int32_t ___m_day_1;
int32_t ___m_time_2;
};
// System.Data.SqlTypes.SqlString
struct SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E
{
public:
// System.String System.Data.SqlTypes.SqlString::m_value
String_t* ___m_value_0;
// System.Globalization.CompareInfo System.Data.SqlTypes.SqlString::m_cmpInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_cmpInfo_1;
// System.Int32 System.Data.SqlTypes.SqlString::m_lcid
int32_t ___m_lcid_2;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::m_flag
int32_t ___m_flag_3;
// System.Boolean System.Data.SqlTypes.SqlString::m_fNotNull
bool ___m_fNotNull_4;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E, ___m_value_0)); }
inline String_t* get_m_value_0() const { return ___m_value_0; }
inline String_t** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(String_t* value)
{
___m_value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_value_0), (void*)value);
}
inline static int32_t get_offset_of_m_cmpInfo_1() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E, ___m_cmpInfo_1)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_cmpInfo_1() const { return ___m_cmpInfo_1; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_cmpInfo_1() { return &___m_cmpInfo_1; }
inline void set_m_cmpInfo_1(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___m_cmpInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cmpInfo_1), (void*)value);
}
inline static int32_t get_offset_of_m_lcid_2() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E, ___m_lcid_2)); }
inline int32_t get_m_lcid_2() const { return ___m_lcid_2; }
inline int32_t* get_address_of_m_lcid_2() { return &___m_lcid_2; }
inline void set_m_lcid_2(int32_t value)
{
___m_lcid_2 = value;
}
inline static int32_t get_offset_of_m_flag_3() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E, ___m_flag_3)); }
inline int32_t get_m_flag_3() const { return ___m_flag_3; }
inline int32_t* get_address_of_m_flag_3() { return &___m_flag_3; }
inline void set_m_flag_3(int32_t value)
{
___m_flag_3 = value;
}
inline static int32_t get_offset_of_m_fNotNull_4() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E, ___m_fNotNull_4)); }
inline bool get_m_fNotNull_4() const { return ___m_fNotNull_4; }
inline bool* get_address_of_m_fNotNull_4() { return &___m_fNotNull_4; }
inline void set_m_fNotNull_4(bool value)
{
___m_fNotNull_4 = value;
}
};
struct SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields
{
public:
// System.Data.SqlTypes.SqlString System.Data.SqlTypes.SqlString::Null
SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E ___Null_5;
// System.Text.UnicodeEncoding System.Data.SqlTypes.SqlString::s_unicodeEncoding
UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * ___s_unicodeEncoding_6;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreCase
int32_t ___IgnoreCase_7;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreWidth
int32_t ___IgnoreWidth_8;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreNonSpace
int32_t ___IgnoreNonSpace_9;
// System.Int32 System.Data.SqlTypes.SqlString::IgnoreKanaType
int32_t ___IgnoreKanaType_10;
// System.Int32 System.Data.SqlTypes.SqlString::BinarySort
int32_t ___BinarySort_11;
// System.Int32 System.Data.SqlTypes.SqlString::BinarySort2
int32_t ___BinarySort2_12;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::s_iDefaultFlag
int32_t ___s_iDefaultFlag_13;
// System.Globalization.CompareOptions System.Data.SqlTypes.SqlString::s_iValidCompareOptionMask
int32_t ___s_iValidCompareOptionMask_14;
// System.Data.SqlTypes.SqlCompareOptions System.Data.SqlTypes.SqlString::s_iValidSqlCompareOptionMask
int32_t ___s_iValidSqlCompareOptionMask_15;
// System.Int32 System.Data.SqlTypes.SqlString::s_lcidUSEnglish
int32_t ___s_lcidUSEnglish_16;
// System.Int32 System.Data.SqlTypes.SqlString::s_lcidBinary
int32_t ___s_lcidBinary_17;
public:
inline static int32_t get_offset_of_Null_5() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___Null_5)); }
inline SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E get_Null_5() const { return ___Null_5; }
inline SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E * get_address_of_Null_5() { return &___Null_5; }
inline void set_Null_5(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E value)
{
___Null_5 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___Null_5))->___m_value_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___Null_5))->___m_cmpInfo_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_s_unicodeEncoding_6() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_unicodeEncoding_6)); }
inline UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * get_s_unicodeEncoding_6() const { return ___s_unicodeEncoding_6; }
inline UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 ** get_address_of_s_unicodeEncoding_6() { return &___s_unicodeEncoding_6; }
inline void set_s_unicodeEncoding_6(UnicodeEncoding_tBB60B97AFC49D6246F28BF16D3E09822FCCACC68 * value)
{
___s_unicodeEncoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_unicodeEncoding_6), (void*)value);
}
inline static int32_t get_offset_of_IgnoreCase_7() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___IgnoreCase_7)); }
inline int32_t get_IgnoreCase_7() const { return ___IgnoreCase_7; }
inline int32_t* get_address_of_IgnoreCase_7() { return &___IgnoreCase_7; }
inline void set_IgnoreCase_7(int32_t value)
{
___IgnoreCase_7 = value;
}
inline static int32_t get_offset_of_IgnoreWidth_8() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___IgnoreWidth_8)); }
inline int32_t get_IgnoreWidth_8() const { return ___IgnoreWidth_8; }
inline int32_t* get_address_of_IgnoreWidth_8() { return &___IgnoreWidth_8; }
inline void set_IgnoreWidth_8(int32_t value)
{
___IgnoreWidth_8 = value;
}
inline static int32_t get_offset_of_IgnoreNonSpace_9() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___IgnoreNonSpace_9)); }
inline int32_t get_IgnoreNonSpace_9() const { return ___IgnoreNonSpace_9; }
inline int32_t* get_address_of_IgnoreNonSpace_9() { return &___IgnoreNonSpace_9; }
inline void set_IgnoreNonSpace_9(int32_t value)
{
___IgnoreNonSpace_9 = value;
}
inline static int32_t get_offset_of_IgnoreKanaType_10() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___IgnoreKanaType_10)); }
inline int32_t get_IgnoreKanaType_10() const { return ___IgnoreKanaType_10; }
inline int32_t* get_address_of_IgnoreKanaType_10() { return &___IgnoreKanaType_10; }
inline void set_IgnoreKanaType_10(int32_t value)
{
___IgnoreKanaType_10 = value;
}
inline static int32_t get_offset_of_BinarySort_11() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___BinarySort_11)); }
inline int32_t get_BinarySort_11() const { return ___BinarySort_11; }
inline int32_t* get_address_of_BinarySort_11() { return &___BinarySort_11; }
inline void set_BinarySort_11(int32_t value)
{
___BinarySort_11 = value;
}
inline static int32_t get_offset_of_BinarySort2_12() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___BinarySort2_12)); }
inline int32_t get_BinarySort2_12() const { return ___BinarySort2_12; }
inline int32_t* get_address_of_BinarySort2_12() { return &___BinarySort2_12; }
inline void set_BinarySort2_12(int32_t value)
{
___BinarySort2_12 = value;
}
inline static int32_t get_offset_of_s_iDefaultFlag_13() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_iDefaultFlag_13)); }
inline int32_t get_s_iDefaultFlag_13() const { return ___s_iDefaultFlag_13; }
inline int32_t* get_address_of_s_iDefaultFlag_13() { return &___s_iDefaultFlag_13; }
inline void set_s_iDefaultFlag_13(int32_t value)
{
___s_iDefaultFlag_13 = value;
}
inline static int32_t get_offset_of_s_iValidCompareOptionMask_14() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_iValidCompareOptionMask_14)); }
inline int32_t get_s_iValidCompareOptionMask_14() const { return ___s_iValidCompareOptionMask_14; }
inline int32_t* get_address_of_s_iValidCompareOptionMask_14() { return &___s_iValidCompareOptionMask_14; }
inline void set_s_iValidCompareOptionMask_14(int32_t value)
{
___s_iValidCompareOptionMask_14 = value;
}
inline static int32_t get_offset_of_s_iValidSqlCompareOptionMask_15() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_iValidSqlCompareOptionMask_15)); }
inline int32_t get_s_iValidSqlCompareOptionMask_15() const { return ___s_iValidSqlCompareOptionMask_15; }
inline int32_t* get_address_of_s_iValidSqlCompareOptionMask_15() { return &___s_iValidSqlCompareOptionMask_15; }
inline void set_s_iValidSqlCompareOptionMask_15(int32_t value)
{
___s_iValidSqlCompareOptionMask_15 = value;
}
inline static int32_t get_offset_of_s_lcidUSEnglish_16() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_lcidUSEnglish_16)); }
inline int32_t get_s_lcidUSEnglish_16() const { return ___s_lcidUSEnglish_16; }
inline int32_t* get_address_of_s_lcidUSEnglish_16() { return &___s_lcidUSEnglish_16; }
inline void set_s_lcidUSEnglish_16(int32_t value)
{
___s_lcidUSEnglish_16 = value;
}
inline static int32_t get_offset_of_s_lcidBinary_17() { return static_cast<int32_t>(offsetof(SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_StaticFields, ___s_lcidBinary_17)); }
inline int32_t get_s_lcidBinary_17() const { return ___s_lcidBinary_17; }
inline int32_t* get_address_of_s_lcidBinary_17() { return &___s_lcidBinary_17; }
inline void set_s_lcidBinary_17(int32_t value)
{
___s_lcidBinary_17 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.SqlTypes.SqlString
struct SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_marshaled_pinvoke
{
char* ___m_value_0;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_cmpInfo_1;
int32_t ___m_lcid_2;
int32_t ___m_flag_3;
int32_t ___m_fNotNull_4;
};
// Native definition for COM marshalling of System.Data.SqlTypes.SqlString
struct SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E_marshaled_com
{
Il2CppChar* ___m_value_0;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_cmpInfo_1;
int32_t ___m_lcid_2;
int32_t ___m_flag_3;
int32_t ___m_fNotNull_4;
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B
{
public:
// System.Char TMPro.TMP_CharacterInfo::character
Il2CppChar ___character_0;
// System.Int32 TMPro.TMP_CharacterInfo::index
int32_t ___index_1;
// System.Int32 TMPro.TMP_CharacterInfo::stringLength
int32_t ___stringLength_2;
// TMPro.TMP_TextElementType TMPro.TMP_CharacterInfo::elementType
int32_t ___elementType_3;
// TMPro.TMP_TextElement TMPro.TMP_CharacterInfo::textElement
TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 * ___textElement_4;
// TMPro.TMP_FontAsset TMPro.TMP_CharacterInfo::fontAsset
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_5;
// TMPro.TMP_SpriteAsset TMPro.TMP_CharacterInfo::spriteAsset
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_6;
// System.Int32 TMPro.TMP_CharacterInfo::spriteIndex
int32_t ___spriteIndex_7;
// UnityEngine.Material TMPro.TMP_CharacterInfo::material
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_8;
// System.Int32 TMPro.TMP_CharacterInfo::materialReferenceIndex
int32_t ___materialReferenceIndex_9;
// System.Boolean TMPro.TMP_CharacterInfo::isUsingAlternateTypeface
bool ___isUsingAlternateTypeface_10;
// System.Single TMPro.TMP_CharacterInfo::pointSize
float ___pointSize_11;
// System.Int32 TMPro.TMP_CharacterInfo::lineNumber
int32_t ___lineNumber_12;
// System.Int32 TMPro.TMP_CharacterInfo::pageNumber
int32_t ___pageNumber_13;
// System.Int32 TMPro.TMP_CharacterInfo::vertexIndex
int32_t ___vertexIndex_14;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BL
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BL_15;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TL
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TL_16;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_TR
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TR_17;
// TMPro.TMP_Vertex TMPro.TMP_CharacterInfo::vertex_BR
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BR_18;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topLeft
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topLeft_19;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomLeft
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomLeft_20;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::topRight
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topRight_21;
// UnityEngine.Vector3 TMPro.TMP_CharacterInfo::bottomRight
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomRight_22;
// System.Single TMPro.TMP_CharacterInfo::origin
float ___origin_23;
// System.Single TMPro.TMP_CharacterInfo::xAdvance
float ___xAdvance_24;
// System.Single TMPro.TMP_CharacterInfo::ascender
float ___ascender_25;
// System.Single TMPro.TMP_CharacterInfo::baseLine
float ___baseLine_26;
// System.Single TMPro.TMP_CharacterInfo::descender
float ___descender_27;
// System.Single TMPro.TMP_CharacterInfo::adjustedAscender
float ___adjustedAscender_28;
// System.Single TMPro.TMP_CharacterInfo::adjustedDescender
float ___adjustedDescender_29;
// System.Single TMPro.TMP_CharacterInfo::aspectRatio
float ___aspectRatio_30;
// System.Single TMPro.TMP_CharacterInfo::scale
float ___scale_31;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::color
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_32;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::underlineColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_33;
// System.Int32 TMPro.TMP_CharacterInfo::underlineVertexIndex
int32_t ___underlineVertexIndex_34;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::strikethroughColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_35;
// System.Int32 TMPro.TMP_CharacterInfo::strikethroughVertexIndex
int32_t ___strikethroughVertexIndex_36;
// UnityEngine.Color32 TMPro.TMP_CharacterInfo::highlightColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_37;
// TMPro.HighlightState TMPro.TMP_CharacterInfo::highlightState
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 ___highlightState_38;
// TMPro.FontStyles TMPro.TMP_CharacterInfo::style
int32_t ___style_39;
// System.Boolean TMPro.TMP_CharacterInfo::isVisible
bool ___isVisible_40;
public:
inline static int32_t get_offset_of_character_0() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___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_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___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_stringLength_2() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___stringLength_2)); }
inline int32_t get_stringLength_2() const { return ___stringLength_2; }
inline int32_t* get_address_of_stringLength_2() { return &___stringLength_2; }
inline void set_stringLength_2(int32_t value)
{
___stringLength_2 = value;
}
inline static int32_t get_offset_of_elementType_3() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___elementType_3)); }
inline int32_t get_elementType_3() const { return ___elementType_3; }
inline int32_t* get_address_of_elementType_3() { return &___elementType_3; }
inline void set_elementType_3(int32_t value)
{
___elementType_3 = value;
}
inline static int32_t get_offset_of_textElement_4() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___textElement_4)); }
inline TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 * get_textElement_4() const { return ___textElement_4; }
inline TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 ** get_address_of_textElement_4() { return &___textElement_4; }
inline void set_textElement_4(TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 * value)
{
___textElement_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textElement_4), (void*)value);
}
inline static int32_t get_offset_of_fontAsset_5() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___fontAsset_5)); }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * get_fontAsset_5() const { return ___fontAsset_5; }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 ** get_address_of_fontAsset_5() { return &___fontAsset_5; }
inline void set_fontAsset_5(TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * value)
{
___fontAsset_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fontAsset_5), (void*)value);
}
inline static int32_t get_offset_of_spriteAsset_6() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___spriteAsset_6)); }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * get_spriteAsset_6() const { return ___spriteAsset_6; }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 ** get_address_of_spriteAsset_6() { return &___spriteAsset_6; }
inline void set_spriteAsset_6(TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * value)
{
___spriteAsset_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___spriteAsset_6), (void*)value);
}
inline static int32_t get_offset_of_spriteIndex_7() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___spriteIndex_7)); }
inline int32_t get_spriteIndex_7() const { return ___spriteIndex_7; }
inline int32_t* get_address_of_spriteIndex_7() { return &___spriteIndex_7; }
inline void set_spriteIndex_7(int32_t value)
{
___spriteIndex_7 = value;
}
inline static int32_t get_offset_of_material_8() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___material_8)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_material_8() const { return ___material_8; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_material_8() { return &___material_8; }
inline void set_material_8(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___material_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_8), (void*)value);
}
inline static int32_t get_offset_of_materialReferenceIndex_9() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___materialReferenceIndex_9)); }
inline int32_t get_materialReferenceIndex_9() const { return ___materialReferenceIndex_9; }
inline int32_t* get_address_of_materialReferenceIndex_9() { return &___materialReferenceIndex_9; }
inline void set_materialReferenceIndex_9(int32_t value)
{
___materialReferenceIndex_9 = value;
}
inline static int32_t get_offset_of_isUsingAlternateTypeface_10() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___isUsingAlternateTypeface_10)); }
inline bool get_isUsingAlternateTypeface_10() const { return ___isUsingAlternateTypeface_10; }
inline bool* get_address_of_isUsingAlternateTypeface_10() { return &___isUsingAlternateTypeface_10; }
inline void set_isUsingAlternateTypeface_10(bool value)
{
___isUsingAlternateTypeface_10 = value;
}
inline static int32_t get_offset_of_pointSize_11() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___pointSize_11)); }
inline float get_pointSize_11() const { return ___pointSize_11; }
inline float* get_address_of_pointSize_11() { return &___pointSize_11; }
inline void set_pointSize_11(float value)
{
___pointSize_11 = value;
}
inline static int32_t get_offset_of_lineNumber_12() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___lineNumber_12)); }
inline int32_t get_lineNumber_12() const { return ___lineNumber_12; }
inline int32_t* get_address_of_lineNumber_12() { return &___lineNumber_12; }
inline void set_lineNumber_12(int32_t value)
{
___lineNumber_12 = value;
}
inline static int32_t get_offset_of_pageNumber_13() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___pageNumber_13)); }
inline int32_t get_pageNumber_13() const { return ___pageNumber_13; }
inline int32_t* get_address_of_pageNumber_13() { return &___pageNumber_13; }
inline void set_pageNumber_13(int32_t value)
{
___pageNumber_13 = value;
}
inline static int32_t get_offset_of_vertexIndex_14() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___vertexIndex_14)); }
inline int32_t get_vertexIndex_14() const { return ___vertexIndex_14; }
inline int32_t* get_address_of_vertexIndex_14() { return &___vertexIndex_14; }
inline void set_vertexIndex_14(int32_t value)
{
___vertexIndex_14 = value;
}
inline static int32_t get_offset_of_vertex_BL_15() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___vertex_BL_15)); }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E get_vertex_BL_15() const { return ___vertex_BL_15; }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E * get_address_of_vertex_BL_15() { return &___vertex_BL_15; }
inline void set_vertex_BL_15(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E value)
{
___vertex_BL_15 = value;
}
inline static int32_t get_offset_of_vertex_TL_16() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___vertex_TL_16)); }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E get_vertex_TL_16() const { return ___vertex_TL_16; }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E * get_address_of_vertex_TL_16() { return &___vertex_TL_16; }
inline void set_vertex_TL_16(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E value)
{
___vertex_TL_16 = value;
}
inline static int32_t get_offset_of_vertex_TR_17() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___vertex_TR_17)); }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E get_vertex_TR_17() const { return ___vertex_TR_17; }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E * get_address_of_vertex_TR_17() { return &___vertex_TR_17; }
inline void set_vertex_TR_17(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E value)
{
___vertex_TR_17 = value;
}
inline static int32_t get_offset_of_vertex_BR_18() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___vertex_BR_18)); }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E get_vertex_BR_18() const { return ___vertex_BR_18; }
inline TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E * get_address_of_vertex_BR_18() { return &___vertex_BR_18; }
inline void set_vertex_BR_18(TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E value)
{
___vertex_BR_18 = value;
}
inline static int32_t get_offset_of_topLeft_19() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___topLeft_19)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_topLeft_19() const { return ___topLeft_19; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_topLeft_19() { return &___topLeft_19; }
inline void set_topLeft_19(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___topLeft_19 = value;
}
inline static int32_t get_offset_of_bottomLeft_20() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___bottomLeft_20)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_bottomLeft_20() const { return ___bottomLeft_20; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_bottomLeft_20() { return &___bottomLeft_20; }
inline void set_bottomLeft_20(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___bottomLeft_20 = value;
}
inline static int32_t get_offset_of_topRight_21() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___topRight_21)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_topRight_21() const { return ___topRight_21; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_topRight_21() { return &___topRight_21; }
inline void set_topRight_21(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___topRight_21 = value;
}
inline static int32_t get_offset_of_bottomRight_22() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___bottomRight_22)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_bottomRight_22() const { return ___bottomRight_22; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_bottomRight_22() { return &___bottomRight_22; }
inline void set_bottomRight_22(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___bottomRight_22 = value;
}
inline static int32_t get_offset_of_origin_23() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___origin_23)); }
inline float get_origin_23() const { return ___origin_23; }
inline float* get_address_of_origin_23() { return &___origin_23; }
inline void set_origin_23(float value)
{
___origin_23 = value;
}
inline static int32_t get_offset_of_xAdvance_24() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___xAdvance_24)); }
inline float get_xAdvance_24() const { return ___xAdvance_24; }
inline float* get_address_of_xAdvance_24() { return &___xAdvance_24; }
inline void set_xAdvance_24(float value)
{
___xAdvance_24 = value;
}
inline static int32_t get_offset_of_ascender_25() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___ascender_25)); }
inline float get_ascender_25() const { return ___ascender_25; }
inline float* get_address_of_ascender_25() { return &___ascender_25; }
inline void set_ascender_25(float value)
{
___ascender_25 = value;
}
inline static int32_t get_offset_of_baseLine_26() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___baseLine_26)); }
inline float get_baseLine_26() const { return ___baseLine_26; }
inline float* get_address_of_baseLine_26() { return &___baseLine_26; }
inline void set_baseLine_26(float value)
{
___baseLine_26 = value;
}
inline static int32_t get_offset_of_descender_27() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___descender_27)); }
inline float get_descender_27() const { return ___descender_27; }
inline float* get_address_of_descender_27() { return &___descender_27; }
inline void set_descender_27(float value)
{
___descender_27 = value;
}
inline static int32_t get_offset_of_adjustedAscender_28() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___adjustedAscender_28)); }
inline float get_adjustedAscender_28() const { return ___adjustedAscender_28; }
inline float* get_address_of_adjustedAscender_28() { return &___adjustedAscender_28; }
inline void set_adjustedAscender_28(float value)
{
___adjustedAscender_28 = value;
}
inline static int32_t get_offset_of_adjustedDescender_29() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___adjustedDescender_29)); }
inline float get_adjustedDescender_29() const { return ___adjustedDescender_29; }
inline float* get_address_of_adjustedDescender_29() { return &___adjustedDescender_29; }
inline void set_adjustedDescender_29(float value)
{
___adjustedDescender_29 = value;
}
inline static int32_t get_offset_of_aspectRatio_30() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___aspectRatio_30)); }
inline float get_aspectRatio_30() const { return ___aspectRatio_30; }
inline float* get_address_of_aspectRatio_30() { return &___aspectRatio_30; }
inline void set_aspectRatio_30(float value)
{
___aspectRatio_30 = value;
}
inline static int32_t get_offset_of_scale_31() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___scale_31)); }
inline float get_scale_31() const { return ___scale_31; }
inline float* get_address_of_scale_31() { return &___scale_31; }
inline void set_scale_31(float value)
{
___scale_31 = value;
}
inline static int32_t get_offset_of_color_32() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___color_32)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_color_32() const { return ___color_32; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_color_32() { return &___color_32; }
inline void set_color_32(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___color_32 = value;
}
inline static int32_t get_offset_of_underlineColor_33() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___underlineColor_33)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_underlineColor_33() const { return ___underlineColor_33; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_underlineColor_33() { return &___underlineColor_33; }
inline void set_underlineColor_33(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___underlineColor_33 = value;
}
inline static int32_t get_offset_of_underlineVertexIndex_34() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___underlineVertexIndex_34)); }
inline int32_t get_underlineVertexIndex_34() const { return ___underlineVertexIndex_34; }
inline int32_t* get_address_of_underlineVertexIndex_34() { return &___underlineVertexIndex_34; }
inline void set_underlineVertexIndex_34(int32_t value)
{
___underlineVertexIndex_34 = value;
}
inline static int32_t get_offset_of_strikethroughColor_35() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___strikethroughColor_35)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_strikethroughColor_35() const { return ___strikethroughColor_35; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_strikethroughColor_35() { return &___strikethroughColor_35; }
inline void set_strikethroughColor_35(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___strikethroughColor_35 = value;
}
inline static int32_t get_offset_of_strikethroughVertexIndex_36() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___strikethroughVertexIndex_36)); }
inline int32_t get_strikethroughVertexIndex_36() const { return ___strikethroughVertexIndex_36; }
inline int32_t* get_address_of_strikethroughVertexIndex_36() { return &___strikethroughVertexIndex_36; }
inline void set_strikethroughVertexIndex_36(int32_t value)
{
___strikethroughVertexIndex_36 = value;
}
inline static int32_t get_offset_of_highlightColor_37() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___highlightColor_37)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_highlightColor_37() const { return ___highlightColor_37; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_highlightColor_37() { return &___highlightColor_37; }
inline void set_highlightColor_37(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___highlightColor_37 = value;
}
inline static int32_t get_offset_of_highlightState_38() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___highlightState_38)); }
inline HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 get_highlightState_38() const { return ___highlightState_38; }
inline HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 * get_address_of_highlightState_38() { return &___highlightState_38; }
inline void set_highlightState_38(HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 value)
{
___highlightState_38 = value;
}
inline static int32_t get_offset_of_style_39() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___style_39)); }
inline int32_t get_style_39() const { return ___style_39; }
inline int32_t* get_address_of_style_39() { return &___style_39; }
inline void set_style_39(int32_t value)
{
___style_39 = value;
}
inline static int32_t get_offset_of_isVisible_40() { return static_cast<int32_t>(offsetof(TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B, ___isVisible_40)); }
inline bool get_isVisible_40() const { return ___isVisible_40; }
inline bool* get_address_of_isVisible_40() { return &___isVisible_40; }
inline void set_isVisible_40(bool value)
{
___isVisible_40 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B_marshaled_pinvoke
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 * ___textElement_4;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_5;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BL_15;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TL_16;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TR_17;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BR_18;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topLeft_19;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomLeft_20;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topRight_21;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomRight_22;
float ___origin_23;
float ___xAdvance_24;
float ___ascender_25;
float ___baseLine_26;
float ___descender_27;
float ___adjustedAscender_28;
float ___adjustedDescender_29;
float ___aspectRatio_30;
float ___scale_31;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_32;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_33;
int32_t ___underlineVertexIndex_34;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_35;
int32_t ___strikethroughVertexIndex_36;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_37;
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 ___highlightState_38;
int32_t ___style_39;
int32_t ___isVisible_40;
};
// Native definition for COM marshalling of TMPro.TMP_CharacterInfo
struct TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B_marshaled_com
{
uint8_t ___character_0;
int32_t ___index_1;
int32_t ___stringLength_2;
int32_t ___elementType_3;
TMP_TextElement_tDF9A55D56A0B44EA4EA36DEDF942AEB6369AF832 * ___textElement_4;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___fontAsset_5;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___spriteAsset_6;
int32_t ___spriteIndex_7;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_8;
int32_t ___materialReferenceIndex_9;
int32_t ___isUsingAlternateTypeface_10;
float ___pointSize_11;
int32_t ___lineNumber_12;
int32_t ___pageNumber_13;
int32_t ___vertexIndex_14;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BL_15;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TL_16;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_TR_17;
TMP_Vertex_t8008D4AEC9AE4E475F5E02225801EB18A2A1341E ___vertex_BR_18;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topLeft_19;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomLeft_20;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___topRight_21;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___bottomRight_22;
float ___origin_23;
float ___xAdvance_24;
float ___ascender_25;
float ___baseLine_26;
float ___descender_27;
float ___adjustedAscender_28;
float ___adjustedDescender_29;
float ___aspectRatio_30;
float ___scale_31;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___color_32;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_33;
int32_t ___underlineVertexIndex_34;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_35;
int32_t ___strikethroughVertexIndex_36;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_37;
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 ___highlightState_38;
int32_t ___style_39;
int32_t ___isVisible_40;
};
// TMPro.TMP_LineInfo
struct TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7
{
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.HorizontalAlignmentOptions TMPro.TMP_LineInfo::alignment
int32_t ___alignment_18;
// TMPro.Extents TMPro.TMP_LineInfo::lineExtents
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___lineExtents_19;
public:
inline static int32_t get_offset_of_controlCharacterCount_0() { return static_cast<int32_t>(offsetof(TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___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_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7, ___lineExtents_19)); }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA get_lineExtents_19() const { return ___lineExtents_19; }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA * get_address_of_lineExtents_19() { return &___lineExtents_19; }
inline void set_lineExtents_19(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA value)
{
___lineExtents_19 = value;
}
};
// TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176
{
public:
// UnityEngine.Mesh TMPro.TMP_MeshInfo::mesh
Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___mesh_4;
// System.Int32 TMPro.TMP_MeshInfo::vertexCount
int32_t ___vertexCount_5;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::vertices
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___vertices_6;
// UnityEngine.Vector3[] TMPro.TMP_MeshInfo::normals
Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* ___normals_7;
// UnityEngine.Vector4[] TMPro.TMP_MeshInfo::tangents
Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* ___tangents_8;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs0
Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___uvs0_9;
// UnityEngine.Vector2[] TMPro.TMP_MeshInfo::uvs2
Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___uvs2_10;
// UnityEngine.Color32[] TMPro.TMP_MeshInfo::colors32
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* ___colors32_11;
// System.Int32[] TMPro.TMP_MeshInfo::triangles
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___triangles_12;
// UnityEngine.Material TMPro.TMP_MeshInfo::material
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_13;
public:
inline static int32_t get_offset_of_mesh_4() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___mesh_4)); }
inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_mesh_4() const { return ___mesh_4; }
inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_mesh_4() { return &___mesh_4; }
inline void set_mesh_4(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value)
{
___mesh_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mesh_4), (void*)value);
}
inline static int32_t get_offset_of_vertexCount_5() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___vertexCount_5)); }
inline int32_t get_vertexCount_5() const { return ___vertexCount_5; }
inline int32_t* get_address_of_vertexCount_5() { return &___vertexCount_5; }
inline void set_vertexCount_5(int32_t value)
{
___vertexCount_5 = value;
}
inline static int32_t get_offset_of_vertices_6() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___vertices_6)); }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_vertices_6() const { return ___vertices_6; }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_vertices_6() { return &___vertices_6; }
inline void set_vertices_6(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value)
{
___vertices_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___vertices_6), (void*)value);
}
inline static int32_t get_offset_of_normals_7() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___normals_7)); }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* get_normals_7() const { return ___normals_7; }
inline Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4** get_address_of_normals_7() { return &___normals_7; }
inline void set_normals_7(Vector3U5BU5D_t5FB88EAA33E46838BDC2ABDAEA3E8727491CB9E4* value)
{
___normals_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___normals_7), (void*)value);
}
inline static int32_t get_offset_of_tangents_8() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___tangents_8)); }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* get_tangents_8() const { return ___tangents_8; }
inline Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871** get_address_of_tangents_8() { return &___tangents_8; }
inline void set_tangents_8(Vector4U5BU5D_tCE72D928AA6FF1852BAC5E4396F6F0131ED11871* value)
{
___tangents_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tangents_8), (void*)value);
}
inline static int32_t get_offset_of_uvs0_9() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___uvs0_9)); }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_uvs0_9() const { return ___uvs0_9; }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_uvs0_9() { return &___uvs0_9; }
inline void set_uvs0_9(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value)
{
___uvs0_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uvs0_9), (void*)value);
}
inline static int32_t get_offset_of_uvs2_10() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___uvs2_10)); }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_uvs2_10() const { return ___uvs2_10; }
inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_uvs2_10() { return &___uvs2_10; }
inline void set_uvs2_10(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value)
{
___uvs2_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uvs2_10), (void*)value);
}
inline static int32_t get_offset_of_colors32_11() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___colors32_11)); }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* get_colors32_11() const { return ___colors32_11; }
inline Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2** get_address_of_colors32_11() { return &___colors32_11; }
inline void set_colors32_11(Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* value)
{
___colors32_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___colors32_11), (void*)value);
}
inline static int32_t get_offset_of_triangles_12() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___triangles_12)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_triangles_12() const { return ___triangles_12; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_triangles_12() { return &___triangles_12; }
inline void set_triangles_12(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___triangles_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___triangles_12), (void*)value);
}
inline static int32_t get_offset_of_material_13() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176, ___material_13)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_material_13() const { return ___material_13; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_material_13() { return &___material_13; }
inline void set_material_13(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___material_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_13), (void*)value);
}
};
struct TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_StaticFields
{
public:
// UnityEngine.Color32 TMPro.TMP_MeshInfo::s_DefaultColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___s_DefaultColor_0;
// UnityEngine.Vector3 TMPro.TMP_MeshInfo::s_DefaultNormal
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___s_DefaultNormal_1;
// UnityEngine.Vector4 TMPro.TMP_MeshInfo::s_DefaultTangent
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___s_DefaultTangent_2;
// UnityEngine.Bounds TMPro.TMP_MeshInfo::s_DefaultBounds
Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 ___s_DefaultBounds_3;
public:
inline static int32_t get_offset_of_s_DefaultColor_0() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_StaticFields, ___s_DefaultColor_0)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_s_DefaultColor_0() const { return ___s_DefaultColor_0; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_s_DefaultColor_0() { return &___s_DefaultColor_0; }
inline void set_s_DefaultColor_0(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___s_DefaultColor_0 = value;
}
inline static int32_t get_offset_of_s_DefaultNormal_1() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_StaticFields, ___s_DefaultNormal_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_s_DefaultNormal_1() const { return ___s_DefaultNormal_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_s_DefaultNormal_1() { return &___s_DefaultNormal_1; }
inline void set_s_DefaultNormal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___s_DefaultNormal_1 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_2() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_StaticFields, ___s_DefaultTangent_2)); }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_s_DefaultTangent_2() const { return ___s_DefaultTangent_2; }
inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_s_DefaultTangent_2() { return &___s_DefaultTangent_2; }
inline void set_s_DefaultTangent_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value)
{
___s_DefaultTangent_2 = value;
}
inline static int32_t get_offset_of_s_DefaultBounds_3() { return static_cast<int32_t>(offsetof(TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_StaticFields, ___s_DefaultBounds_3)); }
inline Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 get_s_DefaultBounds_3() const { return ___s_DefaultBounds_3; }
inline Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 * get_address_of_s_DefaultBounds_3() { return &___s_DefaultBounds_3; }
inline void set_s_DefaultBounds_3(Bounds_t0F1F36D4F7AF49524B3C2A2259594412A3D3AE37 value)
{
___s_DefaultBounds_3 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_marshaled_pinvoke
{
Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___vertices_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___normals_7;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___tangents_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___uvs0_9;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___uvs2_10;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___colors32_11;
Il2CppSafeArray/*NONE*/* ___triangles_12;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_13;
};
// Native definition for COM marshalling of TMPro.TMP_MeshInfo
struct TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176_marshaled_com
{
Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___mesh_4;
int32_t ___vertexCount_5;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___vertices_6;
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___normals_7;
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___tangents_8;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___uvs0_9;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___uvs2_10;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * ___colors32_11;
Il2CppSafeArray/*NONE*/* ___triangles_12;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___material_13;
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)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((void**)(&___Missing_3), (void*)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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB
{
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_tB6C3677955C287CF97042F208630AA0F5ABF77FB, ___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_tB6C3677955C287CF97042F208630AA0F5ABF77FB, ___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((void**)(&___info_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB_marshaled_pinvoke
{
int32_t ___status_0;
char* ___info_1;
};
// Native definition for COM marshalling of System.Security.Cryptography.X509Certificates.X509ChainStatus
struct X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB_marshaled_com
{
int32_t ___status_0;
Il2CppChar* ___info_1;
};
// UnityEngine.XR.ARSubsystems.XRAnchor
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRAnchor::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRAnchor::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRAnchor::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRAnchor::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRAnchor::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRAnchor UnityEngine.XR.ARSubsystems.XRAnchor::s_Default
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C_StaticFields, ___s_Default_0)); }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C get_s_Default_0() const { return ___s_Default_0; }
inline XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRFace
struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRFace::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRFace::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRFace::m_NativePtr
intptr_t ___m_NativePtr_3;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_LeftEyePose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_LeftEyePose_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRFace::m_RightEyePose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_RightEyePose_5;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRFace::m_FixationPoint
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_FixationPoint_6;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_LeftEyePose_4() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_LeftEyePose_4)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_LeftEyePose_4() const { return ___m_LeftEyePose_4; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_LeftEyePose_4() { return &___m_LeftEyePose_4; }
inline void set_m_LeftEyePose_4(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_LeftEyePose_4 = value;
}
inline static int32_t get_offset_of_m_RightEyePose_5() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_RightEyePose_5)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_RightEyePose_5() const { return ___m_RightEyePose_5; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_RightEyePose_5() { return &___m_RightEyePose_5; }
inline void set_m_RightEyePose_5(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_RightEyePose_5 = value;
}
inline static int32_t get_offset_of_m_FixationPoint_6() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599, ___m_FixationPoint_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_FixationPoint_6() const { return ___m_FixationPoint_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_FixationPoint_6() { return &___m_FixationPoint_6; }
inline void set_m_FixationPoint_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_FixationPoint_6 = value;
}
};
struct XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRFace UnityEngine.XR.ARSubsystems.XRFace::s_Default
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 ___s_Default_7;
public:
inline static int32_t get_offset_of_s_Default_7() { return static_cast<int32_t>(offsetof(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599_StaticFields, ___s_Default_7)); }
inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 get_s_Default_7() const { return ___s_Default_7; }
inline XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 * get_address_of_s_Default_7() { return &___s_Default_7; }
inline void set_s_Default_7(XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 value)
{
___s_Default_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBody
struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBody::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// System.Single UnityEngine.XR.ARSubsystems.XRHumanBody::m_EstimatedHeightScaleFactor
float ___m_EstimatedHeightScaleFactor_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRHumanBody::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRHumanBody::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_EstimatedHeightScaleFactor_2() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_EstimatedHeightScaleFactor_2)); }
inline float get_m_EstimatedHeightScaleFactor_2() const { return ___m_EstimatedHeightScaleFactor_2; }
inline float* get_address_of_m_EstimatedHeightScaleFactor_2() { return &___m_EstimatedHeightScaleFactor_2; }
inline void set_m_EstimatedHeightScaleFactor_2(float value)
{
___m_EstimatedHeightScaleFactor_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRHumanBody UnityEngine.XR.ARSubsystems.XRHumanBody::s_Default
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B_StaticFields, ___s_Default_5)); }
inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B get_s_Default_5() const { return ___s_Default_5; }
inline XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRHumanBodyJoint
struct XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4
{
public:
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Index
int32_t ___m_Index_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_ParentIndex
int32_t ___m_ParentIndex_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_LocalScale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_LocalPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_LocalPose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorScale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AnchorScale_4;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_AnchorPose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_AnchorPose_5;
// System.Int32 UnityEngine.XR.ARSubsystems.XRHumanBodyJoint::m_Tracked
int32_t ___m_Tracked_6;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_Index_0)); }
inline int32_t get_m_Index_0() const { return ___m_Index_0; }
inline int32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(int32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_ParentIndex_1() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_ParentIndex_1)); }
inline int32_t get_m_ParentIndex_1() const { return ___m_ParentIndex_1; }
inline int32_t* get_address_of_m_ParentIndex_1() { return &___m_ParentIndex_1; }
inline void set_m_ParentIndex_1(int32_t value)
{
___m_ParentIndex_1 = value;
}
inline static int32_t get_offset_of_m_LocalScale_2() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_LocalScale_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_LocalScale_2() const { return ___m_LocalScale_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_LocalScale_2() { return &___m_LocalScale_2; }
inline void set_m_LocalScale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_LocalScale_2 = value;
}
inline static int32_t get_offset_of_m_LocalPose_3() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_LocalPose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_LocalPose_3() const { return ___m_LocalPose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_LocalPose_3() { return &___m_LocalPose_3; }
inline void set_m_LocalPose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_LocalPose_3 = value;
}
inline static int32_t get_offset_of_m_AnchorScale_4() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_AnchorScale_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AnchorScale_4() const { return ___m_AnchorScale_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AnchorScale_4() { return &___m_AnchorScale_4; }
inline void set_m_AnchorScale_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AnchorScale_4 = value;
}
inline static int32_t get_offset_of_m_AnchorPose_5() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_AnchorPose_5)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_AnchorPose_5() const { return ___m_AnchorPose_5; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_AnchorPose_5() { return &___m_AnchorPose_5; }
inline void set_m_AnchorPose_5(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_AnchorPose_5 = value;
}
inline static int32_t get_offset_of_m_Tracked_6() { return static_cast<int32_t>(offsetof(XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4, ___m_Tracked_6)); }
inline int32_t get_m_Tracked_6() const { return ___m_Tracked_6; }
inline int32_t* get_address_of_m_Tracked_6() { return &___m_Tracked_6; }
inline void set_m_Tracked_6(int32_t value)
{
___m_Tracked_6 = value;
}
};
// UnityEngine.XR.XRNodeState
struct XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33
{
public:
// UnityEngine.XR.XRNode UnityEngine.XR.XRNodeState::m_Type
int32_t ___m_Type_0;
// UnityEngine.XR.AvailableTrackingData UnityEngine.XR.XRNodeState::m_AvailableFields
int32_t ___m_AvailableFields_1;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Position
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Position_2;
// UnityEngine.Quaternion UnityEngine.XR.XRNodeState::m_Rotation
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___m_Rotation_3;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Velocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Velocity_4;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularVelocity
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularVelocity_5;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_Acceleration
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Acceleration_6;
// UnityEngine.Vector3 UnityEngine.XR.XRNodeState::m_AngularAcceleration
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_AngularAcceleration_7;
// System.Int32 UnityEngine.XR.XRNodeState::m_Tracked
int32_t ___m_Tracked_8;
// System.UInt64 UnityEngine.XR.XRNodeState::m_UniqueID
uint64_t ___m_UniqueID_9;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_AvailableFields_1() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AvailableFields_1)); }
inline int32_t get_m_AvailableFields_1() const { return ___m_AvailableFields_1; }
inline int32_t* get_address_of_m_AvailableFields_1() { return &___m_AvailableFields_1; }
inline void set_m_AvailableFields_1(int32_t value)
{
___m_AvailableFields_1 = value;
}
inline static int32_t get_offset_of_m_Position_2() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Position_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Position_2() const { return ___m_Position_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Position_2() { return &___m_Position_2; }
inline void set_m_Position_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Position_2 = value;
}
inline static int32_t get_offset_of_m_Rotation_3() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Rotation_3)); }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_m_Rotation_3() const { return ___m_Rotation_3; }
inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_m_Rotation_3() { return &___m_Rotation_3; }
inline void set_m_Rotation_3(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value)
{
___m_Rotation_3 = value;
}
inline static int32_t get_offset_of_m_Velocity_4() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Velocity_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Velocity_4() const { return ___m_Velocity_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Velocity_4() { return &___m_Velocity_4; }
inline void set_m_Velocity_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Velocity_4 = value;
}
inline static int32_t get_offset_of_m_AngularVelocity_5() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AngularVelocity_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularVelocity_5() const { return ___m_AngularVelocity_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularVelocity_5() { return &___m_AngularVelocity_5; }
inline void set_m_AngularVelocity_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AngularVelocity_5 = value;
}
inline static int32_t get_offset_of_m_Acceleration_6() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Acceleration_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Acceleration_6() const { return ___m_Acceleration_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Acceleration_6() { return &___m_Acceleration_6; }
inline void set_m_Acceleration_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Acceleration_6 = value;
}
inline static int32_t get_offset_of_m_AngularAcceleration_7() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_AngularAcceleration_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_AngularAcceleration_7() const { return ___m_AngularAcceleration_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_AngularAcceleration_7() { return &___m_AngularAcceleration_7; }
inline void set_m_AngularAcceleration_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_AngularAcceleration_7 = value;
}
inline static int32_t get_offset_of_m_Tracked_8() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_Tracked_8)); }
inline int32_t get_m_Tracked_8() const { return ___m_Tracked_8; }
inline int32_t* get_address_of_m_Tracked_8() { return &___m_Tracked_8; }
inline void set_m_Tracked_8(int32_t value)
{
___m_Tracked_8 = value;
}
inline static int32_t get_offset_of_m_UniqueID_9() { return static_cast<int32_t>(offsetof(XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33, ___m_UniqueID_9)); }
inline uint64_t get_m_UniqueID_9() const { return ___m_UniqueID_9; }
inline uint64_t* get_address_of_m_UniqueID_9() { return &___m_UniqueID_9; }
inline void set_m_UniqueID_9(uint64_t value)
{
___m_UniqueID_9 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRParticipant
struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRParticipant::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRParticipant::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRParticipant::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRParticipant::m_SessionId
Guid_t ___m_SessionId_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_SessionId_4() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F, ___m_SessionId_4)); }
inline Guid_t get_m_SessionId_4() const { return ___m_SessionId_4; }
inline Guid_t * get_address_of_m_SessionId_4() { return &___m_SessionId_4; }
inline void set_m_SessionId_4(Guid_t value)
{
___m_SessionId_4 = value;
}
};
struct XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRParticipant UnityEngine.XR.ARSubsystems.XRParticipant::k_Default
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F ___k_Default_5;
public:
inline static int32_t get_offset_of_k_Default_5() { return static_cast<int32_t>(offsetof(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F_StaticFields, ___k_Default_5)); }
inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F get_k_Default_5() const { return ___k_Default_5; }
inline XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F * get_address_of_k_Default_5() { return &___k_Default_5; }
inline void set_k_Default_5(XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F value)
{
___k_Default_5 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRPointCloud
struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRPointCloud::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRPointCloud::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRPointCloud::m_NativePtr
intptr_t ___m_NativePtr_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
};
struct XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRPointCloud UnityEngine.XR.ARSubsystems.XRPointCloud::s_Default
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2_StaticFields, ___s_Default_0)); }
inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 get_s_Default_0() const { return ___s_Default_0; }
inline XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycast
struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycast::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRRaycast::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRRaycast::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycast::m_Distance
float ___m_Distance_5;
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycast::m_HitTrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_HitTrackableId_6;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_Distance_5() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_Distance_5)); }
inline float get_m_Distance_5() const { return ___m_Distance_5; }
inline float* get_address_of_m_Distance_5() { return &___m_Distance_5; }
inline void set_m_Distance_5(float value)
{
___m_Distance_5 = value;
}
inline static int32_t get_offset_of_m_HitTrackableId_6() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55, ___m_HitTrackableId_6)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_HitTrackableId_6() const { return ___m_HitTrackableId_6; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_HitTrackableId_6() { return &___m_HitTrackableId_6; }
inline void set_m_HitTrackableId_6(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_HitTrackableId_6 = value;
}
};
struct XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycast UnityEngine.XR.ARSubsystems.XRRaycast::s_Default
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55_StaticFields, ___s_Default_0)); }
inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 get_s_Default_0() const { return ___s_Default_0; }
inline XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRRaycastHit
struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRRaycastHit::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// System.Single UnityEngine.XR.ARSubsystems.XRRaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.XR.ARSubsystems.TrackableType UnityEngine.XR.ARSubsystems.XRRaycastHit::m_HitType
int32_t ___m_HitType_4;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___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_HitType_4() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB, ___m_HitType_4)); }
inline int32_t get_m_HitType_4() const { return ___m_HitType_4; }
inline int32_t* get_address_of_m_HitType_4() { return &___m_HitType_4; }
inline void set_m_HitType_4(int32_t value)
{
___m_HitType_4 = value;
}
};
struct XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARSubsystems.XRRaycastHit::s_Default
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB_StaticFields, ___s_Default_0)); }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB get_s_Default_0() const { return ___s_Default_0; }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRReferencePoint
struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRReferencePoint::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_2;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRReferencePoint::m_TrackingState
int32_t ___m_TrackingState_3;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRReferencePoint::m_NativePtr
intptr_t ___m_NativePtr_4;
// System.Guid UnityEngine.XR.ARSubsystems.XRReferencePoint::m_SessionId
Guid_t ___m_SessionId_5;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_Pose_2() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_Pose_2)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_2() const { return ___m_Pose_2; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_2() { return &___m_Pose_2; }
inline void set_m_Pose_2(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_2 = value;
}
inline static int32_t get_offset_of_m_TrackingState_3() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_TrackingState_3)); }
inline int32_t get_m_TrackingState_3() const { return ___m_TrackingState_3; }
inline int32_t* get_address_of_m_TrackingState_3() { return &___m_TrackingState_3; }
inline void set_m_TrackingState_3(int32_t value)
{
___m_TrackingState_3 = value;
}
inline static int32_t get_offset_of_m_NativePtr_4() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_NativePtr_4)); }
inline intptr_t get_m_NativePtr_4() const { return ___m_NativePtr_4; }
inline intptr_t* get_address_of_m_NativePtr_4() { return &___m_NativePtr_4; }
inline void set_m_NativePtr_4(intptr_t value)
{
___m_NativePtr_4 = value;
}
inline static int32_t get_offset_of_m_SessionId_5() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634, ___m_SessionId_5)); }
inline Guid_t get_m_SessionId_5() const { return ___m_SessionId_5; }
inline Guid_t * get_address_of_m_SessionId_5() { return &___m_SessionId_5; }
inline void set_m_SessionId_5(Guid_t value)
{
___m_SessionId_5 = value;
}
};
struct XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRReferencePoint UnityEngine.XR.ARSubsystems.XRReferencePoint::s_Default
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634_StaticFields, ___s_Default_0)); }
inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 get_s_Default_0() const { return ___s_Default_0; }
inline XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor
struct XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57
{
public:
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_NativeTexture
intptr_t ___m_NativeTexture_0;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Width
int32_t ___m_Width_1;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Height
int32_t ___m_Height_2;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_MipmapCount
int32_t ___m_MipmapCount_3;
// UnityEngine.TextureFormat UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Format
int32_t ___m_Format_4;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_PropertyNameId
int32_t ___m_PropertyNameId_5;
// System.Int32 UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Depth
int32_t ___m_Depth_6;
// UnityEngine.Rendering.TextureDimension UnityEngine.XR.ARSubsystems.XRTextureDescriptor::m_Dimension
int32_t ___m_Dimension_7;
public:
inline static int32_t get_offset_of_m_NativeTexture_0() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_NativeTexture_0)); }
inline intptr_t get_m_NativeTexture_0() const { return ___m_NativeTexture_0; }
inline intptr_t* get_address_of_m_NativeTexture_0() { return &___m_NativeTexture_0; }
inline void set_m_NativeTexture_0(intptr_t value)
{
___m_NativeTexture_0 = value;
}
inline static int32_t get_offset_of_m_Width_1() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Width_1)); }
inline int32_t get_m_Width_1() const { return ___m_Width_1; }
inline int32_t* get_address_of_m_Width_1() { return &___m_Width_1; }
inline void set_m_Width_1(int32_t value)
{
___m_Width_1 = value;
}
inline static int32_t get_offset_of_m_Height_2() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Height_2)); }
inline int32_t get_m_Height_2() const { return ___m_Height_2; }
inline int32_t* get_address_of_m_Height_2() { return &___m_Height_2; }
inline void set_m_Height_2(int32_t value)
{
___m_Height_2 = value;
}
inline static int32_t get_offset_of_m_MipmapCount_3() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_MipmapCount_3)); }
inline int32_t get_m_MipmapCount_3() const { return ___m_MipmapCount_3; }
inline int32_t* get_address_of_m_MipmapCount_3() { return &___m_MipmapCount_3; }
inline void set_m_MipmapCount_3(int32_t value)
{
___m_MipmapCount_3 = value;
}
inline static int32_t get_offset_of_m_Format_4() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Format_4)); }
inline int32_t get_m_Format_4() const { return ___m_Format_4; }
inline int32_t* get_address_of_m_Format_4() { return &___m_Format_4; }
inline void set_m_Format_4(int32_t value)
{
___m_Format_4 = value;
}
inline static int32_t get_offset_of_m_PropertyNameId_5() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_PropertyNameId_5)); }
inline int32_t get_m_PropertyNameId_5() const { return ___m_PropertyNameId_5; }
inline int32_t* get_address_of_m_PropertyNameId_5() { return &___m_PropertyNameId_5; }
inline void set_m_PropertyNameId_5(int32_t value)
{
___m_PropertyNameId_5 = value;
}
inline static int32_t get_offset_of_m_Depth_6() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Depth_6)); }
inline int32_t get_m_Depth_6() const { return ___m_Depth_6; }
inline int32_t* get_address_of_m_Depth_6() { return &___m_Depth_6; }
inline void set_m_Depth_6(int32_t value)
{
___m_Depth_6 = value;
}
inline static int32_t get_offset_of_m_Dimension_7() { return static_cast<int32_t>(offsetof(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57, ___m_Dimension_7)); }
inline int32_t get_m_Dimension_7() const { return ___m_Dimension_7; }
inline int32_t* get_address_of_m_Dimension_7() { return &___m_Dimension_7; }
inline void set_m_Dimension_7(int32_t value)
{
___m_Dimension_7 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedImage
struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Id
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_Id_1;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedImage::m_SourceImageId
Guid_t ___m_SourceImageId_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3;
// UnityEngine.Vector2 UnityEngine.XR.ARSubsystems.XRTrackedImage::m_Size
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Size_4;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedImage::m_TrackingState
int32_t ___m_TrackingState_5;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedImage::m_NativePtr
intptr_t ___m_NativePtr_6;
public:
inline static int32_t get_offset_of_m_Id_1() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Id_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_Id_1() const { return ___m_Id_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_Id_1() { return &___m_Id_1; }
inline void set_m_Id_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_Id_1 = value;
}
inline static int32_t get_offset_of_m_SourceImageId_2() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_SourceImageId_2)); }
inline Guid_t get_m_SourceImageId_2() const { return ___m_SourceImageId_2; }
inline Guid_t * get_address_of_m_SourceImageId_2() { return &___m_SourceImageId_2; }
inline void set_m_SourceImageId_2(Guid_t value)
{
___m_SourceImageId_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Pose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_Size_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Size_4() const { return ___m_Size_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TrackingState_5() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_TrackingState_5)); }
inline int32_t get_m_TrackingState_5() const { return ___m_TrackingState_5; }
inline int32_t* get_address_of_m_TrackingState_5() { return &___m_TrackingState_5; }
inline void set_m_TrackingState_5(int32_t value)
{
___m_TrackingState_5 = value;
}
inline static int32_t get_offset_of_m_NativePtr_6() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F, ___m_NativePtr_6)); }
inline intptr_t get_m_NativePtr_6() const { return ___m_NativePtr_6; }
inline intptr_t* get_address_of_m_NativePtr_6() { return &___m_NativePtr_6; }
inline void set_m_NativePtr_6(intptr_t value)
{
___m_NativePtr_6 = value;
}
};
struct XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedImage UnityEngine.XR.ARSubsystems.XRTrackedImage::s_Default
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F_StaticFields, ___s_Default_0)); }
inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F get_s_Default_0() const { return ___s_Default_0; }
inline XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F value)
{
___s_Default_0 = value;
}
};
// UnityEngine.XR.ARSubsystems.XRTrackedObject
struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_0;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XRTrackedObject::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_1;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XRTrackedObject::m_TrackingState
int32_t ___m_TrackingState_2;
// System.IntPtr UnityEngine.XR.ARSubsystems.XRTrackedObject::m_NativePtr
intptr_t ___m_NativePtr_3;
// System.Guid UnityEngine.XR.ARSubsystems.XRTrackedObject::m_ReferenceObjectGuid
Guid_t ___m_ReferenceObjectGuid_4;
public:
inline static int32_t get_offset_of_m_TrackableId_0() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackableId_0)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_0() const { return ___m_TrackableId_0; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_0() { return &___m_TrackableId_0; }
inline void set_m_TrackableId_0(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_0 = value;
}
inline static int32_t get_offset_of_m_Pose_1() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_Pose_1)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_1() const { return ___m_Pose_1; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_1() { return &___m_Pose_1; }
inline void set_m_Pose_1(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_1 = value;
}
inline static int32_t get_offset_of_m_TrackingState_2() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_TrackingState_2)); }
inline int32_t get_m_TrackingState_2() const { return ___m_TrackingState_2; }
inline int32_t* get_address_of_m_TrackingState_2() { return &___m_TrackingState_2; }
inline void set_m_TrackingState_2(int32_t value)
{
___m_TrackingState_2 = value;
}
inline static int32_t get_offset_of_m_NativePtr_3() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_NativePtr_3)); }
inline intptr_t get_m_NativePtr_3() const { return ___m_NativePtr_3; }
inline intptr_t* get_address_of_m_NativePtr_3() { return &___m_NativePtr_3; }
inline void set_m_NativePtr_3(intptr_t value)
{
___m_NativePtr_3 = value;
}
inline static int32_t get_offset_of_m_ReferenceObjectGuid_4() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58, ___m_ReferenceObjectGuid_4)); }
inline Guid_t get_m_ReferenceObjectGuid_4() const { return ___m_ReferenceObjectGuid_4; }
inline Guid_t * get_address_of_m_ReferenceObjectGuid_4() { return &___m_ReferenceObjectGuid_4; }
inline void set_m_ReferenceObjectGuid_4(Guid_t value)
{
___m_ReferenceObjectGuid_4 = value;
}
};
struct XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XRTrackedObject UnityEngine.XR.ARSubsystems.XRTrackedObject::s_Default
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 ___s_Default_5;
public:
inline static int32_t get_offset_of_s_Default_5() { return static_cast<int32_t>(offsetof(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58_StaticFields, ___s_Default_5)); }
inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 get_s_Default_5() const { return ___s_Default_5; }
inline XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 * get_address_of_s_Default_5() { return &___s_Default_5; }
inline void set_s_Default_5(XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 value)
{
___s_Default_5 = value;
}
};
// UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose
struct FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F
{
public:
// UnityEngine.XR.ARCore.ARCoreFaceRegion UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose::regionType
int32_t ___regionType_0;
// UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCorePose UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose::pose
ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49 ___pose_1;
public:
inline static int32_t get_offset_of_regionType_0() { return static_cast<int32_t>(offsetof(FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F, ___regionType_0)); }
inline int32_t get_regionType_0() const { return ___regionType_0; }
inline int32_t* get_address_of_regionType_0() { return &___regionType_0; }
inline void set_regionType_0(int32_t value)
{
___regionType_0 = value;
}
inline static int32_t get_offset_of_pose_1() { return static_cast<int32_t>(offsetof(FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F, ___pose_1)); }
inline ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49 get_pose_1() const { return ___pose_1; }
inline ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49 * get_address_of_pose_1() { return &___pose_1; }
inline void set_pose_1(ARCorePose_t96813C5827C86C8B2B81929608ACD67B777FDF49 value)
{
___pose_1 = value;
}
};
// UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94
{
public:
// UnityEngine.Camera/RenderRequestMode UnityEngine.Camera/RenderRequest::m_CameraRenderMode
int32_t ___m_CameraRenderMode_0;
// UnityEngine.RenderTexture UnityEngine.Camera/RenderRequest::m_ResultRT
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
// UnityEngine.Camera/RenderRequestOutputSpace UnityEngine.Camera/RenderRequest::m_OutputSpace
int32_t ___m_OutputSpace_2;
public:
inline static int32_t get_offset_of_m_CameraRenderMode_0() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_CameraRenderMode_0)); }
inline int32_t get_m_CameraRenderMode_0() const { return ___m_CameraRenderMode_0; }
inline int32_t* get_address_of_m_CameraRenderMode_0() { return &___m_CameraRenderMode_0; }
inline void set_m_CameraRenderMode_0(int32_t value)
{
___m_CameraRenderMode_0 = value;
}
inline static int32_t get_offset_of_m_ResultRT_1() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_ResultRT_1)); }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * get_m_ResultRT_1() const { return ___m_ResultRT_1; }
inline RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 ** get_address_of_m_ResultRT_1() { return &___m_ResultRT_1; }
inline void set_m_ResultRT_1(RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * value)
{
___m_ResultRT_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ResultRT_1), (void*)value);
}
inline static int32_t get_offset_of_m_OutputSpace_2() { return static_cast<int32_t>(offsetof(RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94, ___m_OutputSpace_2)); }
inline int32_t get_m_OutputSpace_2() const { return ___m_OutputSpace_2; }
inline int32_t* get_address_of_m_OutputSpace_2() { return &___m_OutputSpace_2; }
inline void set_m_OutputSpace_2(int32_t value)
{
___m_OutputSpace_2 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_pinvoke
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// Native definition for COM marshalling of UnityEngine.Camera/RenderRequest
struct RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94_marshaled_com
{
int32_t ___m_CameraRenderMode_0;
RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___m_ResultRT_1;
int32_t ___m_OutputSpace_2;
};
// System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A
{
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_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A, ___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((void**)(&___m_name_0), (void*)value);
}
inline static int32_t get_offset_of_m_token_1() { return static_cast<int32_t>(offsetof(RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A_marshaled_pinvoke
{
char* ___m_name_0;
int32_t ___m_token_1;
};
// Native definition for COM marshalling of System.Net.CookieTokenizer/RecognizedAttribute
struct RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A_marshaled_com
{
Il2CppChar* ___m_name_0;
int32_t ___m_token_1;
};
// System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62
{
public:
// System.String System.Data.ExpressionParser/ReservedWords::_word
String_t* ____word_0;
// System.Data.Tokens System.Data.ExpressionParser/ReservedWords::_token
int32_t ____token_1;
// System.Int32 System.Data.ExpressionParser/ReservedWords::_op
int32_t ____op_2;
public:
inline static int32_t get_offset_of__word_0() { return static_cast<int32_t>(offsetof(ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62, ____word_0)); }
inline String_t* get__word_0() const { return ____word_0; }
inline String_t** get_address_of__word_0() { return &____word_0; }
inline void set__word_0(String_t* value)
{
____word_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____word_0), (void*)value);
}
inline static int32_t get_offset_of__token_1() { return static_cast<int32_t>(offsetof(ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62, ____token_1)); }
inline int32_t get__token_1() const { return ____token_1; }
inline int32_t* get_address_of__token_1() { return &____token_1; }
inline void set__token_1(int32_t value)
{
____token_1 = value;
}
inline static int32_t get_offset_of__op_2() { return static_cast<int32_t>(offsetof(ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62, ____op_2)); }
inline int32_t get__op_2() const { return ____op_2; }
inline int32_t* get_address_of__op_2() { return &____op_2; }
inline void set__op_2(int32_t value)
{
____op_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62_marshaled_pinvoke
{
char* ____word_0;
int32_t ____token_1;
int32_t ____op_2;
};
// Native definition for COM marshalling of System.Data.ExpressionParser/ReservedWords
struct ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62_marshaled_com
{
Il2CppChar* ____word_0;
int32_t ____token_1;
int32_t ____op_2;
};
// System.Globalization.TimeSpanParse/TimeSpanToken
struct TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4
{
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_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4, ___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_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4, ___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_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4, ___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_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4, ___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((void**)(&___sep_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.TimeSpanParse/TimeSpanToken
struct TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4_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_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4_marshaled_com
{
int32_t ___ttt_0;
int32_t ___num_1;
int32_t ___zeroes_2;
Il2CppChar* ___sep_3;
};
// System.Xml.XmlEventCache/XmlEvent
struct XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8
{
public:
// System.Xml.XmlEventCache/XmlEventType System.Xml.XmlEventCache/XmlEvent::eventType
int32_t ___eventType_0;
// System.String System.Xml.XmlEventCache/XmlEvent::s1
String_t* ___s1_1;
// System.String System.Xml.XmlEventCache/XmlEvent::s2
String_t* ___s2_2;
// System.String System.Xml.XmlEventCache/XmlEvent::s3
String_t* ___s3_3;
// System.Object System.Xml.XmlEventCache/XmlEvent::o
RuntimeObject * ___o_4;
public:
inline static int32_t get_offset_of_eventType_0() { return static_cast<int32_t>(offsetof(XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8, ___eventType_0)); }
inline int32_t get_eventType_0() const { return ___eventType_0; }
inline int32_t* get_address_of_eventType_0() { return &___eventType_0; }
inline void set_eventType_0(int32_t value)
{
___eventType_0 = value;
}
inline static int32_t get_offset_of_s1_1() { return static_cast<int32_t>(offsetof(XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8, ___s1_1)); }
inline String_t* get_s1_1() const { return ___s1_1; }
inline String_t** get_address_of_s1_1() { return &___s1_1; }
inline void set_s1_1(String_t* value)
{
___s1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s1_1), (void*)value);
}
inline static int32_t get_offset_of_s2_2() { return static_cast<int32_t>(offsetof(XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8, ___s2_2)); }
inline String_t* get_s2_2() const { return ___s2_2; }
inline String_t** get_address_of_s2_2() { return &___s2_2; }
inline void set_s2_2(String_t* value)
{
___s2_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s2_2), (void*)value);
}
inline static int32_t get_offset_of_s3_3() { return static_cast<int32_t>(offsetof(XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8, ___s3_3)); }
inline String_t* get_s3_3() const { return ___s3_3; }
inline String_t** get_address_of_s3_3() { return &___s3_3; }
inline void set_s3_3(String_t* value)
{
___s3_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s3_3), (void*)value);
}
inline static int32_t get_offset_of_o_4() { return static_cast<int32_t>(offsetof(XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8, ___o_4)); }
inline RuntimeObject * get_o_4() const { return ___o_4; }
inline RuntimeObject ** get_address_of_o_4() { return &___o_4; }
inline void set_o_4(RuntimeObject * value)
{
___o_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___o_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlEventCache/XmlEvent
struct XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8_marshaled_pinvoke
{
int32_t ___eventType_0;
char* ___s1_1;
char* ___s2_2;
char* ___s3_3;
Il2CppIUnknown* ___o_4;
};
// Native definition for COM marshalling of System.Xml.XmlEventCache/XmlEvent
struct XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8_marshaled_com
{
int32_t ___eventType_0;
Il2CppChar* ___s1_1;
Il2CppChar* ___s2_2;
Il2CppChar* ___s3_3;
Il2CppIUnknown* ___o_4;
};
// System.Xml.XmlSqlBinaryReader/ElemInfo
struct ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA
{
public:
// System.Xml.XmlSqlBinaryReader/QName System.Xml.XmlSqlBinaryReader/ElemInfo::name
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 ___name_0;
// System.String System.Xml.XmlSqlBinaryReader/ElemInfo::xmlLang
String_t* ___xmlLang_1;
// System.Xml.XmlSpace System.Xml.XmlSqlBinaryReader/ElemInfo::xmlSpace
int32_t ___xmlSpace_2;
// System.Boolean System.Xml.XmlSqlBinaryReader/ElemInfo::xmlspacePreserve
bool ___xmlspacePreserve_3;
// System.Xml.XmlSqlBinaryReader/NamespaceDecl System.Xml.XmlSqlBinaryReader/ElemInfo::nsdecls
NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 * ___nsdecls_4;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA, ___name_0)); }
inline QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 get_name_0() const { return ___name_0; }
inline QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 * get_address_of_name_0() { return &___name_0; }
inline void set_name_0(QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___prefix_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___localname_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___name_0))->___namespaceUri_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_xmlLang_1() { return static_cast<int32_t>(offsetof(ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA, ___xmlLang_1)); }
inline String_t* get_xmlLang_1() const { return ___xmlLang_1; }
inline String_t** get_address_of_xmlLang_1() { return &___xmlLang_1; }
inline void set_xmlLang_1(String_t* value)
{
___xmlLang_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xmlLang_1), (void*)value);
}
inline static int32_t get_offset_of_xmlSpace_2() { return static_cast<int32_t>(offsetof(ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA, ___xmlSpace_2)); }
inline int32_t get_xmlSpace_2() const { return ___xmlSpace_2; }
inline int32_t* get_address_of_xmlSpace_2() { return &___xmlSpace_2; }
inline void set_xmlSpace_2(int32_t value)
{
___xmlSpace_2 = value;
}
inline static int32_t get_offset_of_xmlspacePreserve_3() { return static_cast<int32_t>(offsetof(ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA, ___xmlspacePreserve_3)); }
inline bool get_xmlspacePreserve_3() const { return ___xmlspacePreserve_3; }
inline bool* get_address_of_xmlspacePreserve_3() { return &___xmlspacePreserve_3; }
inline void set_xmlspacePreserve_3(bool value)
{
___xmlspacePreserve_3 = value;
}
inline static int32_t get_offset_of_nsdecls_4() { return static_cast<int32_t>(offsetof(ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA, ___nsdecls_4)); }
inline NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 * get_nsdecls_4() const { return ___nsdecls_4; }
inline NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 ** get_address_of_nsdecls_4() { return &___nsdecls_4; }
inline void set_nsdecls_4(NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 * value)
{
___nsdecls_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nsdecls_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlSqlBinaryReader/ElemInfo
struct ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA_marshaled_pinvoke
{
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_pinvoke ___name_0;
char* ___xmlLang_1;
int32_t ___xmlSpace_2;
int32_t ___xmlspacePreserve_3;
NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 * ___nsdecls_4;
};
// Native definition for COM marshalling of System.Xml.XmlSqlBinaryReader/ElemInfo
struct ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA_marshaled_com
{
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08_marshaled_com ___name_0;
Il2CppChar* ___xmlLang_1;
int32_t ___xmlSpace_2;
int32_t ___xmlspacePreserve_3;
NamespaceDecl_t143547AB55422CCBF4D2672A3E7BF38128933AF7 * ___nsdecls_4;
};
// System.Xml.XmlTextWriter/TagInfo
struct TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2
{
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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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((void**)(&___name_0), (void*)value);
}
inline static int32_t get_offset_of_prefix_1() { return static_cast<int32_t>(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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((void**)(&___prefix_1), (void*)value);
}
inline static int32_t get_offset_of_defaultNs_2() { return static_cast<int32_t>(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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((void**)(&___defaultNs_2), (void*)value);
}
inline static int32_t get_offset_of_defaultNsState_3() { return static_cast<int32_t>(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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((void**)(&___xmlLang_5), (void*)value);
}
inline static int32_t get_offset_of_prevNsTop_6() { return static_cast<int32_t>(offsetof(TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlTextWriter/TagInfo
struct TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_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_tCB16E7242088C97871045AB8D1E6B0D12350D6B2_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;
};
// System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474
{
public:
// System.Int32 System.Xml.XmlWellFormedWriter/ElementScope::prevNSTop
int32_t ___prevNSTop_0;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::prefix
String_t* ___prefix_1;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::localName
String_t* ___localName_2;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::namespaceUri
String_t* ___namespaceUri_3;
// System.Xml.XmlSpace System.Xml.XmlWellFormedWriter/ElementScope::xmlSpace
int32_t ___xmlSpace_4;
// System.String System.Xml.XmlWellFormedWriter/ElementScope::xmlLang
String_t* ___xmlLang_5;
public:
inline static int32_t get_offset_of_prevNSTop_0() { return static_cast<int32_t>(offsetof(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___prevNSTop_0)); }
inline int32_t get_prevNSTop_0() const { return ___prevNSTop_0; }
inline int32_t* get_address_of_prevNSTop_0() { return &___prevNSTop_0; }
inline void set_prevNSTop_0(int32_t value)
{
___prevNSTop_0 = value;
}
inline static int32_t get_offset_of_prefix_1() { return static_cast<int32_t>(offsetof(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___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((void**)(&___prefix_1), (void*)value);
}
inline static int32_t get_offset_of_localName_2() { return static_cast<int32_t>(offsetof(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___localName_2)); }
inline String_t* get_localName_2() const { return ___localName_2; }
inline String_t** get_address_of_localName_2() { return &___localName_2; }
inline void set_localName_2(String_t* value)
{
___localName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___localName_2), (void*)value);
}
inline static int32_t get_offset_of_namespaceUri_3() { return static_cast<int32_t>(offsetof(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___namespaceUri_3)); }
inline String_t* get_namespaceUri_3() const { return ___namespaceUri_3; }
inline String_t** get_address_of_namespaceUri_3() { return &___namespaceUri_3; }
inline void set_namespaceUri_3(String_t* value)
{
___namespaceUri_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namespaceUri_3), (void*)value);
}
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___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(ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474, ___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((void**)(&___xmlLang_5), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474_marshaled_pinvoke
{
int32_t ___prevNSTop_0;
char* ___prefix_1;
char* ___localName_2;
char* ___namespaceUri_3;
int32_t ___xmlSpace_4;
char* ___xmlLang_5;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/ElementScope
struct ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474_marshaled_com
{
int32_t ___prevNSTop_0;
Il2CppChar* ___prefix_1;
Il2CppChar* ___localName_2;
Il2CppChar* ___namespaceUri_3;
int32_t ___xmlSpace_4;
Il2CppChar* ___xmlLang_5;
};
// System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00
{
public:
// System.String System.Xml.XmlWellFormedWriter/Namespace::prefix
String_t* ___prefix_0;
// System.String System.Xml.XmlWellFormedWriter/Namespace::namespaceUri
String_t* ___namespaceUri_1;
// System.Xml.XmlWellFormedWriter/NamespaceKind System.Xml.XmlWellFormedWriter/Namespace::kind
int32_t ___kind_2;
// System.Int32 System.Xml.XmlWellFormedWriter/Namespace::prevNsIndex
int32_t ___prevNsIndex_3;
public:
inline static int32_t get_offset_of_prefix_0() { return static_cast<int32_t>(offsetof(Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00, ___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((void**)(&___prefix_0), (void*)value);
}
inline static int32_t get_offset_of_namespaceUri_1() { return static_cast<int32_t>(offsetof(Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00, ___namespaceUri_1)); }
inline String_t* get_namespaceUri_1() const { return ___namespaceUri_1; }
inline String_t** get_address_of_namespaceUri_1() { return &___namespaceUri_1; }
inline void set_namespaceUri_1(String_t* value)
{
___namespaceUri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namespaceUri_1), (void*)value);
}
inline static int32_t get_offset_of_kind_2() { return static_cast<int32_t>(offsetof(Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00, ___kind_2)); }
inline int32_t get_kind_2() const { return ___kind_2; }
inline int32_t* get_address_of_kind_2() { return &___kind_2; }
inline void set_kind_2(int32_t value)
{
___kind_2 = value;
}
inline static int32_t get_offset_of_prevNsIndex_3() { return static_cast<int32_t>(offsetof(Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00, ___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;
}
};
// Native definition for P/Invoke marshalling of System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00_marshaled_pinvoke
{
char* ___prefix_0;
char* ___namespaceUri_1;
int32_t ___kind_2;
int32_t ___prevNsIndex_3;
};
// Native definition for COM marshalling of System.Xml.XmlWellFormedWriter/Namespace
struct Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00_marshaled_com
{
Il2CppChar* ___prefix_0;
Il2CppChar* ___namespaceUri_1;
int32_t ___kind_2;
int32_t ___prevNsIndex_3;
};
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>
struct Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996
{
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
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___key_2;
// TValue System.Collections.Generic.Dictionary`2/Entry::value
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996, ___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_t7D969557C8265CA53127F6E8137C22D4F23F2996, ___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_t7D969557C8265CA53127F6E8137C22D4F23F2996, ___key_2)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_key_2() const { return ___key_2; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996, ___value_3)); }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 get_value_3() const { return ___value_3; }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 value)
{
___value_3 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>
struct Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * ___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
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69, ___list_0)); }
inline List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * get_list_0() const { return ___list_0; }
inline List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69, ___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_t069CA6E9C917139EFEC98D22E51283D066A02A69, ___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_t069CA6E9C917139EFEC98D22E51283D066A02A69, ___current_3)); }
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB get_current_3() const { return ___current_3; }
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB value)
{
___current_3 = value;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>
struct Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5, ___m_Array_0)); }
inline NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>
struct Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4, ___m_Array_0)); }
inline NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>
struct Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45, ___m_Array_0)); }
inline NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>
struct Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A, ___m_Array_0)); }
inline NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>
struct Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72, ___m_Array_0)); }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<System.Byte>
struct Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847, ___m_Array_0)); }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>
struct Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64, ___m_Array_0)); }
inline NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<System.Int32>
struct Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544, ___m_Array_0)); }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544, ___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;
}
};
// System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>
struct Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * ___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
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18, ___list_0)); }
inline List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * get_list_0() const { return ___list_0; }
inline List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18, ___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_tED8C3898747C9382181EA7C908287C78DB257A18, ___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_tED8C3898747C9382181EA7C908287C78DB257A18, ___current_3)); }
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 get_current_3() const { return ___current_3; }
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___PropertyName_3), (void*)NULL);
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>
struct Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858, ___m_Array_0)); }
inline NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858, ___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;
}
};
// Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>
struct Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555
{
public:
// Unity.Collections.NativeArray`1<T> Unity.Collections.NativeArray`1/Enumerator::m_Array
NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C ___m_Array_0;
// System.Int32 Unity.Collections.NativeArray`1/Enumerator::m_Index
int32_t ___m_Index_1;
public:
inline static int32_t get_offset_of_m_Array_0() { return static_cast<int32_t>(offsetof(Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555, ___m_Array_0)); }
inline NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C get_m_Array_0() const { return ___m_Array_0; }
inline NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * get_address_of_m_Array_0() { return &___m_Array_0; }
inline void set_m_Array_0(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C value)
{
___m_Array_0 = value;
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555, ___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;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>
struct Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * ___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
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9, ___list_0)); }
inline List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * get_list_0() const { return ___list_0; }
inline List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9, ___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_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9, ___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_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9, ___current_3)); }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 get_current_3() const { return ___current_3; }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 value)
{
___current_3 = value;
}
};
// UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>
struct Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07
{
public:
// System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable> UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator::m_Enumerator
Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 ___m_Enumerator_0;
public:
inline static int32_t get_offset_of_m_Enumerator_0() { return static_cast<int32_t>(offsetof(Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07, ___m_Enumerator_0)); }
inline Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 get_m_Enumerator_0() const { return ___m_Enumerator_0; }
inline Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * get_address_of_m_Enumerator_0() { return &___m_Enumerator_0; }
inline void set_m_Enumerator_0(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 value)
{
___m_Enumerator_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_Enumerator_0))->___dictionary_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_Enumerator_0))->___current_3))->___value_1), (void*)NULL);
#endif
}
};
// System.Func`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>
struct Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.Single>
struct Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.UInt32>
struct Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>
struct Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 : public MulticastDelegate_t
{
public:
public:
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>
struct KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC, ___key_0)); }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 get_key_0() const { return ___key_0; }
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC, ___value_1)); }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 get_value_1() const { return ___value_1; }
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 value)
{
___value_1 = value;
}
};
// UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E
{
public:
// System.Single UnityEngine.XR.ARFoundation.ARRaycastHit::<distance>k__BackingField
float ___U3CdistanceU3Ek__BackingField_0;
// UnityEngine.XR.ARFoundation.ARTrackable UnityEngine.XR.ARFoundation.ARRaycastHit::<trackable>k__BackingField
ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1;
// UnityEngine.XR.ARSubsystems.XRRaycastHit UnityEngine.XR.ARFoundation.ARRaycastHit::m_Hit
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2;
// UnityEngine.Transform UnityEngine.XR.ARFoundation.ARRaycastHit::m_Transform
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3;
public:
inline static int32_t get_offset_of_U3CdistanceU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___U3CdistanceU3Ek__BackingField_0)); }
inline float get_U3CdistanceU3Ek__BackingField_0() const { return ___U3CdistanceU3Ek__BackingField_0; }
inline float* get_address_of_U3CdistanceU3Ek__BackingField_0() { return &___U3CdistanceU3Ek__BackingField_0; }
inline void set_U3CdistanceU3Ek__BackingField_0(float value)
{
___U3CdistanceU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CtrackableU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___U3CtrackableU3Ek__BackingField_1)); }
inline ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * get_U3CtrackableU3Ek__BackingField_1() const { return ___U3CtrackableU3Ek__BackingField_1; }
inline ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 ** get_address_of_U3CtrackableU3Ek__BackingField_1() { return &___U3CtrackableU3Ek__BackingField_1; }
inline void set_U3CtrackableU3Ek__BackingField_1(ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * value)
{
___U3CtrackableU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackableU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_m_Hit_2() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___m_Hit_2)); }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB get_m_Hit_2() const { return ___m_Hit_2; }
inline XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB * get_address_of_m_Hit_2() { return &___m_Hit_2; }
inline void set_m_Hit_2(XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB value)
{
___m_Hit_2 = value;
}
inline static int32_t get_offset_of_m_Transform_3() { return static_cast<int32_t>(offsetof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E, ___m_Transform_3)); }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_m_Transform_3() const { return ___m_Transform_3; }
inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_m_Transform_3() { return &___m_Transform_3; }
inline void set_m_Transform_3(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value)
{
___m_Transform_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Transform_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_marshaled_pinvoke
{
float ___U3CdistanceU3Ek__BackingField_0;
ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1;
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2;
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARRaycastHit
struct ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E_marshaled_com
{
float ___U3CdistanceU3Ek__BackingField_0;
ARTrackable_tE630E6237048700E730F3E3C2799F6CA07029DB3 * ___U3CtrackableU3Ek__BackingField_1;
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB ___m_Hit_2;
Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_Transform_3;
};
// UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355
{
public:
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARFoundation.ARTextureInfo::m_Descriptor
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1;
// UnityEngine.Texture UnityEngine.XR.ARFoundation.ARTextureInfo::m_Texture
Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2;
public:
inline static int32_t get_offset_of_m_Descriptor_1() { return static_cast<int32_t>(offsetof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355, ___m_Descriptor_1)); }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_Descriptor_1() const { return ___m_Descriptor_1; }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_Descriptor_1() { return &___m_Descriptor_1; }
inline void set_m_Descriptor_1(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value)
{
___m_Descriptor_1 = value;
}
inline static int32_t get_offset_of_m_Texture_2() { return static_cast<int32_t>(offsetof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355, ___m_Texture_2)); }
inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * get_m_Texture_2() const { return ___m_Texture_2; }
inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** get_address_of_m_Texture_2() { return &___m_Texture_2; }
inline void set_m_Texture_2(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value)
{
___m_Texture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Texture_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_marshaled_pinvoke
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1;
Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2;
};
// Native definition for COM marshalling of UnityEngine.XR.ARFoundation.ARTextureInfo
struct ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355_marshaled_com
{
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_Descriptor_1;
Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___m_Texture_2;
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___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((void**)(&___m_paramName_17), (void*)value);
}
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// TMPro.WordWrapState
struct WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99
{
public:
// System.Int32 TMPro.WordWrapState::previous_WordBreak
int32_t ___previous_WordBreak_0;
// System.Int32 TMPro.WordWrapState::total_CharacterCount
int32_t ___total_CharacterCount_1;
// System.Int32 TMPro.WordWrapState::visible_CharacterCount
int32_t ___visible_CharacterCount_2;
// System.Int32 TMPro.WordWrapState::visible_SpriteCount
int32_t ___visible_SpriteCount_3;
// System.Int32 TMPro.WordWrapState::visible_LinkCount
int32_t ___visible_LinkCount_4;
// System.Int32 TMPro.WordWrapState::firstCharacterIndex
int32_t ___firstCharacterIndex_5;
// System.Int32 TMPro.WordWrapState::firstVisibleCharacterIndex
int32_t ___firstVisibleCharacterIndex_6;
// System.Int32 TMPro.WordWrapState::lastCharacterIndex
int32_t ___lastCharacterIndex_7;
// System.Int32 TMPro.WordWrapState::lastVisibleCharIndex
int32_t ___lastVisibleCharIndex_8;
// System.Int32 TMPro.WordWrapState::lineNumber
int32_t ___lineNumber_9;
// System.Single TMPro.WordWrapState::maxCapHeight
float ___maxCapHeight_10;
// System.Single TMPro.WordWrapState::maxAscender
float ___maxAscender_11;
// System.Single TMPro.WordWrapState::maxDescender
float ___maxDescender_12;
// System.Single TMPro.WordWrapState::startOfLineAscender
float ___startOfLineAscender_13;
// System.Single TMPro.WordWrapState::maxLineAscender
float ___maxLineAscender_14;
// System.Single TMPro.WordWrapState::maxLineDescender
float ___maxLineDescender_15;
// System.Single TMPro.WordWrapState::pageAscender
float ___pageAscender_16;
// TMPro.HorizontalAlignmentOptions TMPro.WordWrapState::horizontalAlignment
int32_t ___horizontalAlignment_17;
// System.Single TMPro.WordWrapState::marginLeft
float ___marginLeft_18;
// System.Single TMPro.WordWrapState::marginRight
float ___marginRight_19;
// System.Single TMPro.WordWrapState::xAdvance
float ___xAdvance_20;
// System.Single TMPro.WordWrapState::preferredWidth
float ___preferredWidth_21;
// System.Single TMPro.WordWrapState::preferredHeight
float ___preferredHeight_22;
// System.Single TMPro.WordWrapState::previousLineScale
float ___previousLineScale_23;
// System.Int32 TMPro.WordWrapState::wordCount
int32_t ___wordCount_24;
// TMPro.FontStyles TMPro.WordWrapState::fontStyle
int32_t ___fontStyle_25;
// System.Int32 TMPro.WordWrapState::italicAngle
int32_t ___italicAngle_26;
// System.Single TMPro.WordWrapState::fontScaleMultiplier
float ___fontScaleMultiplier_27;
// System.Single TMPro.WordWrapState::currentFontSize
float ___currentFontSize_28;
// System.Single TMPro.WordWrapState::baselineOffset
float ___baselineOffset_29;
// System.Single TMPro.WordWrapState::lineOffset
float ___lineOffset_30;
// System.Boolean TMPro.WordWrapState::isDrivenLineSpacing
bool ___isDrivenLineSpacing_31;
// System.Single TMPro.WordWrapState::glyphHorizontalAdvanceAdjustment
float ___glyphHorizontalAdvanceAdjustment_32;
// System.Single TMPro.WordWrapState::cSpace
float ___cSpace_33;
// System.Single TMPro.WordWrapState::mSpace
float ___mSpace_34;
// TMPro.TMP_TextInfo TMPro.WordWrapState::textInfo
TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 * ___textInfo_35;
// TMPro.TMP_LineInfo TMPro.WordWrapState::lineInfo
TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 ___lineInfo_36;
// UnityEngine.Color32 TMPro.WordWrapState::vertexColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___vertexColor_37;
// UnityEngine.Color32 TMPro.WordWrapState::underlineColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_38;
// UnityEngine.Color32 TMPro.WordWrapState::strikethroughColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_39;
// UnityEngine.Color32 TMPro.WordWrapState::highlightColor
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_40;
// TMPro.TMP_FontStyleStack TMPro.WordWrapState::basicStyleStack
TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 ___basicStyleStack_41;
// TMPro.TMP_TextProcessingStack`1<System.Int32> TMPro.WordWrapState::italicAngleStack
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___italicAngleStack_42;
// TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32> TMPro.WordWrapState::colorStack
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___colorStack_43;
// TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32> TMPro.WordWrapState::underlineColorStack
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___underlineColorStack_44;
// TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32> TMPro.WordWrapState::strikethroughColorStack
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___strikethroughColorStack_45;
// TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32> TMPro.WordWrapState::highlightColorStack
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___highlightColorStack_46;
// TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState> TMPro.WordWrapState::highlightStateStack
TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E ___highlightStateStack_47;
// TMPro.TMP_TextProcessingStack`1<TMPro.TMP_ColorGradient> TMPro.WordWrapState::colorGradientStack
TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 ___colorGradientStack_48;
// TMPro.TMP_TextProcessingStack`1<System.Single> TMPro.WordWrapState::sizeStack
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___sizeStack_49;
// TMPro.TMP_TextProcessingStack`1<System.Single> TMPro.WordWrapState::indentStack
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___indentStack_50;
// TMPro.TMP_TextProcessingStack`1<TMPro.FontWeight> TMPro.WordWrapState::fontWeightStack
TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 ___fontWeightStack_51;
// TMPro.TMP_TextProcessingStack`1<System.Int32> TMPro.WordWrapState::styleStack
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___styleStack_52;
// TMPro.TMP_TextProcessingStack`1<System.Single> TMPro.WordWrapState::baselineStack
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___baselineStack_53;
// TMPro.TMP_TextProcessingStack`1<System.Int32> TMPro.WordWrapState::actionStack
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___actionStack_54;
// TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference> TMPro.WordWrapState::materialReferenceStack
TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 ___materialReferenceStack_55;
// TMPro.TMP_TextProcessingStack`1<TMPro.HorizontalAlignmentOptions> TMPro.WordWrapState::lineJustificationStack
TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B ___lineJustificationStack_56;
// System.Int32 TMPro.WordWrapState::spriteAnimationID
int32_t ___spriteAnimationID_57;
// TMPro.TMP_FontAsset TMPro.WordWrapState::currentFontAsset
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___currentFontAsset_58;
// TMPro.TMP_SpriteAsset TMPro.WordWrapState::currentSpriteAsset
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___currentSpriteAsset_59;
// UnityEngine.Material TMPro.WordWrapState::currentMaterial
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___currentMaterial_60;
// System.Int32 TMPro.WordWrapState::currentMaterialIndex
int32_t ___currentMaterialIndex_61;
// TMPro.Extents TMPro.WordWrapState::meshExtents
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___meshExtents_62;
// System.Boolean TMPro.WordWrapState::tagNoParsing
bool ___tagNoParsing_63;
// System.Boolean TMPro.WordWrapState::isNonBreakingSpace
bool ___isNonBreakingSpace_64;
public:
inline static int32_t get_offset_of_previous_WordBreak_0() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___previous_WordBreak_0)); }
inline int32_t get_previous_WordBreak_0() const { return ___previous_WordBreak_0; }
inline int32_t* get_address_of_previous_WordBreak_0() { return &___previous_WordBreak_0; }
inline void set_previous_WordBreak_0(int32_t value)
{
___previous_WordBreak_0 = value;
}
inline static int32_t get_offset_of_total_CharacterCount_1() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___total_CharacterCount_1)); }
inline int32_t get_total_CharacterCount_1() const { return ___total_CharacterCount_1; }
inline int32_t* get_address_of_total_CharacterCount_1() { return &___total_CharacterCount_1; }
inline void set_total_CharacterCount_1(int32_t value)
{
___total_CharacterCount_1 = value;
}
inline static int32_t get_offset_of_visible_CharacterCount_2() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___visible_CharacterCount_2)); }
inline int32_t get_visible_CharacterCount_2() const { return ___visible_CharacterCount_2; }
inline int32_t* get_address_of_visible_CharacterCount_2() { return &___visible_CharacterCount_2; }
inline void set_visible_CharacterCount_2(int32_t value)
{
___visible_CharacterCount_2 = value;
}
inline static int32_t get_offset_of_visible_SpriteCount_3() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___visible_SpriteCount_3)); }
inline int32_t get_visible_SpriteCount_3() const { return ___visible_SpriteCount_3; }
inline int32_t* get_address_of_visible_SpriteCount_3() { return &___visible_SpriteCount_3; }
inline void set_visible_SpriteCount_3(int32_t value)
{
___visible_SpriteCount_3 = value;
}
inline static int32_t get_offset_of_visible_LinkCount_4() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___visible_LinkCount_4)); }
inline int32_t get_visible_LinkCount_4() const { return ___visible_LinkCount_4; }
inline int32_t* get_address_of_visible_LinkCount_4() { return &___visible_LinkCount_4; }
inline void set_visible_LinkCount_4(int32_t value)
{
___visible_LinkCount_4 = value;
}
inline static int32_t get_offset_of_firstCharacterIndex_5() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___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(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___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(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___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_lastVisibleCharIndex_8() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___lastVisibleCharIndex_8)); }
inline int32_t get_lastVisibleCharIndex_8() const { return ___lastVisibleCharIndex_8; }
inline int32_t* get_address_of_lastVisibleCharIndex_8() { return &___lastVisibleCharIndex_8; }
inline void set_lastVisibleCharIndex_8(int32_t value)
{
___lastVisibleCharIndex_8 = value;
}
inline static int32_t get_offset_of_lineNumber_9() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___lineNumber_9)); }
inline int32_t get_lineNumber_9() const { return ___lineNumber_9; }
inline int32_t* get_address_of_lineNumber_9() { return &___lineNumber_9; }
inline void set_lineNumber_9(int32_t value)
{
___lineNumber_9 = value;
}
inline static int32_t get_offset_of_maxCapHeight_10() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___maxCapHeight_10)); }
inline float get_maxCapHeight_10() const { return ___maxCapHeight_10; }
inline float* get_address_of_maxCapHeight_10() { return &___maxCapHeight_10; }
inline void set_maxCapHeight_10(float value)
{
___maxCapHeight_10 = value;
}
inline static int32_t get_offset_of_maxAscender_11() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___maxAscender_11)); }
inline float get_maxAscender_11() const { return ___maxAscender_11; }
inline float* get_address_of_maxAscender_11() { return &___maxAscender_11; }
inline void set_maxAscender_11(float value)
{
___maxAscender_11 = value;
}
inline static int32_t get_offset_of_maxDescender_12() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___maxDescender_12)); }
inline float get_maxDescender_12() const { return ___maxDescender_12; }
inline float* get_address_of_maxDescender_12() { return &___maxDescender_12; }
inline void set_maxDescender_12(float value)
{
___maxDescender_12 = value;
}
inline static int32_t get_offset_of_startOfLineAscender_13() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___startOfLineAscender_13)); }
inline float get_startOfLineAscender_13() const { return ___startOfLineAscender_13; }
inline float* get_address_of_startOfLineAscender_13() { return &___startOfLineAscender_13; }
inline void set_startOfLineAscender_13(float value)
{
___startOfLineAscender_13 = value;
}
inline static int32_t get_offset_of_maxLineAscender_14() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___maxLineAscender_14)); }
inline float get_maxLineAscender_14() const { return ___maxLineAscender_14; }
inline float* get_address_of_maxLineAscender_14() { return &___maxLineAscender_14; }
inline void set_maxLineAscender_14(float value)
{
___maxLineAscender_14 = value;
}
inline static int32_t get_offset_of_maxLineDescender_15() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___maxLineDescender_15)); }
inline float get_maxLineDescender_15() const { return ___maxLineDescender_15; }
inline float* get_address_of_maxLineDescender_15() { return &___maxLineDescender_15; }
inline void set_maxLineDescender_15(float value)
{
___maxLineDescender_15 = value;
}
inline static int32_t get_offset_of_pageAscender_16() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___pageAscender_16)); }
inline float get_pageAscender_16() const { return ___pageAscender_16; }
inline float* get_address_of_pageAscender_16() { return &___pageAscender_16; }
inline void set_pageAscender_16(float value)
{
___pageAscender_16 = value;
}
inline static int32_t get_offset_of_horizontalAlignment_17() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___horizontalAlignment_17)); }
inline int32_t get_horizontalAlignment_17() const { return ___horizontalAlignment_17; }
inline int32_t* get_address_of_horizontalAlignment_17() { return &___horizontalAlignment_17; }
inline void set_horizontalAlignment_17(int32_t value)
{
___horizontalAlignment_17 = value;
}
inline static int32_t get_offset_of_marginLeft_18() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___marginLeft_18)); }
inline float get_marginLeft_18() const { return ___marginLeft_18; }
inline float* get_address_of_marginLeft_18() { return &___marginLeft_18; }
inline void set_marginLeft_18(float value)
{
___marginLeft_18 = value;
}
inline static int32_t get_offset_of_marginRight_19() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___marginRight_19)); }
inline float get_marginRight_19() const { return ___marginRight_19; }
inline float* get_address_of_marginRight_19() { return &___marginRight_19; }
inline void set_marginRight_19(float value)
{
___marginRight_19 = value;
}
inline static int32_t get_offset_of_xAdvance_20() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___xAdvance_20)); }
inline float get_xAdvance_20() const { return ___xAdvance_20; }
inline float* get_address_of_xAdvance_20() { return &___xAdvance_20; }
inline void set_xAdvance_20(float value)
{
___xAdvance_20 = value;
}
inline static int32_t get_offset_of_preferredWidth_21() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___preferredWidth_21)); }
inline float get_preferredWidth_21() const { return ___preferredWidth_21; }
inline float* get_address_of_preferredWidth_21() { return &___preferredWidth_21; }
inline void set_preferredWidth_21(float value)
{
___preferredWidth_21 = value;
}
inline static int32_t get_offset_of_preferredHeight_22() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___preferredHeight_22)); }
inline float get_preferredHeight_22() const { return ___preferredHeight_22; }
inline float* get_address_of_preferredHeight_22() { return &___preferredHeight_22; }
inline void set_preferredHeight_22(float value)
{
___preferredHeight_22 = value;
}
inline static int32_t get_offset_of_previousLineScale_23() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___previousLineScale_23)); }
inline float get_previousLineScale_23() const { return ___previousLineScale_23; }
inline float* get_address_of_previousLineScale_23() { return &___previousLineScale_23; }
inline void set_previousLineScale_23(float value)
{
___previousLineScale_23 = value;
}
inline static int32_t get_offset_of_wordCount_24() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___wordCount_24)); }
inline int32_t get_wordCount_24() const { return ___wordCount_24; }
inline int32_t* get_address_of_wordCount_24() { return &___wordCount_24; }
inline void set_wordCount_24(int32_t value)
{
___wordCount_24 = value;
}
inline static int32_t get_offset_of_fontStyle_25() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___fontStyle_25)); }
inline int32_t get_fontStyle_25() const { return ___fontStyle_25; }
inline int32_t* get_address_of_fontStyle_25() { return &___fontStyle_25; }
inline void set_fontStyle_25(int32_t value)
{
___fontStyle_25 = value;
}
inline static int32_t get_offset_of_italicAngle_26() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___italicAngle_26)); }
inline int32_t get_italicAngle_26() const { return ___italicAngle_26; }
inline int32_t* get_address_of_italicAngle_26() { return &___italicAngle_26; }
inline void set_italicAngle_26(int32_t value)
{
___italicAngle_26 = value;
}
inline static int32_t get_offset_of_fontScaleMultiplier_27() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___fontScaleMultiplier_27)); }
inline float get_fontScaleMultiplier_27() const { return ___fontScaleMultiplier_27; }
inline float* get_address_of_fontScaleMultiplier_27() { return &___fontScaleMultiplier_27; }
inline void set_fontScaleMultiplier_27(float value)
{
___fontScaleMultiplier_27 = value;
}
inline static int32_t get_offset_of_currentFontSize_28() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___currentFontSize_28)); }
inline float get_currentFontSize_28() const { return ___currentFontSize_28; }
inline float* get_address_of_currentFontSize_28() { return &___currentFontSize_28; }
inline void set_currentFontSize_28(float value)
{
___currentFontSize_28 = value;
}
inline static int32_t get_offset_of_baselineOffset_29() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___baselineOffset_29)); }
inline float get_baselineOffset_29() const { return ___baselineOffset_29; }
inline float* get_address_of_baselineOffset_29() { return &___baselineOffset_29; }
inline void set_baselineOffset_29(float value)
{
___baselineOffset_29 = value;
}
inline static int32_t get_offset_of_lineOffset_30() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___lineOffset_30)); }
inline float get_lineOffset_30() const { return ___lineOffset_30; }
inline float* get_address_of_lineOffset_30() { return &___lineOffset_30; }
inline void set_lineOffset_30(float value)
{
___lineOffset_30 = value;
}
inline static int32_t get_offset_of_isDrivenLineSpacing_31() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___isDrivenLineSpacing_31)); }
inline bool get_isDrivenLineSpacing_31() const { return ___isDrivenLineSpacing_31; }
inline bool* get_address_of_isDrivenLineSpacing_31() { return &___isDrivenLineSpacing_31; }
inline void set_isDrivenLineSpacing_31(bool value)
{
___isDrivenLineSpacing_31 = value;
}
inline static int32_t get_offset_of_glyphHorizontalAdvanceAdjustment_32() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___glyphHorizontalAdvanceAdjustment_32)); }
inline float get_glyphHorizontalAdvanceAdjustment_32() const { return ___glyphHorizontalAdvanceAdjustment_32; }
inline float* get_address_of_glyphHorizontalAdvanceAdjustment_32() { return &___glyphHorizontalAdvanceAdjustment_32; }
inline void set_glyphHorizontalAdvanceAdjustment_32(float value)
{
___glyphHorizontalAdvanceAdjustment_32 = value;
}
inline static int32_t get_offset_of_cSpace_33() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___cSpace_33)); }
inline float get_cSpace_33() const { return ___cSpace_33; }
inline float* get_address_of_cSpace_33() { return &___cSpace_33; }
inline void set_cSpace_33(float value)
{
___cSpace_33 = value;
}
inline static int32_t get_offset_of_mSpace_34() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___mSpace_34)); }
inline float get_mSpace_34() const { return ___mSpace_34; }
inline float* get_address_of_mSpace_34() { return &___mSpace_34; }
inline void set_mSpace_34(float value)
{
___mSpace_34 = value;
}
inline static int32_t get_offset_of_textInfo_35() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___textInfo_35)); }
inline TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 * get_textInfo_35() const { return ___textInfo_35; }
inline TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 ** get_address_of_textInfo_35() { return &___textInfo_35; }
inline void set_textInfo_35(TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 * value)
{
___textInfo_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_35), (void*)value);
}
inline static int32_t get_offset_of_lineInfo_36() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___lineInfo_36)); }
inline TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 get_lineInfo_36() const { return ___lineInfo_36; }
inline TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 * get_address_of_lineInfo_36() { return &___lineInfo_36; }
inline void set_lineInfo_36(TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 value)
{
___lineInfo_36 = value;
}
inline static int32_t get_offset_of_vertexColor_37() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___vertexColor_37)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_vertexColor_37() const { return ___vertexColor_37; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_vertexColor_37() { return &___vertexColor_37; }
inline void set_vertexColor_37(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___vertexColor_37 = value;
}
inline static int32_t get_offset_of_underlineColor_38() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___underlineColor_38)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_underlineColor_38() const { return ___underlineColor_38; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_underlineColor_38() { return &___underlineColor_38; }
inline void set_underlineColor_38(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___underlineColor_38 = value;
}
inline static int32_t get_offset_of_strikethroughColor_39() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___strikethroughColor_39)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_strikethroughColor_39() const { return ___strikethroughColor_39; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_strikethroughColor_39() { return &___strikethroughColor_39; }
inline void set_strikethroughColor_39(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___strikethroughColor_39 = value;
}
inline static int32_t get_offset_of_highlightColor_40() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___highlightColor_40)); }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D get_highlightColor_40() const { return ___highlightColor_40; }
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * get_address_of_highlightColor_40() { return &___highlightColor_40; }
inline void set_highlightColor_40(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
___highlightColor_40 = value;
}
inline static int32_t get_offset_of_basicStyleStack_41() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___basicStyleStack_41)); }
inline TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 get_basicStyleStack_41() const { return ___basicStyleStack_41; }
inline TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 * get_address_of_basicStyleStack_41() { return &___basicStyleStack_41; }
inline void set_basicStyleStack_41(TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 value)
{
___basicStyleStack_41 = value;
}
inline static int32_t get_offset_of_italicAngleStack_42() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___italicAngleStack_42)); }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA get_italicAngleStack_42() const { return ___italicAngleStack_42; }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA * get_address_of_italicAngleStack_42() { return &___italicAngleStack_42; }
inline void set_italicAngleStack_42(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA value)
{
___italicAngleStack_42 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___italicAngleStack_42))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_colorStack_43() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___colorStack_43)); }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D get_colorStack_43() const { return ___colorStack_43; }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D * get_address_of_colorStack_43() { return &___colorStack_43; }
inline void set_colorStack_43(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D value)
{
___colorStack_43 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___colorStack_43))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_underlineColorStack_44() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___underlineColorStack_44)); }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D get_underlineColorStack_44() const { return ___underlineColorStack_44; }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D * get_address_of_underlineColorStack_44() { return &___underlineColorStack_44; }
inline void set_underlineColorStack_44(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D value)
{
___underlineColorStack_44 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___underlineColorStack_44))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_strikethroughColorStack_45() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___strikethroughColorStack_45)); }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D get_strikethroughColorStack_45() const { return ___strikethroughColorStack_45; }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D * get_address_of_strikethroughColorStack_45() { return &___strikethroughColorStack_45; }
inline void set_strikethroughColorStack_45(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D value)
{
___strikethroughColorStack_45 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___strikethroughColorStack_45))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_highlightColorStack_46() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___highlightColorStack_46)); }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D get_highlightColorStack_46() const { return ___highlightColorStack_46; }
inline TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D * get_address_of_highlightColorStack_46() { return &___highlightColorStack_46; }
inline void set_highlightColorStack_46(TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D value)
{
___highlightColorStack_46 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___highlightColorStack_46))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_highlightStateStack_47() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___highlightStateStack_47)); }
inline TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E get_highlightStateStack_47() const { return ___highlightStateStack_47; }
inline TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E * get_address_of_highlightStateStack_47() { return &___highlightStateStack_47; }
inline void set_highlightStateStack_47(TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E value)
{
___highlightStateStack_47 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___highlightStateStack_47))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_colorGradientStack_48() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___colorGradientStack_48)); }
inline TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 get_colorGradientStack_48() const { return ___colorGradientStack_48; }
inline TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 * get_address_of_colorGradientStack_48() { return &___colorGradientStack_48; }
inline void set_colorGradientStack_48(TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 value)
{
___colorGradientStack_48 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___colorGradientStack_48))->___itemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___colorGradientStack_48))->___m_DefaultItem_2), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_sizeStack_49() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___sizeStack_49)); }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 get_sizeStack_49() const { return ___sizeStack_49; }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 * get_address_of_sizeStack_49() { return &___sizeStack_49; }
inline void set_sizeStack_49(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 value)
{
___sizeStack_49 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___sizeStack_49))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_indentStack_50() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___indentStack_50)); }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 get_indentStack_50() const { return ___indentStack_50; }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 * get_address_of_indentStack_50() { return &___indentStack_50; }
inline void set_indentStack_50(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 value)
{
___indentStack_50 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___indentStack_50))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_fontWeightStack_51() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___fontWeightStack_51)); }
inline TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 get_fontWeightStack_51() const { return ___fontWeightStack_51; }
inline TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 * get_address_of_fontWeightStack_51() { return &___fontWeightStack_51; }
inline void set_fontWeightStack_51(TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 value)
{
___fontWeightStack_51 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___fontWeightStack_51))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_styleStack_52() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___styleStack_52)); }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA get_styleStack_52() const { return ___styleStack_52; }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA * get_address_of_styleStack_52() { return &___styleStack_52; }
inline void set_styleStack_52(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA value)
{
___styleStack_52 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___styleStack_52))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_baselineStack_53() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___baselineStack_53)); }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 get_baselineStack_53() const { return ___baselineStack_53; }
inline TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 * get_address_of_baselineStack_53() { return &___baselineStack_53; }
inline void set_baselineStack_53(TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 value)
{
___baselineStack_53 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baselineStack_53))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_actionStack_54() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___actionStack_54)); }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA get_actionStack_54() const { return ___actionStack_54; }
inline TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA * get_address_of_actionStack_54() { return &___actionStack_54; }
inline void set_actionStack_54(TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA value)
{
___actionStack_54 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___actionStack_54))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_materialReferenceStack_55() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___materialReferenceStack_55)); }
inline TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 get_materialReferenceStack_55() const { return ___materialReferenceStack_55; }
inline TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 * get_address_of_materialReferenceStack_55() { return &___materialReferenceStack_55; }
inline void set_materialReferenceStack_55(TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 value)
{
___materialReferenceStack_55 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___materialReferenceStack_55))->___itemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_55))->___m_DefaultItem_2))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_55))->___m_DefaultItem_2))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_55))->___m_DefaultItem_2))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_55))->___m_DefaultItem_2))->___fallbackMaterial_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_lineJustificationStack_56() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___lineJustificationStack_56)); }
inline TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B get_lineJustificationStack_56() const { return ___lineJustificationStack_56; }
inline TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B * get_address_of_lineJustificationStack_56() { return &___lineJustificationStack_56; }
inline void set_lineJustificationStack_56(TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B value)
{
___lineJustificationStack_56 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___lineJustificationStack_56))->___itemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_spriteAnimationID_57() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___spriteAnimationID_57)); }
inline int32_t get_spriteAnimationID_57() const { return ___spriteAnimationID_57; }
inline int32_t* get_address_of_spriteAnimationID_57() { return &___spriteAnimationID_57; }
inline void set_spriteAnimationID_57(int32_t value)
{
___spriteAnimationID_57 = value;
}
inline static int32_t get_offset_of_currentFontAsset_58() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___currentFontAsset_58)); }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * get_currentFontAsset_58() const { return ___currentFontAsset_58; }
inline TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 ** get_address_of_currentFontAsset_58() { return &___currentFontAsset_58; }
inline void set_currentFontAsset_58(TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * value)
{
___currentFontAsset_58 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentFontAsset_58), (void*)value);
}
inline static int32_t get_offset_of_currentSpriteAsset_59() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___currentSpriteAsset_59)); }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * get_currentSpriteAsset_59() const { return ___currentSpriteAsset_59; }
inline TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 ** get_address_of_currentSpriteAsset_59() { return &___currentSpriteAsset_59; }
inline void set_currentSpriteAsset_59(TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * value)
{
___currentSpriteAsset_59 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentSpriteAsset_59), (void*)value);
}
inline static int32_t get_offset_of_currentMaterial_60() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___currentMaterial_60)); }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_currentMaterial_60() const { return ___currentMaterial_60; }
inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_currentMaterial_60() { return &___currentMaterial_60; }
inline void set_currentMaterial_60(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value)
{
___currentMaterial_60 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentMaterial_60), (void*)value);
}
inline static int32_t get_offset_of_currentMaterialIndex_61() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___currentMaterialIndex_61)); }
inline int32_t get_currentMaterialIndex_61() const { return ___currentMaterialIndex_61; }
inline int32_t* get_address_of_currentMaterialIndex_61() { return &___currentMaterialIndex_61; }
inline void set_currentMaterialIndex_61(int32_t value)
{
___currentMaterialIndex_61 = value;
}
inline static int32_t get_offset_of_meshExtents_62() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___meshExtents_62)); }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA get_meshExtents_62() const { return ___meshExtents_62; }
inline Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA * get_address_of_meshExtents_62() { return &___meshExtents_62; }
inline void set_meshExtents_62(Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA value)
{
___meshExtents_62 = value;
}
inline static int32_t get_offset_of_tagNoParsing_63() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___tagNoParsing_63)); }
inline bool get_tagNoParsing_63() const { return ___tagNoParsing_63; }
inline bool* get_address_of_tagNoParsing_63() { return &___tagNoParsing_63; }
inline void set_tagNoParsing_63(bool value)
{
___tagNoParsing_63 = value;
}
inline static int32_t get_offset_of_isNonBreakingSpace_64() { return static_cast<int32_t>(offsetof(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99, ___isNonBreakingSpace_64)); }
inline bool get_isNonBreakingSpace_64() const { return ___isNonBreakingSpace_64; }
inline bool* get_address_of_isNonBreakingSpace_64() { return &___isNonBreakingSpace_64; }
inline void set_isNonBreakingSpace_64(bool value)
{
___isNonBreakingSpace_64 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.WordWrapState
struct WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99_marshaled_pinvoke
{
int32_t ___previous_WordBreak_0;
int32_t ___total_CharacterCount_1;
int32_t ___visible_CharacterCount_2;
int32_t ___visible_SpriteCount_3;
int32_t ___visible_LinkCount_4;
int32_t ___firstCharacterIndex_5;
int32_t ___firstVisibleCharacterIndex_6;
int32_t ___lastCharacterIndex_7;
int32_t ___lastVisibleCharIndex_8;
int32_t ___lineNumber_9;
float ___maxCapHeight_10;
float ___maxAscender_11;
float ___maxDescender_12;
float ___startOfLineAscender_13;
float ___maxLineAscender_14;
float ___maxLineDescender_15;
float ___pageAscender_16;
int32_t ___horizontalAlignment_17;
float ___marginLeft_18;
float ___marginRight_19;
float ___xAdvance_20;
float ___preferredWidth_21;
float ___preferredHeight_22;
float ___previousLineScale_23;
int32_t ___wordCount_24;
int32_t ___fontStyle_25;
int32_t ___italicAngle_26;
float ___fontScaleMultiplier_27;
float ___currentFontSize_28;
float ___baselineOffset_29;
float ___lineOffset_30;
int32_t ___isDrivenLineSpacing_31;
float ___glyphHorizontalAdvanceAdjustment_32;
float ___cSpace_33;
float ___mSpace_34;
TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 * ___textInfo_35;
TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 ___lineInfo_36;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___vertexColor_37;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_38;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_39;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_40;
TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 ___basicStyleStack_41;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___italicAngleStack_42;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___colorStack_43;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___underlineColorStack_44;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___strikethroughColorStack_45;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___highlightColorStack_46;
TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E ___highlightStateStack_47;
TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 ___colorGradientStack_48;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___sizeStack_49;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___indentStack_50;
TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 ___fontWeightStack_51;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___styleStack_52;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___baselineStack_53;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___actionStack_54;
TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 ___materialReferenceStack_55;
TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B ___lineJustificationStack_56;
int32_t ___spriteAnimationID_57;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___currentFontAsset_58;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___currentSpriteAsset_59;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___currentMaterial_60;
int32_t ___currentMaterialIndex_61;
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___meshExtents_62;
int32_t ___tagNoParsing_63;
int32_t ___isNonBreakingSpace_64;
};
// Native definition for COM marshalling of TMPro.WordWrapState
struct WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99_marshaled_com
{
int32_t ___previous_WordBreak_0;
int32_t ___total_CharacterCount_1;
int32_t ___visible_CharacterCount_2;
int32_t ___visible_SpriteCount_3;
int32_t ___visible_LinkCount_4;
int32_t ___firstCharacterIndex_5;
int32_t ___firstVisibleCharacterIndex_6;
int32_t ___lastCharacterIndex_7;
int32_t ___lastVisibleCharIndex_8;
int32_t ___lineNumber_9;
float ___maxCapHeight_10;
float ___maxAscender_11;
float ___maxDescender_12;
float ___startOfLineAscender_13;
float ___maxLineAscender_14;
float ___maxLineDescender_15;
float ___pageAscender_16;
int32_t ___horizontalAlignment_17;
float ___marginLeft_18;
float ___marginRight_19;
float ___xAdvance_20;
float ___preferredWidth_21;
float ___preferredHeight_22;
float ___previousLineScale_23;
int32_t ___wordCount_24;
int32_t ___fontStyle_25;
int32_t ___italicAngle_26;
float ___fontScaleMultiplier_27;
float ___currentFontSize_28;
float ___baselineOffset_29;
float ___lineOffset_30;
int32_t ___isDrivenLineSpacing_31;
float ___glyphHorizontalAdvanceAdjustment_32;
float ___cSpace_33;
float ___mSpace_34;
TMP_TextInfo_t33ACB74FB814F588497640C86976E5DB6DD7B547 * ___textInfo_35;
TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 ___lineInfo_36;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___vertexColor_37;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___underlineColor_38;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___strikethroughColor_39;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ___highlightColor_40;
TMP_FontStyleStack_tAD8C041F7E36517A3CF6E8301D6913159EE2D4D9 ___basicStyleStack_41;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___italicAngleStack_42;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___colorStack_43;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___underlineColorStack_44;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___strikethroughColorStack_45;
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D ___highlightColorStack_46;
TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E ___highlightStateStack_47;
TMP_TextProcessingStack_1_t598A1976548F7435C20001605BBCC77262756804 ___colorGradientStack_48;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___sizeStack_49;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___indentStack_50;
TMP_TextProcessingStack_1_tC2FDE14AC486023AEB4D20CB306F9198CBE168C7 ___fontWeightStack_51;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___styleStack_52;
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 ___baselineStack_53;
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA ___actionStack_54;
TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 ___materialReferenceStack_55;
TMP_TextProcessingStack_1_t860FCBD32172CBAC38125AB43150338E7CF55B1B ___lineJustificationStack_56;
int32_t ___spriteAnimationID_57;
TMP_FontAsset_tDD8F58129CF4A9094C82DD209531E9E71F9837B2 * ___currentFontAsset_58;
TMP_SpriteAsset_t0746714D8A56C0A27AE56DC6897CC1A129220714 * ___currentSpriteAsset_59;
Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___currentMaterial_60;
int32_t ___currentMaterialIndex_61;
Extents_tD663823B610620A001CCCCFF452C10403AF2A0FA ___meshExtents_62;
int32_t ___tagNoParsing_63;
int32_t ___isNonBreakingSpace_64;
};
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe
struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C
{
public:
// UnityEngine.XR.ARSubsystems.TrackableId UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackableId
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B ___m_TrackableId_1;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Scale
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Scale_2;
// UnityEngine.Pose UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Pose
Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A ___m_Pose_3;
// UnityEngine.Vector3 UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_Size
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Size_4;
// UnityEngine.XR.ARSubsystems.XRTextureDescriptor UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TextureDescriptor
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 ___m_TextureDescriptor_5;
// UnityEngine.XR.ARSubsystems.TrackingState UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_TrackingState
int32_t ___m_TrackingState_6;
// System.IntPtr UnityEngine.XR.ARSubsystems.XREnvironmentProbe::m_NativePtr
intptr_t ___m_NativePtr_7;
public:
inline static int32_t get_offset_of_m_TrackableId_1() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackableId_1)); }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B get_m_TrackableId_1() const { return ___m_TrackableId_1; }
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * get_address_of_m_TrackableId_1() { return &___m_TrackableId_1; }
inline void set_m_TrackableId_1(TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
___m_TrackableId_1 = value;
}
inline static int32_t get_offset_of_m_Scale_2() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Scale_2)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Scale_2() const { return ___m_Scale_2; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Scale_2() { return &___m_Scale_2; }
inline void set_m_Scale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Scale_2 = value;
}
inline static int32_t get_offset_of_m_Pose_3() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Pose_3)); }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A get_m_Pose_3() const { return ___m_Pose_3; }
inline Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A * get_address_of_m_Pose_3() { return &___m_Pose_3; }
inline void set_m_Pose_3(Pose_t9F30358E65733E60A1DC8682FDB7104F40C9434A value)
{
___m_Pose_3 = value;
}
inline static int32_t get_offset_of_m_Size_4() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_Size_4)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Size_4() const { return ___m_Size_4; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Size_4() { return &___m_Size_4; }
inline void set_m_Size_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Size_4 = value;
}
inline static int32_t get_offset_of_m_TextureDescriptor_5() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TextureDescriptor_5)); }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 get_m_TextureDescriptor_5() const { return ___m_TextureDescriptor_5; }
inline XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 * get_address_of_m_TextureDescriptor_5() { return &___m_TextureDescriptor_5; }
inline void set_m_TextureDescriptor_5(XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 value)
{
___m_TextureDescriptor_5 = value;
}
inline static int32_t get_offset_of_m_TrackingState_6() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_TrackingState_6)); }
inline int32_t get_m_TrackingState_6() const { return ___m_TrackingState_6; }
inline int32_t* get_address_of_m_TrackingState_6() { return &___m_TrackingState_6; }
inline void set_m_TrackingState_6(int32_t value)
{
___m_TrackingState_6 = value;
}
inline static int32_t get_offset_of_m_NativePtr_7() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C, ___m_NativePtr_7)); }
inline intptr_t get_m_NativePtr_7() const { return ___m_NativePtr_7; }
inline intptr_t* get_address_of_m_NativePtr_7() { return &___m_NativePtr_7; }
inline void set_m_NativePtr_7(intptr_t value)
{
___m_NativePtr_7 = value;
}
};
struct XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields
{
public:
// UnityEngine.XR.ARSubsystems.XREnvironmentProbe UnityEngine.XR.ARSubsystems.XREnvironmentProbe::s_Default
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C ___s_Default_0;
public:
inline static int32_t get_offset_of_s_Default_0() { return static_cast<int32_t>(offsetof(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C_StaticFields, ___s_Default_0)); }
inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C get_s_Default_0() const { return ___s_Default_0; }
inline XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C * get_address_of_s_Default_0() { return &___s_Default_0; }
inline void set_s_Default_0(XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C value)
{
___s_Default_0 = value;
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>
struct Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * ___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
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1, ___list_0)); }
inline List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * get_list_0() const { return ___list_0; }
inline List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1, ___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_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1, ___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_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1, ___current_3)); }
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E get_current_3() const { return ___current_3; }
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___U3CtrackableU3Ek__BackingField_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Transform_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>
struct Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * ___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
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D, ___list_0)); }
inline List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * get_list_0() const { return ___list_0; }
inline List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D, ___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_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D, ___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_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D, ___current_3)); }
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 get_current_3() const { return ___current_3; }
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * get_address_of_current_3() { return &___current_3; }
inline void set_current_3(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___m_Texture_2), (void*)NULL);
}
};
// TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>
struct TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7
{
public:
// T[] TMPro.TMP_TextProcessingStack`1::itemStack
WordWrapStateU5BU5D_t4B20066E10D8FF621FB20C05F21B22167C90F548* ___itemStack_0;
// System.Int32 TMPro.TMP_TextProcessingStack`1::index
int32_t ___index_1;
// T TMPro.TMP_TextProcessingStack`1::m_DefaultItem
WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 ___m_DefaultItem_2;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Capacity
int32_t ___m_Capacity_3;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_RolloverSize
int32_t ___m_RolloverSize_4;
// System.Int32 TMPro.TMP_TextProcessingStack`1::m_Count
int32_t ___m_Count_5;
public:
inline static int32_t get_offset_of_itemStack_0() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___itemStack_0)); }
inline WordWrapStateU5BU5D_t4B20066E10D8FF621FB20C05F21B22167C90F548* get_itemStack_0() const { return ___itemStack_0; }
inline WordWrapStateU5BU5D_t4B20066E10D8FF621FB20C05F21B22167C90F548** get_address_of_itemStack_0() { return &___itemStack_0; }
inline void set_itemStack_0(WordWrapStateU5BU5D_t4B20066E10D8FF621FB20C05F21B22167C90F548* value)
{
___itemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___itemStack_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___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_m_DefaultItem_2() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___m_DefaultItem_2)); }
inline WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 get_m_DefaultItem_2() const { return ___m_DefaultItem_2; }
inline WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 * get_address_of_m_DefaultItem_2() { return &___m_DefaultItem_2; }
inline void set_m_DefaultItem_2(WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 value)
{
___m_DefaultItem_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___textInfo_35), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___italicAngleStack_42))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___colorStack_43))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___underlineColorStack_44))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___strikethroughColorStack_45))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___highlightColorStack_46))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___highlightStateStack_47))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___colorGradientStack_48))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___colorGradientStack_48))->___m_DefaultItem_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___sizeStack_49))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___indentStack_50))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___fontWeightStack_51))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___styleStack_52))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___baselineStack_53))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___actionStack_54))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___materialReferenceStack_55))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_DefaultItem_2))->___materialReferenceStack_55))->___m_DefaultItem_2))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_DefaultItem_2))->___materialReferenceStack_55))->___m_DefaultItem_2))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_DefaultItem_2))->___materialReferenceStack_55))->___m_DefaultItem_2))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_DefaultItem_2))->___materialReferenceStack_55))->___m_DefaultItem_2))->___fallbackMaterial_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_DefaultItem_2))->___lineJustificationStack_56))->___itemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___currentFontAsset_58), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___currentSpriteAsset_59), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_2))->___currentMaterial_60), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_Capacity_3() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___m_Capacity_3)); }
inline int32_t get_m_Capacity_3() const { return ___m_Capacity_3; }
inline int32_t* get_address_of_m_Capacity_3() { return &___m_Capacity_3; }
inline void set_m_Capacity_3(int32_t value)
{
___m_Capacity_3 = value;
}
inline static int32_t get_offset_of_m_RolloverSize_4() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___m_RolloverSize_4)); }
inline int32_t get_m_RolloverSize_4() const { return ___m_RolloverSize_4; }
inline int32_t* get_address_of_m_RolloverSize_4() { return &___m_RolloverSize_4; }
inline void set_m_RolloverSize_4(int32_t value)
{
___m_RolloverSize_4 = value;
}
inline static int32_t get_offset_of_m_Count_5() { return static_cast<int32_t>(offsetof(TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7, ___m_Count_5)); }
inline int32_t get_m_Count_5() const { return ___m_Count_5; }
inline int32_t* get_address_of_m_Count_5() { return &___m_Count_5; }
inline void set_m_Count_5(int32_t value)
{
___m_Count_5 = value;
}
};
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
public:
};
// System.PlatformNotSupportedException
struct PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E : public NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA m_Items[1];
public:
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 m_Items[1];
public:
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Data.IndexField[]
struct IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A : public RuntimeArray
{
public:
ALIGN_FIELD (8) IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF m_Items[1];
public:
inline IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF * 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, IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Column_0), (void*)NULL);
}
inline IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Column_0), (void*)NULL);
}
};
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : 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((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA m_Items[1];
public:
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * 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, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// UnityEngine.XR.ARSubsystems.TrackableId[]
struct TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B m_Items[1];
public:
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * 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, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B value)
{
m_Items[index] = value;
}
};
// System.Xml.Schema.SequenceNode/SequenceConstructPosContext[]
struct SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF : public RuntimeArray
{
public:
ALIGN_FIELD (8) SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED m_Items[1];
public:
inline SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * 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, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___this__0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstpos_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lastpos_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lastposLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstposRight_4), (void*)NULL);
#endif
}
inline SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___this__0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstpos_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lastpos_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___lastposLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___firstposRight_4), (void*)NULL);
#endif
}
};
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 m_Items[1];
public:
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * 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, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// SQLite4Unity3d.SQLiteConnection/IndexedColumn[]
struct IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440 : public RuntimeArray
{
public:
ALIGN_FIELD (8) IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 m_Items[1];
public:
inline IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 * 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, IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ColumnName_1), (void*)NULL);
}
inline IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___ColumnName_1), (void*)NULL);
}
};
// System.Int64[]
struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_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, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* 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, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_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, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 m_Items[1];
public:
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * 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, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>[]
struct NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D : public RuntimeArray
{
public:
ALIGN_FIELD (8) NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB m_Items[1];
public:
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * 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, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB value)
{
m_Items[index] = value;
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>[]
struct Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB m_Items[1];
public:
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * 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, Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB value)
{
m_Items[index] = value;
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Object>[]
struct Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC m_Items[1];
public:
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * 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, Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___X_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Y_1), (void*)NULL);
#endif
}
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___X_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Y_1), (void*)NULL);
#endif
}
};
// Mapbox.VectorTile.Geometry.Point2d`1<System.Single>[]
struct Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D : public RuntimeArray
{
public:
ALIGN_FIELD (8) Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE m_Items[1];
public:
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * 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, Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.ARFoundation.ARRaycastHit[]
struct ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E m_Items[1];
public:
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * 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, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CtrackableU3Ek__BackingField_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Transform_3), (void*)NULL);
#endif
}
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___U3CtrackableU3Ek__BackingField_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Transform_3), (void*)NULL);
#endif
}
};
// UnityEngine.XR.ARFoundation.ARTextureInfo[]
struct ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F : public RuntimeArray
{
public:
ALIGN_FIELD (8) ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 m_Items[1];
public:
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * 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, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_2), (void*)NULL);
}
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Texture_2), (void*)NULL);
}
};
// Mapbox.Utils.BearingFilter[]
struct BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF : public RuntimeArray
{
public:
ALIGN_FIELD (8) BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 m_Items[1];
public:
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * 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, BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 value)
{
m_Items[index] = value;
}
};
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : public RuntimeArray
{
public:
ALIGN_FIELD (8) bool m_Items[1];
public:
inline bool GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bool* 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, bool value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>[]
struct SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 m_Items[1];
public:
inline Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 * 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, Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Color32[]
struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D m_Items[1];
public:
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * 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, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value)
{
m_Items[index] = value;
}
};
// System.DateTime[]
struct DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 m_Items[1];
public:
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * 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, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
m_Items[index] = value;
}
};
// System.DateTimeOffset[]
struct DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 m_Items[1];
public:
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * 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, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 value)
{
m_Items[index] = value;
}
};
// System.Decimal[]
struct DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA : public RuntimeArray
{
public:
ALIGN_FIELD (8) Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 m_Items[1];
public:
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * 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, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
m_Items[index] = value;
}
};
// System.Double[]
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* 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, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D m_Items[1];
public:
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * 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, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.InputDevice[]
struct InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE : public RuntimeArray
{
public:
ALIGN_FIELD (8) InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E m_Items[1];
public:
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * 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, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E value)
{
m_Items[index] = value;
}
};
// System.Int16[]
struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD : public RuntimeArray
{
public:
ALIGN_FIELD (8) int16_t m_Items[1];
public:
inline int16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int16_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, int16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Int32>[]
struct SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC m_Items[1];
public:
inline Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC * 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, Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>[]
struct SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F m_Items[1];
public:
inline Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F * 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, Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F value)
{
m_Items[index] = value;
}
};
// System.Int32Enum[]
struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// Mapbox.Json.JsonPosition[]
struct JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 m_Items[1];
public:
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * 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, JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___PropertyName_3), (void*)NULL);
}
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___PropertyName_3), (void*)NULL);
}
};
// Mapbox.VectorTile.Geometry.LatLng[]
struct LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 m_Items[1];
public:
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * 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, LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>[]
struct SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 m_Items[1];
public:
inline Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 * 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, Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 value)
{
m_Items[index] = value;
}
};
// UnityEngine.XR.MeshInfo[]
struct MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 m_Items[1];
public:
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * 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, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.HashSet`1/Slot<System.Object>[]
struct SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 m_Items[1];
public:
inline Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 * 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, Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_2), (void*)NULL);
}
inline Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_2), (void*)NULL);
}
};
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_gshared_inline (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_gshared_inline (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_gshared_inline (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_gshared_inline (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_gshared_inline (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_gshared_inline (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_gshared_inline (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, RuntimeObject * ___sender0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_gshared_inline (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_gshared_inline (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_gshared_inline (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_gshared_inline (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_gshared_inline (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_gshared_inline (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeSlice`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeSlice`1<System.Byte>::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeSlice_1_get_Length_mC04A811824226BCE2D1DEA9D8434BD1DA0E34B25_gshared (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeSlice`1<System.Byte>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t NativeSlice_1_get_Item_m4AC98A809EE7A68F9711C6ECE90E0D18E99CB024_gshared (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * __this, int32_t ___index0, const RuntimeMethod* method);
// T Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * ___set0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method);
// T System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_gshared_inline (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_gshared_inline (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_gshared_inline (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeSlice`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Int32 Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_gshared (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 NativeSlice_1_get_Item_m28D63F9C1D7AFE7CA3583E2C494BD42B156BBCE6_gshared (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, int32_t ___index0, const RuntimeMethod* method);
// T Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_gshared_inline (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_gshared_inline (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_gshared_inline (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_gshared_inline (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_gshared_inline (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_gshared_inline (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, List_1_t985353431229C8151763A38589D03FBD829D85E5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int16_t Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_gshared_inline (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * ___set0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_gshared_inline (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_gshared_inline (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * ___set0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_gshared_inline (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_gshared_inline (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_gshared_inline (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_gshared_inline (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_gshared_inline (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * ___array0, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method);
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method);
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method);
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method);
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * ___set0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_gshared_inline (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_gshared_inline (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___set0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method);
// T System.Collections.Generic.HashSet`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_gshared_inline (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_gshared_inline (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, RuntimeObject * ___sender0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Queue`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// T System.Collections.Generic.Queue`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Stack`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___stack0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Stack`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// T System.Collections.Generic.Stack`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// System.Object System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3B6FDA9BA3DA9D8E19341C3FE4E6FD2864AD97F8_gshared (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D Enumerator_get_Current_mEBA22AF0232F6C2FE3C86424A5DA3D719A6F477A_gshared_inline (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method);
// TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m831305B9708FFE22AF328227EAF1EA27C8296C9B_gshared (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Type System.Enum::GetUnderlyingType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Enum_GetUnderlyingType_m8BD5EDDA4C9A15C2988B27DD48314AC3C16F7A53 (Type_t * ___enumType0, const RuntimeMethod* method);
// System.TypeCode System.Type::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m25B2ADC2D68FE33486DE032926C6B1EECC8D73CE (Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::SetType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_SetType_mD6F11DC42FDE78E7E8A58BC3D9E248E21BB37275 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void Mapbox.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValidationUtils_ArgumentNotNull_m0F7255167A7709F4B58623AB9AECEC31A73B9A60 (RuntimeObject * ___value0, String_t* ___parameterName1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34 (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *, const RuntimeMethod*))Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
inline void Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213 (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853 (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0 (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0_gshared)(__this, method);
}
// System.Void System.ThrowHelper::ThrowInvalidOperationException(System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24 (int32_t ___resource0, const RuntimeMethod* method);
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
inline KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_inline (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077 (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *, const RuntimeMethod*))Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
inline void Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67 (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_inline (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9 (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *, const RuntimeMethod*))Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::Dispose()
inline void Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNext()
inline bool Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::get_Current()
inline NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_inline (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
return (( NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179 (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379 (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *, const RuntimeMethod*))Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::Dispose()
inline void Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80 (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6 (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNext()
inline bool Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5 (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::get_Current()
inline Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_inline (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
return (( Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093 (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *, const RuntimeMethod*))Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::Dispose()
inline void Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70 (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::get_Current()
inline Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_inline (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
return (( Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9 (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27 (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77 (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *, const RuntimeMethod*))Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::Dispose()
inline void Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39 (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNext()
inline bool Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4 (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::get_Current()
inline Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_inline (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
return (( Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28 (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *, const RuntimeMethod*))Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Dispose()
inline void Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, const RuntimeMethod*))Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::MoveNext()
inline bool Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, const RuntimeMethod*))Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Reset()
inline void Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, const RuntimeMethod*))Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::get_Current()
inline Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
return (( Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, const RuntimeMethod*))Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4 (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439 (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *, const RuntimeMethod*))Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Dispose()
inline void Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1 (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, const RuntimeMethod*))Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::MoveNext()
inline bool Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787 (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, const RuntimeMethod*))Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Reset()
inline void Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5 (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, const RuntimeMethod*))Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::get_Current()
inline Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32 (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
return (( Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, const RuntimeMethod*))Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
inline void Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932 (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *, const RuntimeMethod*))Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932_gshared)(__this, ___list0, method);
}
// System.Void System.PlatformNotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05 (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2 (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_gshared)(__this, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::get_Current()
inline ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_inline (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
return (( ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, const RuntimeMethod*))Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571 (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, const RuntimeMethod*))Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::Dispose()
inline void Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258 (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, const RuntimeMethod*))Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0 (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_gshared)(__this, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
inline void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *, RuntimeObject *, const RuntimeMethod*))Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_gshared)(__this, ___sender0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
inline void Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *, const RuntimeMethod*))Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_gshared)(__this, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::get_Current()
inline ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_inline (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
return (( ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, const RuntimeMethod*))Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::MoveNext()
inline bool Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, const RuntimeMethod*))Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::Dispose()
inline void Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, const RuntimeMethod*))Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3 (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_gshared)(__this, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
inline void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *, RuntimeObject *, const RuntimeMethod*))Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_gshared)(__this, ___sender0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160 (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *, const RuntimeMethod*))Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Dispose()
inline void Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386 (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, const RuntimeMethod*))Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::MoveNext()
inline bool Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, const RuntimeMethod*))Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Reset()
inline void Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, const RuntimeMethod*))Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::get_Current()
inline ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
return (( ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, const RuntimeMethod*))Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6 (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3 (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *, const RuntimeMethod*))Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::Dispose()
inline void Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7 (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNext()
inline bool Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534 (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::get_Current()
inline ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_inline (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
return (( ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265 (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757 (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89 (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *, const RuntimeMethod*))Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::Dispose()
inline void Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4 (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNext()
inline bool Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5 (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::get_Current()
inline ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_inline (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
return (( ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741 (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3 (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838 (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *, const RuntimeMethod*))Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Dispose()
inline void Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, const RuntimeMethod*))Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::MoveNext()
inline bool Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, const RuntimeMethod*))Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Reset()
inline void Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, const RuntimeMethod*))Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::get_Current()
inline BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
return (( BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, const RuntimeMethod*))Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281 (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *, const RuntimeMethod*))Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::Dispose()
inline void Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNext()
inline bool Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::get_Current()
inline BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_inline (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
return (( BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483 (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *, const RuntimeMethod*))Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose()
inline void Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext()
inline bool Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current()
inline bool Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_inline (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98 (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199 (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *, const RuntimeMethod*))Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose()
inline void Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext()
inline bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Reset()
inline void Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current()
inline BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787 (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
return (( BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640 (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8 (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *, const RuntimeMethod*))Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose()
inline void Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1 (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext()
inline bool Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63 (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current()
inline uint8_t Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_inline (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460 (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45 (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Dispose()
inline void Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610 (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, const RuntimeMethod*))Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Byte>::MoveNext()
inline bool Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9 (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, const RuntimeMethod*))Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Reset()
inline void Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86 (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, const RuntimeMethod*))Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<System.Byte>::get_Current()
inline uint8_t Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803 (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, const RuntimeMethod*))Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12 (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeSlice`1<T>&)
inline void Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *, const RuntimeMethod*))Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Dispose()
inline void Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05 (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, const RuntimeMethod*))Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05_gshared)(__this, method);
}
// System.Int32 Unity.Collections.NativeSlice`1<System.Byte>::get_Length()
inline int32_t NativeSlice_1_get_Length_mC04A811824226BCE2D1DEA9D8434BD1DA0E34B25 (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *, const RuntimeMethod*))NativeSlice_1_get_Length_mC04A811824226BCE2D1DEA9D8434BD1DA0E34B25_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::MoveNext()
inline bool Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, const RuntimeMethod*))Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Reset()
inline void Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, const RuntimeMethod*))Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C_gshared)(__this, method);
}
// T Unity.Collections.NativeSlice`1<System.Byte>::get_Item(System.Int32)
inline uint8_t NativeSlice_1_get_Item_m4AC98A809EE7A68F9711C6ECE90E0D18E99CB024 (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( uint8_t (*) (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *, int32_t, const RuntimeMethod*))NativeSlice_1_get_Item_m4AC98A809EE7A68F9711C6ECE90E0D18E99CB024_gshared)(__this, ___index0, method);
}
// T Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::get_Current()
inline uint8_t Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91 (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
return (( uint8_t (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, const RuntimeMethod*))Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0 (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::.ctor(System.Collections.Generic.HashSet`1<T>)
inline void Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * ___set0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *, const RuntimeMethod*))Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F_gshared)(__this, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::Dispose()
inline void Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2 (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, const RuntimeMethod*))Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::MoveNext()
inline bool Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, const RuntimeMethod*))Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::get_Current()
inline CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_inline (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
return (( CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, const RuntimeMethod*))Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393 (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *, const RuntimeMethod*))Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose()
inline void Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02 (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248 (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext()
inline bool Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current()
inline Il2CppChar Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_inline (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
return (( Il2CppChar (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2 (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *, const RuntimeMethod*))Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose()
inline void Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext()
inline bool Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current()
inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_inline (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
return (( Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4 (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081 (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *, const RuntimeMethod*))Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
inline void Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5 (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, const RuntimeMethod*))Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
inline bool Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5 (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, const RuntimeMethod*))Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
inline void Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, const RuntimeMethod*))Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508 (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
return (( ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, const RuntimeMethod*))Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46 (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeSlice`1<T>&)
inline void Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338 (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *, const RuntimeMethod*))Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
inline void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_gshared)(__this, method);
}
// System.Int32 Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Length()
inline int32_t NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759 (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *, const RuntimeMethod*))NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
inline bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572 (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
inline void Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B_gshared)(__this, method);
}
// T Unity.Collections.NativeSlice`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Item(System.Int32)
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 NativeSlice_1_get_Item_m28D63F9C1D7AFE7CA3583E2C494BD42B156BBCE6 (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 (*) (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *, int32_t, const RuntimeMethod*))NativeSlice_1_get_Item_m28D63F9C1D7AFE7CA3583E2C494BD42B156BBCE6_gshared)(__this, ___index0, method);
}
// T Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
inline ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
return (( ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *, const RuntimeMethod*))Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose()
inline void Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext()
inline bool Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current()
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_inline (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
return (( DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66 (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *, const RuntimeMethod*))Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose()
inline void Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext()
inline bool Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current()
inline DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_inline (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
return (( DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251 (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2 (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *, const RuntimeMethod*))Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose()
inline void Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880 (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50 (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext()
inline bool Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current()
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_inline (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
return (( Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1 (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87 (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8 (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *, const RuntimeMethod*))Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose()
inline void Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9 (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26 (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext()
inline bool Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322 (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current()
inline double Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_inline (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
return (( double (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95 (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, List_1_tE870449A6BC21548542BC92F18B284004FA8668A *, const RuntimeMethod*))Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::Dispose()
inline void Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779 (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0 (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNext()
inline bool Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::get_Current()
inline GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_inline (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
return (( GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493 (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *, const RuntimeMethod*))Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::Dispose()
inline void Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNext()
inline bool Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::get_Current()
inline InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_inline (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
return (( InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74 (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, List_1_t985353431229C8151763A38589D03FBD829D85E5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, List_1_t985353431229C8151763A38589D03FBD829D85E5 *, const RuntimeMethod*))Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose()
inline void Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5 (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306 (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext()
inline bool Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current()
inline int16_t Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_inline (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
return (( int16_t (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291 (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.HashSet`1<T>)
inline void Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * ___set0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *, const RuntimeMethod*))Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B_gshared)(__this, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::Dispose()
inline void Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17 (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, const RuntimeMethod*))Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::MoveNext()
inline bool Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404 (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, const RuntimeMethod*))Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::get_Current()
inline int32_t Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_inline (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, const RuntimeMethod*))Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48 (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5 (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77 (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *, const RuntimeMethod*))Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose()
inline void Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86 (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270 (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext()
inline bool Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6 (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current()
inline int32_t Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_inline (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760 (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2 (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *, const RuntimeMethod*))Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Dispose()
inline void Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, const RuntimeMethod*))Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Int32>::MoveNext()
inline bool Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801 (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, const RuntimeMethod*))Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Reset()
inline void Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016 (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, const RuntimeMethod*))Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<System.Int32>::get_Current()
inline int32_t Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9 (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, const RuntimeMethod*))Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120 (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.HashSet`1<T>)
inline void Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * ___set0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *, const RuntimeMethod*))Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D_gshared)(__this, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::Dispose()
inline void Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38 (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, const RuntimeMethod*))Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::MoveNext()
inline bool Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6 (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, const RuntimeMethod*))Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::get_Current()
inline int32_t Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_inline (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, const RuntimeMethod*))Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76 (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3 (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8 (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *, const RuntimeMethod*))Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::Dispose()
inline void Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456 (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext()
inline bool Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current()
inline int32_t Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_inline (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5 (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091 (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *, const RuntimeMethod*))Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose()
inline void Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext()
inline bool Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2 (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current()
inline int64_t Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_inline (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
return (( int64_t (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1 (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *, const RuntimeMethod*))Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::Dispose()
inline void Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2 (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNext()
inline bool Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5 (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::get_Current()
inline JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_inline (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
return (( JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664 (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199 (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *, const RuntimeMethod*))Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::Dispose()
inline void Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68 (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909 (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNext()
inline bool Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91 (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::get_Current()
inline LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_inline (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
return (( LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981 (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25 (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *, const RuntimeMethod*))Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Dispose()
inline void Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75 (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, const RuntimeMethod*))Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::MoveNext()
inline bool Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, const RuntimeMethod*))Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Reset()
inline void Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0 (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, const RuntimeMethod*))Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::get_Current()
inline LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
return (( LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, const RuntimeMethod*))Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::.ctor(Unity.Collections.NativeArray`1<T>&)
inline void Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * ___array0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *, const RuntimeMethod*))Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D_gshared)(__this, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Dispose()
inline void Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888 (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, const RuntimeMethod*))Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888_gshared)(__this, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::MoveNext()
inline bool Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, const RuntimeMethod*))Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E_gshared)(__this, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Reset()
inline void Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721 (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, const RuntimeMethod*))Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721_gshared)(__this, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::get_Current()
inline ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
return (( ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, const RuntimeMethod*))Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E_gshared)(__this, method);
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::.ctor(System.Collections.Generic.HashSet`1<T>)
inline void Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833 (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * ___set0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *, const RuntimeMethod*))Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833_gshared)(__this, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::Dispose()
inline void Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, const RuntimeMethod*))Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::MoveNext()
inline bool Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602 (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, const RuntimeMethod*))Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::get_Current()
inline MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_inline (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
return (( MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, const RuntimeMethod*))Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *, const RuntimeMethod*))Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::Dispose()
inline void Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNextRare()
inline bool Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNext()
inline bool Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::get_Current()
inline MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_inline (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
return (( MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413 (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.HashSet`1<T>)
inline void Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660 (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___set0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *, const RuntimeMethod*))Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660_gshared)(__this, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20 (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, const RuntimeMethod*))Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9 (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, const RuntimeMethod*))Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_gshared)(__this, method);
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_inline (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, const RuntimeMethod*))Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398 (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_gshared)(__this, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6 (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>)
inline void Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9 (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *, const RuntimeMethod*))Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523 (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_gshared)(__this, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_inline (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, const RuntimeMethod*))Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, const RuntimeMethod*))Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, const RuntimeMethod*))Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_gshared)(__this, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
inline void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511 (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 , const RuntimeMethod*))Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_gshared)(__this, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
inline void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *, RuntimeObject *, const RuntimeMethod*))Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_gshared)(__this, ___sender0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>)
inline void Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1_gshared)(__this, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare()
inline bool Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method);
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9 (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>)
inline void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *, const RuntimeMethod*))Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_gshared)(__this, ___q0, method);
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Queue`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
inline void Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_gshared)(__this, method);
}
// T System.Collections.Generic.Queue`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11 (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_gshared)(__this, method);
}
// System.Exception System.Linq.Expressions.Error::EnumerationIsDone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_EnumerationIsDone_m30904B8D40E60A4DE33200FB2BB6D4F54E45856C (const RuntimeMethod* method);
// System.Exception System.Linq.Expressions.Error::CollectionModifiedWhileEnumerating()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_CollectionModifiedWhileEnumerating_mBF1C79EAB68E816E513F2627BE74569B1A0FF60C (const RuntimeMethod* method);
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Stack`1<T>)
inline void Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___stack0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *, const RuntimeMethod*))Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA_gshared)(__this, ___stack0, method);
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9 (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9_gshared)(__this, method);
}
// System.Boolean System.Collections.Generic.Stack`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364 (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
inline void Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_gshared)(__this, method);
}
// T System.Collections.Generic.Stack`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D_gshared)(__this, method);
}
// System.Object System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
inline RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51 (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
inline void Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4 (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *, const RuntimeMethod*))Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_gshared)(__this, method);
}
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>)
inline void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_gshared)(__this, ___trackables0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m3B6FDA9BA3DA9D8E19341C3FE4E6FD2864AD97F8 (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *, const RuntimeMethod*))Enumerator_MoveNext_m3B6FDA9BA3DA9D8E19341C3FE4E6FD2864AD97F8_gshared)(__this, method);
}
// System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::MoveNext()
inline bool Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *, const RuntimeMethod*))Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D_gshared)(__this, method);
}
// System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Current()
inline KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D Enumerator_get_Current_mEBA22AF0232F6C2FE3C86424A5DA3D719A6F477A_inline (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method)
{
return (( KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D (*) (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *, const RuntimeMethod*))Enumerator_get_Current_mEBA22AF0232F6C2FE3C86424A5DA3D719A6F477A_gshared_inline)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::get_Value()
inline RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *, const RuntimeMethod*))KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline)(__this, method);
}
// TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::get_Current()
inline RuntimeObject * Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3 (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
return (( RuntimeObject * (*) (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *, const RuntimeMethod*))Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Dictionary`2/Enumerator<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>::Dispose()
inline void Enumerator_Dispose_m831305B9708FFE22AF328227EAF1EA27C8296C9B (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *, const RuntimeMethod*))Enumerator_Dispose_m831305B9708FFE22AF328227EAF1EA27C8296C9B_gshared)(__this, method);
}
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::Dispose()
inline void Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047 (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *, const RuntimeMethod*))Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047_gshared)(__this, method);
}
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Byte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_mB387894070692001AF4BADAFE878497FC373C43C_gshared (const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_tB2402F7A8151EE5618C0BCC8815C169E00142333_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Char>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_mAB129D3D5B14C1DCDDBA88FA369622EF193F6C60_gshared (const RuntimeMethod* method)
{
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t8C9D46673F64ABE360DE6F02C2BA0A5566DC9FDC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Reflection.CustomAttributeNamedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_m15C11C095A400A21FDE94B06BFD2094145F73FE6_gshared (const RuntimeMethod* method)
{
{
CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451* L_0 = (CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)(CustomAttributeNamedArgumentU5BU5D_t4EC7EAEB21A9435BFB8F2693AE8B3AD73E574451*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t929B62FB2BE425A28E9061DB488711798B3E7DE9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Reflection.CustomAttributeTypedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_m5E8A55E398D0E61260A4A0944D968D0D532C697B_gshared (const RuntimeMethod* method)
{
{
CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98* L_0 = (CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)(CustomAttributeTypedArgumentU5BU5D_t20B1BE58263263B492DAC21E270358FB31189F98*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t5C432F52782BD51992CB0284C4CC298BFC223635_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Data.IndexField>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_mB6FF5A647AA52A5C94BE4C8460D29D4BEAF52AB5_gshared (const RuntimeMethod* method)
{
{
IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A* L_0 = (IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A*)(IndexFieldU5BU5D_t5ACA22730370B8DD7B0EF591FD0A08918625568A*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t907EBCD9A035E2A649AC3A7BE4565AC1BECE04DB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Object>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_m4175420A041347B8526A18B04DC3A88B389B93FC_gshared (const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Reflection.ParameterModifier>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_m5885DEFD18402014B9A778CC78C8F1B0F9C59DEC_gshared (const RuntimeMethod* method)
{
{
ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* L_0 = (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t7FF24080930E4AD8DE852A0BE03367CD925FC4F9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<UnityEngine.XR.ARSubsystems.TrackableId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_m7336F205609B6FE304535FF5C803A551ABEDD067_gshared (const RuntimeMethod* method)
{
{
TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0* L_0 = (TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)(TrackableIdU5BU5D_t3C5D162B5DC148F9E6F8749AAEDA02170DDF38D0*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_tA26093340F34517171F73FCBBBD8E6E68DE5EEDB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.EmptyArray`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyArray_1__cctor_mFB04CC48AB4B5509A780A55B44774FA60A6A3607_gshared (const RuntimeMethod* method)
{
{
SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF* L_0 = (SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF*)(SequenceConstructPosContextU5BU5D_tB4ACA1FC55072B19F97324DE24BBB743C90351EF*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyArray_1_t68F9516C5E9EAFDE58AE85134704A6A24487DBE4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EmptyEnumerable`1<System.Byte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerable_1__cctor_mA7A4A0AE436EC89CA3F70FAC2E719FE9BE48A506_gshared (const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyEnumerable_1_t4332B4AE053F2F6A3B60FAA3D36FB4A65FC68FEE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Instance_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EmptyEnumerable`1<System.Int32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerable_1__cctor_m88572A8BF0D95C4476CCB60D6DD0337590A2A219_gshared (const RuntimeMethod* method)
{
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyEnumerable_1_t38575964F953F6A7590DC3B4CBCB62C304438DE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Instance_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EmptyEnumerable`1<System.Object>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyEnumerable_1__cctor_m7C70EF285081061E01F345707431EEBFBC862E87_gshared (const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 0), (uint32_t)0);
((EmptyEnumerable_1_tB6A330001520792410A46A172F103A91B1608883_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->set_Instance_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2A0B50A0C00A8DCEFF9E7024BC17782EB94BBF88_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC96BB4417A45CDB45C037D422FD3FF877D71CCDC_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE EmptyInternalEnumerator_1_get_Current_m3695A61080AD3233FAB9CBF9097297874D36C156_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3695A61080AD3233FAB9CBF9097297874D36C156_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0FD06AC1A979607DB4B1FA490E26B52D5FC908B1_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 *)__this);
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE L_0;
L_0 = (( ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE (*) (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE L_1 = (ArraySegment_1_t89782CFC3178DB9FD8FFCCC398B4575AE8D740AE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8D437CB264F951EE948B437F1A9A644120B7B713_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m52F24893541F432A25C267CA01DDCCBF71DD14BC_gshared (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ArraySegment`1<System.Byte>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE8889D96FDF14E30B66B07BB778BC879EF769801_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 * L_0 = (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5998DEBC01E06A514D3531209C656488BE980CF9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m76122FAA8DB3928A303296D350CD1CD1C2E25F18_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8697A632A843E893C44349608CB5E3BB6C89D45B_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94 EmptyInternalEnumerator_1_get_Current_m305E7DA793B71039111EB4F220E305361C33A32D_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m305E7DA793B71039111EB4F220E305361C33A32D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF52B55AF837C8F5DB91CB5240A2B9F2E9E80D67D_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 *)__this);
Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94 L_0;
L_0 = (( Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94 (*) (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94 L_1 = (Entry_t07D1CC404E65C6AB3CD8F93EC6546722B73EBF94 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m49C749003681A9B0F8EF80F23F995DAE0BC6E696_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA9446427FB7BF1D2D5258E96098E365F76E16F17_gshared (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Linq.XHashtable`1/XHashtableState/Entry<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m549EBC1100B97F8EA9891A16696260753B57CE5F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 * L_0 = (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3777DC7ACFBBCF0330AF433543D863E671BC0700_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0B32D5A221F47DF404E2F4AD49BAD263918B5261_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1CC0FFC06D85536839F17BD1A80F2B6796F2BA7B_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF EmptyInternalEnumerator_1_get_Current_mC353154A105E3BA282F6FC1862258467BC0C975B_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC353154A105E3BA282F6FC1862258467BC0C975B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m712BF3077CBAFA96EF135BC922FE2B9321E72B12_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D *)__this);
Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF L_0;
L_0 = (( Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF (*) (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF L_1 = (Entry_t4127B7DA5AB2AE02E59635FC57DD9DA217E2ACDF )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m555C1DDCCA2047954D91858B3CFF69C67749C792_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m17B7C9DCB221D887210AD85C8C81821135E3461D_gshared (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m925B77F72898766EA4545223985A5E2A1D0D0E5F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D * L_0 = (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t56EA211DBD7FB6E8C91ABCD0E541635E7C096C9D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE38F69074653F81900EAE37C85AD4357C0AC53D7_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0A0751CA00EC630314FD8E980549DBD7B8B92492_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 EmptyInternalEnumerator_1_get_Current_m2AD96AA1F82EF56E2CFAEB299BC0DC9599A75042_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2AD96AA1F82EF56E2CFAEB299BC0DC9599A75042_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9042C6BD00B1A760498E20A399CF08F8CFB736B5_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB *)__this);
Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 L_0;
L_0 = (( Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 (*) (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 L_1 = (Entry_t93EE83F6AABF1097132D1968F2D35414B871BF93 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCFB200F1AC1FEEA7C1E10924265A83F1541663FF_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC2D1BF5C45C4955068CA85B185E21B1462ED834E_gshared (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m812EF4DA466C8364247B33BDA2113C62522D6C9F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB * L_0 = (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t50438ADEBE12925FE3301E492E2A9AF10C742ECB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDCF3E6D7814600EE117C4B7200BA39552370E325_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m923D91E04E438F0EE5CAEF5A4C66471BBFFA1BF5_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE EmptyInternalEnumerator_1_get_Current_m454ADF81344930451B617E78C6532F94F9EE731D_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m454ADF81344930451B617E78C6532F94F9EE731D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDBA5F9F39CA21C25C2F9A1395E45EDD915AF5E60_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 *)__this);
Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE L_0;
L_0 = (( Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE (*) (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE L_1 = (Entry_tF3CEEDE2E6A7516463478E362D5D76699A41FBCE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDC511FEE345FAE4C2525328D5EFA466E18EBF8E9_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9DD912249B5555F8230C9AD70EF3C46B650362D0_gshared (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA7005A43487109FB8918157F57AF7284A15369DD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 * L_0 = (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2BB4011A2369DF0F4446FF57A694C26F5F12E596_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3ED310183EFD1955436CDE3E813C75F3DE6D9C01_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7A54F777121E3F14D852FAF7225A593F3A5D92CD_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D EmptyInternalEnumerator_1_get_Current_mBE90EC251A5327A3D0B1410D4DAED052BBE7D1C1_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBE90EC251A5327A3D0B1410D4DAED052BBE7D1C1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m55EBF5F78EA269B5B4261A5A676F03CCE5D7880F_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 *)__this);
Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D L_0;
L_0 = (( Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D (*) (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D L_1 = (Entry_t2869E6078C7CCCBDE1D513E0741811192282AD2D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4EB80ED22047494905588419136A27CCD693A8F1_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD7007EDD23531F4283824AC50E20A436D50680E4_gshared (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m410CEAE11BDC038CEFB032B54E4ADF6DDAD92806_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 * L_0 = (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD1FDF90EACC0DF73353CD084B7773C9D578EEDF4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFCBB64B545B162EA43324F37D8E5398835E27A0E_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF460497F641BD8AB9E78AF95E6511E60BAD97471_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 EmptyInternalEnumerator_1_get_Current_m2E8657A474D2F0C522A34D116A84EBA084E2963C_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2E8657A474D2F0C522A34D116A84EBA084E2963C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEF5FF6080CCA67FD9590C259D367424640B9A573_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 *)__this);
Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 L_0;
L_0 = (( Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 (*) (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 L_1 = (Entry_tDC6B5B6EF2FC2247811C43D191A724C9BDEBE574 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m911F644676852A80114D2A584BEB91B8DAB233F5_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA5AEAFEEB280CBA574769AC393EF6514CA2983B2_gshared (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m15F7B3789E5AA3AA2320B2F60432847A1B0D8D4E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 * L_0 = (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC45B9FEDAF327926C926165B86AC6722C46A97E0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m251528D68598558156146388CDBD8103A0AB7391_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0BE194C5CD861873CE444524442C73433B4751D8_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 EmptyInternalEnumerator_1_get_Current_mCEA39E9869D87FD3CE9D501A3B3C80083F003EA7_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mCEA39E9869D87FD3CE9D501A3B3C80083F003EA7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA94F88E23D66818EDD013C92ACE6C6E6CF9C787E_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD *)__this);
Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 L_0;
L_0 = (( Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 (*) (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 L_1 = (Entry_t451329272BBC6DD557728CC31D180CDB00BCFB39 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m98069B16FBA20971C5F0602A477AD042EA1251C5_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6C9424212E57AF1DF05A78527008AB79A63580D8_gshared (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6DB9BF81DD6D03298753DBB73AA7BBC6E3799DDA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD * L_0 = (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF147CFB946520EC7715EA24BB861FB81411E40FD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1B7D3007C9D755201E55263CF7D9B246D5588DCC_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBDA23673D131B136EF48747F0F523AC64C6C6F94_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 EmptyInternalEnumerator_1_get_Current_m62B4756A40B8D4AC787C04B210DE851B31C78CA9_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m62B4756A40B8D4AC787C04B210DE851B31C78CA9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD2C95B6C8DB4DF1ED68BE8881D4D860CF77DD965_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 *)__this);
Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 L_0;
L_0 = (( Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 (*) (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 L_1 = (Entry_tCDC4EA498E71B056C8C5CAA79DCC23A3051ABBA2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAF341B26179E1ADA61F4001CB693891DD2E5EE65_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE7DE3FFC94E341BDA48FB106409E5CCAF6FEE999_gshared (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2A6805275CFE2A15A419F54CBEC13BD644F71B1D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 * L_0 = (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3E679E759FCEEE3F16A6B393EDB3AEBEF9822054_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD6CCBA7D0911D21C750DCD3B601CE58915582581_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAA7979F6159B916775CFB78CC12637F97469417A_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E EmptyInternalEnumerator_1_get_Current_mB065B8965F5012B8AE7694FF8CFF1EEA76361329_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB065B8965F5012B8AE7694FF8CFF1EEA76361329_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAA6EAE76E8F8BF003D7D7DBF57C92EFEBFE2344B_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B *)__this);
Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E L_0;
L_0 = (( Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E (*) (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E L_1 = (Entry_t566665F9E0C95BD89070FA959BD9CD9652B11B1E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m717663A48C37702246999E66B52BD837DBAC7FA1_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m18365FADB24FDF0A60903371323F8BA00F90420E_gshared (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m779E96FEFD0C6598A428D638A2FA7FC49DF827AF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B * L_0 = (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAB505C133F221E4363A44103062C4A014E2B429B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m81512BF9A92AB23D6952D688FED494202CA8C8D3_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7F619B71C35D9E33AFB2AA705FFDDEC21D7EEAE5_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 EmptyInternalEnumerator_1_get_Current_m567FA3625E36E8936B6E871A6C9652DB35DF2297_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m567FA3625E36E8936B6E871A6C9652DB35DF2297_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC43AF7DF2AF034C881775C1B78A59E2639D13DE9_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C *)__this);
Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 L_0;
L_0 = (( Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 (*) (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 L_1 = (Entry_tD3C172E348082DAA38034A7BFC5251A40A96D632 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB835CB4BCAE975B055DF67FE2BAE7B905720553F_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7D8B0940411453E9792E3C1A825C342FCD616CCB_gshared (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF731CDCC5135F484EEAC67451D5F8265DA09FCA2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C * L_0 = (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2AA2DC8D5283124987F4ADFD9076C1CE7A2CF98C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA374EDE597FB83699D80D372BFFE1685DF1460C9_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA17FC1DB432876A3FAD77A40155C1D0BD4E068E8_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B EmptyInternalEnumerator_1_get_Current_m716400B5045C5A4CF74825AA1DB1E42289C35D13_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m716400B5045C5A4CF74825AA1DB1E42289C35D13_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE838A18ACBAEA775D7C3530602C7B2F6C9287727_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 *)__this);
Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B L_0;
L_0 = (( Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B (*) (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B L_1 = (Entry_t51C832A182CFB5F60F04E3DA5ACBB373C7DD560B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mADB2EA627A606D781B08D4E91915FE5E770E290B_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5B53AD6A719877CF58001DB780F0C5E68E613E72_gshared (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32Enum,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m279E9625E31DA19F51DBA88F1B6DCAE9B541082E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 * L_0 = (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCD5FF7F3D7FB95851EB37733FCB6A4BFEECE8688_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m73E19B789A08B5ED66C666028BB4143616DDE62B_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCAE69D6C6ABA20E298A54466D5FC4B48CA8300D3_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A EmptyInternalEnumerator_1_get_Current_m19D2F60514A044324B3A95B89422067CDAFF7572_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m19D2F60514A044324B3A95B89422067CDAFF7572_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6A33FBF4D0D205E85DB615F6449F929BB2FABDD0_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 *)__this);
Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A L_0;
L_0 = (( Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A (*) (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A L_1 = (Entry_t433EC2E04BDF0855EE1D9C7D5775426888E97E4A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F557A8C5CC28598A9FFB06439D8065C43ED7038_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBFE6D1C140B5CC7052A06A94C1E528531F04F590_gshared (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB18146378519C5C73FF0D026745AF843DE84F7E0_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 * L_0 = (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7322C3AE98F43B22A71210C53B8610D06FB99C21_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m741E46743BAAF0A5E532B4A16D5C5A8873714228_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB1CE2F94C7B338BABDDF564039F1DFAEAB7EFE14_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C EmptyInternalEnumerator_1_get_Current_m698DCCF259076FD46ADBECC86ED3E2F8035E5288_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m698DCCF259076FD46ADBECC86ED3E2F8035E5288_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m98AC1049B1CF2B97359DDF04AA38171C0E74C1BD_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E *)__this);
Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C L_0;
L_0 = (( Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C (*) (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C L_1 = (Entry_tDBB97F1D3C77068A5F60D56F2C858787FC69280C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m29E50F96C698EFAA6DD23BE00BBD5C951613EF50_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5030869AFE987CC6B29FFB8751722B204542B0CF_gshared (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.IntPtr,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m25C1AD65D002ABE91AA7FE5AE5BB544F6002FC8B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E * L_0 = (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0EA0FCD65E6971F9955B76FA1274A33CCA3AFC0E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m91E4BD4F67B919BF1D074FABC0D1463D4FCF713D_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBD4308E009413C388DD4B9CC20AA525185D7C88D_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996 EmptyInternalEnumerator_1_get_Current_mEEDFF123392BA2A67806FC7B784C6A7667327295_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mEEDFF123392BA2A67806FC7B784C6A7667327295_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m787DF7293301F79A2E8C4D3A9CCA8E28A37361F5_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 *)__this);
Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996 L_0;
L_0 = (( Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996 (*) (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996 L_1 = (Entry_t7D969557C8265CA53127F6E8137C22D4F23F2996 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDAEC46E6EBBFA94FA5367F7A38435A23085AC149_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD2AEEB49757A1763E5C125FEB957C1D3F4874364_gshared (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6EBC07802D77C78AE2437A014BA2CBCF14DF5F1D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 * L_0 = (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t79F4705510CC463A2DB3592E7E41B90CF0F53D04_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD2E3C2E85C0999676BC590DB60C8928B3BFFA04C_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m18A5DD94F9FADBEC5707396C7FDFC442223BC05F_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tE032650534234E8BCC41BF224A68F799EB231216 EmptyInternalEnumerator_1_get_Current_m85C12A244F264B2A4ECE3F21516F39675C97790A_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m85C12A244F264B2A4ECE3F21516F39675C97790A_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m531AFE37A690000E9E27630DBDF5C65F64FA4771_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 *)__this);
Entry_tE032650534234E8BCC41BF224A68F799EB231216 L_0;
L_0 = (( Entry_tE032650534234E8BCC41BF224A68F799EB231216 (*) (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tE032650534234E8BCC41BF224A68F799EB231216 L_1 = (Entry_tE032650534234E8BCC41BF224A68F799EB231216 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA463FC8FEBEAA33BA6BBA24627DBC883D9BFAB1A_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF6282422370DC6B63FA9C3C6019E361366369C71_gshared (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Boolean>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m474B9EA0EED788E5CBAE83B8CF2FE66122AB23FE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 * L_0 = (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tED4C023FC80044DE674016F5C6FEE207162389A0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA6C9345D31CF88C1B514E84E97733D544042F244_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA4537072D909A8295DAF4123D0ED53C7E1DD776E_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A EmptyInternalEnumerator_1_get_Current_m9D81932FB7FB6C07309FB991D2E60C090DF4CDEF_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9D81932FB7FB6C07309FB991D2E60C090DF4CDEF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m13371C6D9529292C657409230AA5F2EB9EF58856_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E *)__this);
Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A L_0;
L_0 = (( Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A (*) (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A L_1 = (Entry_t19C714E802975CC32D4BD74AE5A32816E1352D0A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC86AF3B71008DB2C5B6AFD5666912C696EF964C4_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8DA4D6783EDD3EF43C55609ACBB1B308A8830F30_gshared (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m403D0D2F3B1A5615627F518D6C965160FCE2B9EC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E * L_0 = (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t13C601E6C74FCD16FD70186B975C1C5F64C55C1E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD3C15A42FB9BFDE635CDA66E69FC4309FD2D837A_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7C2CD7BEE8A04BA43282114F563F974522945C50_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58 EmptyInternalEnumerator_1_get_Current_mF11154D63DC8051B0721A8C12D76AE05718AEAA5_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF11154D63DC8051B0721A8C12D76AE05718AEAA5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4A022C72AE3357E9B86C6CC96C105044C0EE2B82_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 *)__this);
Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58 L_0;
L_0 = (( Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58 (*) (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58 L_1 = (Entry_t008C5E6740BBF4D72FC9F1B0E121CB377E4BFA58 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF355CA54BF8CA7071F414C26A68466AF97F79359_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m32EFE08D366BADF5532FFE38E62F9D19ED6EB28E_gshared (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCE211C7B5DD2CCE80951F1E8DFB10BE1B6FBECDE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 * L_0 = (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3ED101D16761E173A3580218E83FB10A4C82D836_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9D86D618C49D5421C9ED4E6B3415C902470152D6_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE40577ACD65621938E66F422D277E855131DEF9E_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE EmptyInternalEnumerator_1_get_Current_mCEB22E95E6D6B673B728FBDB27D5967DF03CBC69_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mCEB22E95E6D6B673B728FBDB27D5967DF03CBC69_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4FFEDD5DF82B3E6DF1808AC369DB249F6086981A_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 *)__this);
Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE L_0;
L_0 = (( Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE (*) (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE L_1 = (Entry_t83C37D8208C6D1FBF2FAE2AACE83E9AA3EDBB4DE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1BCF371C3308BA3E691EB223D2AEBBCAA9971BD9_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB6551F48A0BF83E86CA0D5A153560936B81F2880_gshared (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8340BDD1ABC8E8FADF4F5D504053CFFBF88E8A54_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 * L_0 = (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t23E000D1E84ED515BA90427C644660870BBDD837_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5107A5FB6C8B57CE3361370D0BC30D7C569D3C02_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6C63A699FD8D6724F73131DB3BC481519F4C4BA2_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 EmptyInternalEnumerator_1_get_Current_m3D3A59BE056D3440ABD199EF42BAEE7287F92820_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3D3A59BE056D3440ABD199EF42BAEE7287F92820_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA41834A88787B4B2BFE71C8CA0B2FD77C06F6432_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 *)__this);
Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 L_0;
L_0 = (( Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 (*) (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 L_1 = (Entry_tD8A93CAFA635C3623A9F8C1541CA22C83D04EA26 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m67ED421B2FAF74CD054A5F487CF9353D6B45E248_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1986E61EE627D096F6F05ECF4CD028AC2903DD0A_gshared (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA53F4A171BA1CE82CDADE38D68DCDC867EDF0AA8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 * L_0 = (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB39E97F62003749CA39EE4AE81FD3BE6456EFB76_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB3BC3993D402A054BA30806A6162FF2D49D1C008_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA83AA38E5E38A6CA2F2ADEBF9A9E377DF9D40450_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C EmptyInternalEnumerator_1_get_Current_mBED9E21103B26EBC1B899EDB47DA72307ED971C3_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBED9E21103B26EBC1B899EDB47DA72307ED971C3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5C98A58F5CB451321C6E5E9AAFC4302AE1F312B9_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB *)__this);
Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C L_0;
L_0 = (( Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C (*) (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C L_1 = (Entry_t2AC360282B389644DE3766CC38FC3F2113A6733C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA170118ED547712CDE1BDBF702DF5F7A541E633B_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mECD176BBB1C582A06878377F0B00296413BB62F9_gshared (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0759ABD2E0141299435296599C2B85291D63FC04_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB * L_0 = (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t967C775A12616DFE522F01E2DDFF1641C21409CB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m761BDACC1A31B38F56FB0358970F4B0E0870E213_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0EA227D4B60775E7FC8C01B9C129921836C6316D_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5 EmptyInternalEnumerator_1_get_Current_m09326B38497E5977EDC8C59597C86BA2229288DD_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m09326B38497E5977EDC8C59597C86BA2229288DD_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB76EEEE44BA4995081A894B0C470FE02A2F7D8B1_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 *)__this);
Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5 L_0;
L_0 = (( Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5 (*) (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5 L_1 = (Entry_t2D084E1D7F7AAD3B522648211242520F3A35F0F5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDB0DA6C8E56D771B6D20DD6B4B61695692F9BEE3_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEB5C5F86FDAC6887500CC346C25753984DC4DC56_gshared (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB42EA637310175F0B45EB4335845E7B683BC59A1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 * L_0 = (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5BFED4804767C2671AEE2CF6ED3DA7F408357DC8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9187D3E6D23E776536D8A9216191AC1093000AAF_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9534A7C0EBEF83B313A6C0221538F85D7ADE3BEF_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72 EmptyInternalEnumerator_1_get_Current_m55BCD689047BD01B1AF4E487F4A8200B1FDC3E94_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m55BCD689047BD01B1AF4E487F4A8200B1FDC3E94_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA4BDFFF8B377DD150E471462E60431DB38BE5B5_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C *)__this);
Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72 L_0;
L_0 = (( Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72 (*) (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72 L_1 = (Entry_tD2AA953F1C59506ABC5C1C7623BEB2A6597A5D72 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m01C9562D9B619317D0387DDE98A8B7DE5DD351F7_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0908C3D6D3D7158D80B1FB14EC6ADABA34A45043_gshared (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF3CB000FD7ABEA10D5AFF246B51374DF8F386443_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C * L_0 = (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t48FAD971C5B18F31B3A599FA3CE55F87DBDF939C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m34ADEA0E0F9AF2BB9D28951F78221C68C9E8FC92_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1F4E53BF7988C7A8D1B08B08D7B2306A62FA525E_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t208639F3F4F37C945E22645BD356EDD28167B721 EmptyInternalEnumerator_1_get_Current_mFD23E0E83F64F1D1BA634D1778096C2090A1BEC2_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFD23E0E83F64F1D1BA634D1778096C2090A1BEC2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m56D8200AF8DF2529A5429DFD869A68CB1CDACF82_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 *)__this);
Entry_t208639F3F4F37C945E22645BD356EDD28167B721 L_0;
L_0 = (( Entry_t208639F3F4F37C945E22645BD356EDD28167B721 (*) (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t208639F3F4F37C945E22645BD356EDD28167B721 L_1 = (Entry_t208639F3F4F37C945E22645BD356EDD28167B721 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFC0B16C579CF707944A7B21BCB72FC1289FFB790_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE1CB1835AF51F2EB34866B3392FBEDC3E67B520F_gshared (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC7EE3E5401008E6CAF4D93001D3D333052D92528_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 * L_0 = (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8B637F80D5ACFA49714E52FED124FC6409F150F6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m459DAF9B91C91049E09002D25C9788A7D7981D88_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE993ED6F4F47E15358E30887E4FAD6D9A9EBB716_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t03A87BF6367938D67497088665C733ED14E14AC9 EmptyInternalEnumerator_1_get_Current_m43F4F61B3901E0AAB1F3A30F063DF360A77512C0_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m43F4F61B3901E0AAB1F3A30F063DF360A77512C0_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0BA63D5DB82A0485F9B0EE743B29C7166F97EA88_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 *)__this);
Entry_t03A87BF6367938D67497088665C733ED14E14AC9 L_0;
L_0 = (( Entry_t03A87BF6367938D67497088665C733ED14E14AC9 (*) (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t03A87BF6367938D67497088665C733ED14E14AC9 L_1 = (Entry_t03A87BF6367938D67497088665C733ED14E14AC9 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5E0FE4B1C278EC1DB9C05F635D05A36338795171_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF753DF9558C5DAC87F555CE60DB0670B48AE47EB_gshared (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBC26DC5C7FE35EFAFBE57484B7A7353C1CCF5A4B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 * L_0 = (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t58DE3C6C7EC6EB7E0807210444917F71487CF828_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAB88970CBE21B7DE9D40D8C1CF23CED5415E006D_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5F408859B9CCEC406F543FED56604C3F5682C041_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 EmptyInternalEnumerator_1_get_Current_m9A8C830B983A5F2048E17B70D942C63A8BFBA606_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9A8C830B983A5F2048E17B70D942C63A8BFBA606_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC8A55E1B009C215B154771DE9DC41635633F504A_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 *)__this);
Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 L_0;
L_0 = (( Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 (*) (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 L_1 = (Entry_t8E7896C112810E7B3FD1419DDAC87B62F5549A31 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m72D1AC9700BC7177ECC71B64BCE4A97EE010EA42_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m20769075A13E4A2AA7D3A958FE76DD6622ED4E4E_gshared (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mABB083D4540E71A6DAEAFB21FDA7C35F77A027FE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 * L_0 = (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDD7D4CAAD8D90F43099836DE693B0135F348B194_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF95C12B4215CB44F64AEABC226E765D1F51A4F96_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFA32E134BE43E003AFF8C72B9555C288CF820689_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F EmptyInternalEnumerator_1_get_Current_m6525B009076C32445814B7BB8DFB1BBEF28EE654_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6525B009076C32445814B7BB8DFB1BBEF28EE654_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFDC01F5FCBDE29BA7D0AC666B7AC33E027B09DA9_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 *)__this);
Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F L_0;
L_0 = (( Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F (*) (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F L_1 = (Entry_t9BD4E05FE646701488EE6B97A5981473BFE15E2F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m11EF0F5A7361624860C406593E1BC336C0AA7C76_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE7E7DFA87B7EBE3A5DE8D6F52F747AF8D5AEDF20_gshared (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.UInt64,Mapbox.Utils.Vector2d>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4A893871FC815ED563867F438CD4580E474129EF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 * L_0 = (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t819D3728AC7890C67DE22BDFE64C5852498C9087_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3FC267A857BA66BE8D704256E10118BEA9882B02_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD4EF000869CF6228A2C36D42A07202F81ADCE328_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894 EmptyInternalEnumerator_1_get_Current_m543397A11CF620B248C1B00EF09D5F696F8165DC_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m543397A11CF620B248C1B00EF09D5F696F8165DC_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m80DA8C97E4A8E23D51A6F9EF97DAFF6BDF856970_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B *)__this);
Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894 L_0;
L_0 = (( Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894 (*) (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894 L_1 = (Entry_tECAFDCC7D6218B539EAA303199B4C665BA867894 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4794FC947FB3E92D017F396217E380EB083AFC66_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC57935741AC57725889C78F88EFF2D34BA92F060_gshared (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m471EA670A449729B72FAD034ADBEE495FE1C3A5B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B * L_0 = (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1A5FCD86D5373E338416147C292AF2DD8B7C758B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD6C44CA2608CBCB54B58926F2BA53E7356F974DB_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m74A148C8476C078C6673760769EA3CE79B05226A_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D EmptyInternalEnumerator_1_get_Current_mEB35B8B3C9A96004F419570F557B2066F0216660_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mEB35B8B3C9A96004F419570F557B2066F0216660_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1C21A2BD719380AE326C3F277C473BC94EBFD4A7_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 *)__this);
Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D L_0;
L_0 = (( Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D (*) (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D L_1 = (Entry_tBAA760E09ED0ED6F90F4E82ED95A4A9EF413A93D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9E27A51943F4ED0D56F9C6264CCF80BF9E28A57F_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9DD4909A93AD28F5C1C4203087109705AA8F31CA_gshared (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Map.UnwrappedTileId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBB1404F845A48F7EA72AB0C246F550E5BF7CCAA1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 * L_0 = (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5F5EAA2A45BE6C97079ED62CD0D38B0762635CD6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDD1CFB46AC3899C290DF997672AB4AE7582F3028_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m289AC761A8DC8F88A864E9A3638BD81FE8EF4780_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A EmptyInternalEnumerator_1_get_Current_m66901240B51142EB6BDDFBE2F068F657395B2ACA_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m66901240B51142EB6BDDFBE2F068F657395B2ACA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3D0EC6C185638E020E4B85B74FB98CF616F8057B_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 *)__this);
Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A L_0;
L_0 = (( Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A (*) (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A L_1 = (Entry_t1DD1D1FCCF2E056D99B682EB02F71E6501842A9A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB0943710C4A33D26749F93DF04DA58DDC43BD726_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF6CF0A26F72DEAAAFF3F294918D572B620A619A0_gshared (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m077E4F3429698D9FFADC58AF5800C9D805592B08_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 * L_0 = (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE688339CFB247663CC1CFEF8B1C840F8FB73AFA0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF2BCBEA736E63F2F00E84154093B6FF2644871B7_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1DBC0E315F0C00710A15CDCC9E1AAF83A64CD89D_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948 EmptyInternalEnumerator_1_get_Current_mA713707AB237680A704DC6386818216F3190F13B_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA713707AB237680A704DC6386818216F3190F13B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m16D3927EF58E731F824BEB19AD94B920CA398327_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 *)__this);
Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948 L_0;
L_0 = (( Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948 (*) (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948 L_1 = (Entry_tB9F380D02E832334385D4AE1D79D2B7A48796948 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE27B4D1CC3FB587C29F09FA41DA8104FBF085BFD_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBC3D6A5B7770D357ABC14384C5BD82E4806B9C39_gshared (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7B8384258271B154C8D0BC5EDE5167675E4370A5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 * L_0 = (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF4ED217D447F5B2BBB0CA9DE8BC846E1EF0D65C3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6BD4E60389081B5FE681E13F18390C3948AD40D2_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0937B0144CBA7BC86E0C615D63FF3228D9F03172_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89 EmptyInternalEnumerator_1_get_Current_m72A32A1E11C5386CA74C8CF23679D4AF4BE189C8_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m72A32A1E11C5386CA74C8CF23679D4AF4BE189C8_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFEE9D0657D0E42F771724677D967EF1092F3B957_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 *)__this);
KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89 L_0;
L_0 = (( KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89 (*) (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89 L_1 = (KeyValuePair_2_t1B914BF18094476B791944B44FA368D34B03BD89 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD224F2C1786916C157C24698875265AE7E31F9D8_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF7140C77E58A2CF9DFC1D2FC1DAA0E46B9076171_gshared (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5D6153C761D3CFEF88FC21ECF4D2B7558DC2646A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 * L_0 = (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t72828614021799EB26CE2E2C0FA9C1FE6CD7EF34_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m20B0566D7E614E90BB530FE8ADFAA64CFFE82AE9_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFDC7D0A801D5852C90EF02AABC7BEB36CA30BD74_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 EmptyInternalEnumerator_1_get_Current_mF62114A61E337A49C4A465FAA9B767660D0999A7_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF62114A61E337A49C4A465FAA9B767660D0999A7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m89FD4103BCFD557CE60284FE998178A7721B074A_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 *)__this);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_0;
L_0 = (( KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 (*) (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_1 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m29180A6EA0CAD056CC7584DF745E134DADB4E6F7_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9409606950E7646FE90271BE99AA18298EFFC51B_gshared (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC65594121087DDE422CA9FCA9BF24494354A0B35_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 * L_0 = (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t966ADDD1EAEDE079621F9BE0ADB4FF170B02B395_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6F02261A59C010CB3B05FBD5FEE22BCF16858A5F_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m214B67724D17677BDB4DB55D25031EC69596532D_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F EmptyInternalEnumerator_1_get_Current_m2BD7C253A959912949DB08E957DECD902CBF6D1F_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2BD7C253A959912949DB08E957DECD902CBF6D1F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCDA91A333F38FBA04D92D2276BBF19E118264D0A_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 *)__this);
KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F L_0;
L_0 = (( KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F (*) (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F L_1 = (KeyValuePair_2_t74D5C76BCA7D14D18A99E0FA9EC3584DBFB65F7F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m81B1DA67203A2EF1162B0EA8F675A6F7E50CAF9E_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m01371902609C7D01DDECEABC04A164F22F858B21_gshared (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBD4D7F882E69E90DC0D04210615A1344DF17317E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 * L_0 = (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9914FEAB1B80B3192D77FFA28C256883610FE367_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFB65809E4006178BDACB6CE5AADE196A5AD35ED2_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m64F40408DDCB0D98CF55974B263E18E75753259D_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71 EmptyInternalEnumerator_1_get_Current_mABB04D58F0F03E7A943ECD09CB1699BCE60A3411_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mABB04D58F0F03E7A943ECD09CB1699BCE60A3411_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB6FD73546928A36DE4BB5E43D7BE412D94DDD8AF_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 *)__this);
KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71 L_0;
L_0 = (( KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71 (*) (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71 L_1 = (KeyValuePair_2_tEF616F78E313EF3F5933770546101BEC9AB5EC71 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m74EC28491CD111CE1AB8CCB49E771707ABA4658F_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m76B5957D64553CA20936E6F2285CA5A570EBF279_gshared (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceImage>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF8AF67580B753B79A90D3BA4D8FD8A86A8F3F797_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 * L_0 = (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t76136AE78685E02D7BF5843E290D445F33E6BF90_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m30AE60AB59B0B5A871CD2193071AA489C03C56D9_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m982EDD776AC94FC658BAAF973B8FB6792D4A2E9B_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B EmptyInternalEnumerator_1_get_Current_mDAA56C564156372C005FB233E4BECEE2FFBFCDF9_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDAA56C564156372C005FB233E4BECEE2FFBFCDF9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m12221D45E68DFAD4D0A2C067BA5FE5565EF1B9E2_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 *)__this);
KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B L_0;
L_0 = (( KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B (*) (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B L_1 = (KeyValuePair_2_t500E86D30782F0F741C7CA8934AFB9DFEAA5425B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA8884C8D2ED8045E0760FB3A0DC2F6D0BBDAA9B6_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m06F77BF902F55F09AE58A4FF968D0C6E61FECAAB_gshared (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Guid,UnityEngine.XR.ARSubsystems.XRReferenceObject>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD3F96D10ACB5EB0B9716D0553E0FF15179808B5D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 * L_0 = (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBD2A46E3E94CA20D0CB6B1BF289063C8586FB2F9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6C5759F63F06FE6501C71D0C471E6363D5A6E190_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m847DB593B9F67808389DE49075D992FDA6B2689F_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3 EmptyInternalEnumerator_1_get_Current_mA116A5C2981A96FBD57CB32C092930965620BACA_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA116A5C2981A96FBD57CB32C092930965620BACA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m853CCD2D6C4646289A1A0DD28DE84FA1FC5D049A_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A *)__this);
KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3 L_0;
L_0 = (( KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3 (*) (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3 L_1 = (KeyValuePair_2_t239694BB713649B9F5326D1A5BC3143EA54316B3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m48D5444B70752B42041EA064DD2DA0F41212C12C_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m404DDABD9383D5B20391149B13357F72C2A61D92_gshared (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2AC143B95B74A9ABEDC2EFCA8F70210097F4B775_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A * L_0 = (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7BDE1A1AE93397FC94E5BB71BFBCD770B438A90A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF73CB509DA429C0665AB7AAACA46139BE8A2BF87_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m49CA19F7CB7255D2899A6B8019C2C4C1987D216F_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 EmptyInternalEnumerator_1_get_Current_m4521CA15CEC823AE10454E713235705E9172A74C_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4521CA15CEC823AE10454E713235705E9172A74C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5C12A90FEE21578E8F6C202C89B47A8F82DBF298_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 *)__this);
KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_0;
L_0 = (( KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 (*) (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 L_1 = (KeyValuePair_2_t1E4C4AAA2E07F40196F2EBEC29A6D137D0A9D265 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m25E7231A92B30735762151250CD4D2BF6D3B4822_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC5DEDC114BBFA0D95E14F7C356762F2083B57D00_gshared (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0278B20A0D5164B0B0BF8F4C6C8DF2495461A87B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 * L_0 = (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1E3DCF293E0B2F72C24687629078DBA0D73352E5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m82A8FB0F9C6FD8C55D40ECEAE6C641074236E1CD_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5D45F85B35A20C9E7DDC44B0E84C92B556FCDA46_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB EmptyInternalEnumerator_1_get_Current_m7DF8B957E01D26BBE996409C03D4AA7C947D211E_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7DF8B957E01D26BBE996409C03D4AA7C947D211E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mADE9BC290F3D88B7BC460FED4D4A89D986FE2781_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 *)__this);
KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_0;
L_0 = (( KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB (*) (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB L_1 = (KeyValuePair_2_tE78AD78874BCE1BC993F92EF8CBBDC3B30E44CBB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE2308DE30E1FA26EF2FA67CAAEC45F9DD1D2CA00_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0C14199015DE1E29173C4A7FB3A3858994A60FE3_gshared (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5E16B2FF999D7FDA401B0C3131FAAC7AC1B0D572_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 * L_0 = (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t046EFDEF0E0F1AD5768C46A120BB364F4AA5FB97_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDCF93A6BD864A50F4B5C9C5723DDD20C5B64A438_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3004FCB972761B260E3B663F269723B36A03274D_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 EmptyInternalEnumerator_1_get_Current_mEA0B8474C0E01CAF24A00E4566F2C21E683F2EF7_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mEA0B8474C0E01CAF24A00E4566F2C21E683F2EF7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m07997AD32FD570764F525012E6FA985155B77294_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 *)__this);
KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_0;
L_0 = (( KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 (*) (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 L_1 = (KeyValuePair_2_tE8FA5EF9EFE23FF7AB54968FA25D3487B37D4D28 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m012AF95CD5E2EE5A00208F00AE1FFBA45EE26E68_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m24C4637E3E135F64143B45D715AB90FF188E294B_gshared (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB7CE93A011C040F760B4B37BF122C9C17BAF80A2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 * L_0 = (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t469E21738A3346E222F6C1AF2CD5451A14CFC2D8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3DCC9640C02DCA4CBE856CC703E6C5E54B8612B6_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF97E173F8CFC213A46E7E7642D0BCD371708D23F_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 EmptyInternalEnumerator_1_get_Current_m17B652CA58017003144AEB65754C48237BC93E87_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m17B652CA58017003144AEB65754C48237BC93E87_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m286179D917BF8225F99EC777955D281DA8A5DCE7_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 *)__this);
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_0;
L_0 = (( KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 (*) (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 L_1 = (KeyValuePair_2_t56E20A5489EE435FD8BBE3EFACF6219A626E04C0 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFFF89E13404F0C0E28F83446DDACAB6E7FB73104_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAA488255E435CC39488DF1E67EAA25ACB3D6B25C_gshared (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m275F8BA6DF5B5D72C03A9DC08FDDEFB3BEC73B16_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 * L_0 = (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t91AF4CD6F5CE6FE6265A4E5595BEF3A9DB1AD7E4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8B2E5B7A8E536D9EDB912519D117B991247BD8FD_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA38FAEE80BAB352733678DEC4CB58B07F3BE27AF_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 EmptyInternalEnumerator_1_get_Current_mD086EAD2CFC5A2AF982F5C36C0DD274CEE44AEA3_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD086EAD2CFC5A2AF982F5C36C0DD274CEE44AEA3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4D1D2E86ABDDF3C26289DE95CCEAC5DE5EC5F845_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 *)__this);
KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_0;
L_0 = (( KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 (*) (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 L_1 = (KeyValuePair_2_t83B2885C02C836E233B38F12A0F13CDC8DBE3ED1 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m794F2D7B84FDDC1B595B3D21B38409C7EE36B5DB_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m771A2DC06D53EEFCC94122D0093F9294A609E08A_gshared (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32Enum,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m59374FED6B5A5E597F3FACC5A73C1343E957C0A6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 * L_0 = (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9321242252FD13DEFE01C41D2DB51D818C7A40A4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDAB248FFF0AB2DBAB5058B883D48EAAA5BDD2A92_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCC23593FB67937502DA515547B990A4CA8D5F811_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 EmptyInternalEnumerator_1_get_Current_m00F4D6F0F8D48A3ACFE2E30770602D1C2CC067DC_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m00F4D6F0F8D48A3ACFE2E30770602D1C2CC067DC_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAE56D04BCF9436A8BF5F50499841BE0560FF1B6B_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 *)__this);
KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_0;
L_0 = (( KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 (*) (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 L_1 = (KeyValuePair_2_t8EB09BF4DD251CCCBB6F85C46B29153BF9822DA2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m87B52DE94C377B281852DDD6321819181FB08383_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB85F3571899E103F5D8A5B6F626DFA200EE2F262_gshared (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3BFDE14C13DCB1C432F9C5F722A9448A6FF2A9E3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 * L_0 = (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t70915CA21F9EFE00D737B75B289D0D57BD8222F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB21C8788E6E34EDE493CCB4556D704A1F92F857F_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4D53AC80D7EB43381A70F0B9DBC35E759C1DB052_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F EmptyInternalEnumerator_1_get_Current_mB085FC8E0E23C3D9FE26F1F2EB0F125378393425_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB085FC8E0E23C3D9FE26F1F2EB0F125378393425_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA3458F73597244A6DDE689E0983213C4CC170BE5_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 *)__this);
KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F L_0;
L_0 = (( KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F (*) (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F L_1 = (KeyValuePair_2_t9929596D6B05353257A804D74C9405F53868F45F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4186E5622C3C4CCD84CF3EDBBD8971B00EE5834_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m55F39D251A0776980863306C41A662740F2ED20C_gshared (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.IntPtr,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC7515D5E727D45A92E4F1E505403990F6693A878_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 * L_0 = (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1A8F5AF74F9853215114734BF815693F87F9C536_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m58A1E47A124403ED9ACE84EF5EF554314B5CE2A6_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4DB782826B5E455E9366BE483142C77F17E4F6DF_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC EmptyInternalEnumerator_1_get_Current_mD9E276557E41CE1391C9A948C7280254F37CE842_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD9E276557E41CE1391C9A948C7280254F37CE842_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7585ED2A5E52C7DCB5CCC7BBC406FDA546547EFC_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 *)__this);
KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC L_0;
L_0 = (( KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC (*) (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC L_1 = (KeyValuePair_2_t3BC076473466AB05F302E530F4A4392A6E94A7BC )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA2BC523387033B10037A14F03CEE3BF252A12B1B_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9CA85028D47090173FD7A67E575ADFA44A4B02B0_gshared (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.MeshId,UnityEngine.XR.MeshInfo>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4246BA93A18729BE95B713DBDB5B24FD7B0B238B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 * L_0 = (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7A58C488AB26BA4DCE14417082378C027C02CE26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2B801C67CF422845C963BA41E1AC7FC9CDCD4EA3_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA1C5B3931B351E98D922867E8A995AFB48A35262_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A EmptyInternalEnumerator_1_get_Current_mD7D1058417209BBA2014B0E71BAE4D7A8F868C6D_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD7D1058417209BBA2014B0E71BAE4D7A8F868C6D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1E98E5AABFA02A42E6662DF5E6C7D7CB36515A70_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 *)__this);
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_0;
L_0 = (( KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A (*) (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A L_1 = (KeyValuePair_2_tF48C056DF83BF9AF3BAE277B149EC5E4E436BD1A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1EEF2917F8483DE2E6FD3587E7DC9FFC7BD62891_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m50A2ACBC3ECFD17548A4553119B24BDA72396FE5_gshared (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Boolean>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE3C80904C897F48D2731F944D065B7C539B3FA6A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 * L_0 = (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t64A1FC9DB7F5C44421365C0F743F1880FEBA2918_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAC3429EAD46D300488976D4CBE6966389648547C_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2BDA84604C404C0BE19659F46AE3AA13AB20CFCE_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 EmptyInternalEnumerator_1_get_Current_mFF4893C72428308523DDCD2EC51390DD8235FD9D_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFF4893C72428308523DDCD2EC51390DD8235FD9D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC8148216D6D0136F79725D360B0A3DAAC21DE655_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC *)__this);
KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_0;
L_0 = (( KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 (*) (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 L_1 = (KeyValuePair_2_t95507C2A8401F2191EE3D308B1B00E3729AE41B5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAEA76BB7D90AA247DC1DDCF75152001C20808F85_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m468BE47113922AE759916B096BD28098D0EDC5EF_gshared (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC751885D71B3E4B9222DAB44623E9A6D6F165350_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC * L_0 = (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3092EC50C097407908F7B1F651F29ECAB232F3CC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m19064D2D4CD7F13F2FB9ABE327C0AC06C756DDC0_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m09E189EA05BC089F60D9C5E65C9DEEE81579D578_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 EmptyInternalEnumerator_1_get_Current_mD288CEA7A5A6E9E3CE31D8FCBC51A8891FF78886_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD288CEA7A5A6E9E3CE31D8FCBC51A8891FF78886_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m95A03C750944282FCF797A2B5159B9B7646FE57F_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 *)__this);
KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 L_0;
L_0 = (( KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 (*) (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 L_1 = (KeyValuePair_2_tD48B4CC7D124965F124FA06C6FE9827A1F6BE297 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m43278EF7F28C201691BC9FE722E273F541D8FE4F_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5CEF3D29052ECB90EE96D1EDBF9B97A234C3E1CA_gshared (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8CC537B2883B7975E0A7A6465D05C1BB4D937099_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 * L_0 = (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1696B72521DF760934B18135B25B34F4F1A87784_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m44A13753010D727BB49610CBD4B874F08B44236D_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m637377437F35FA2E35606AB10D2B11D1B534B2C0_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 EmptyInternalEnumerator_1_get_Current_mA1210FA2B5F24914A6465E02CC753860D8C28341_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA1210FA2B5F24914A6465E02CC753860D8C28341_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m510B3D786072838A6920D2E9A7022B0092A88734_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 *)__this);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0;
L_0 = (( KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 (*) (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_1 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5B483ECEB0497709D70FB5509D6F4D6BE402C811_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFC5F11E39979322DAD651685D615BF702A8296A4_gshared (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m50FB7E38593D17D1D8C992CC779324DA30C0CD83_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 * L_0 = (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t473158D827BD222CBC21ED99C68D61DCC7EC3241_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA7BD73E153F7640C47855FC06B8A41002FD99DE0_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAD1CB2780E25D1D433F891EED4274ED0CD999603_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF EmptyInternalEnumerator_1_get_Current_m574AD8B79036DED13BEADB996A5B544C08E4B4F2_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m574AD8B79036DED13BEADB996A5B544C08E4B4F2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCFA658D550FD793C697F588DD132714E0EBC1809_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B *)__this);
KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_0;
L_0 = (( KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF (*) (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF L_1 = (KeyValuePair_2_t6A417393575389EF0D895B62580FBC33E95066EF )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m07729342F54AD13463A85055BDD12E3BD01C9F4A_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7B37B21EC8ECD2A1100BD9F1D3980203D8255A3F_gshared (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8B943B675B998C0D7A6653F4F00A580FD921DA93_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B * L_0 = (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF93F1A422F38EE3D134F3FB69C951A141167560B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m39478780F4B3C1DF378A44B4C42179CA4A42E80C_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8D5BED5AEA541D756F83739567B29498722609C2_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E EmptyInternalEnumerator_1_get_Current_mAFE720289F0D8D03ECFE0A5E97B1228566AF199E_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mAFE720289F0D8D03ECFE0A5E97B1228566AF199E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA214F84E02D00367B68947991E619BA82503A397_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 *)__this);
KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E L_0;
L_0 = (( KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E (*) (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E L_1 = (KeyValuePair_2_t04BB8CACAF8C7F09B2605D7AEEB5C81181063A5E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m889B55C5296622D0F34564FFBF60A0A97E66CB7A_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBE7250C1687E6C7DE4FFCC49BBE9CBCC11E3EC1C_gshared (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,SQLite4Unity3d.SQLiteConnection/IndexInfo>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAE79F6C777AF7F9BA519A452B8D2E9CB0ED34627_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 * L_0 = (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB02A49842AD6895763E9CBD752A7C9C577EB6E43_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m89B3C3F1ACE392B44AC822EE97293871B716BB06_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m40D09322829CCD0E3DA733C9BA662F77176F6F31_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D EmptyInternalEnumerator_1_get_Current_m4D216B8A8CA3699587EDED7C47E5AF3EE4EDB12B_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4D216B8A8CA3699587EDED7C47E5AF3EE4EDB12B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m76D72E3B5935B533CF5AE66C9465F6A10B2BE28B_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 *)__this);
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_0;
L_0 = (( KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D (*) (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_1 = (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF4F2564A4EE5B15F5E1332EFD0DBAEBBD52849FA_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m26E1633A389020EB802B04371BE18D104307D378_gshared (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<UnityEngine.XR.ARSubsystems.TrackableId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9474AE1B7D9973830149E319A6B3C6DB70AEDDB2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 * L_0 = (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE24C560B6D1917954E7D6DD02198315232A28A03_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m44C6C65F5F9EACBC9217FE362174B911CE29DF5B_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m15B401889E97BA87AB284C5883CAFEF37EB690B3_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD EmptyInternalEnumerator_1_get_Current_m836DB0CC996932DA0D46699DF5297F3269406310_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m836DB0CC996932DA0D46699DF5297F3269406310_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m832293C9C9F05DF8CC15E5878A0A61035DF0E16E_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 *)__this);
KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD L_0;
L_0 = (( KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD (*) (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD L_1 = (KeyValuePair_2_tC7989BAF075449CB4FFCE9C8B8B280C1073029DD )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m336BD3FC05384C9F2B0690BA329128BD3FE3944E_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0F3DCB88D5EC84A3D1668514E029202C1CE1E87C_gshared (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.TypeNameKey,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEBFC9A67970945B93FDAE7D454F14E73BA5F20BD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 * L_0 = (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6B769286E387617208BB047F0379F1787322A870_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8D0D7510906BFB4209B632E69A9B2F5FBBF4C5C5_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF0AD5E1CA6356C9EC558101838C989DBFAE44536_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 EmptyInternalEnumerator_1_get_Current_m2A600503DF6FE591767DE857FD9B7E2687768879_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2A600503DF6FE591767DE857FD9B7E2687768879_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mECF79AB9D961FF1A51B3E93720C2F929AA60B02A_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 *)__this);
KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_0;
L_0 = (( KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 (*) (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 L_1 = (KeyValuePair_2_t1C899E1D384EB1A82B398076E49CE2B74F0CE329 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m00EC966810A4CBC317C42B866848AD5E9E4F68C4_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mDC5528FAE69BF15DCC139598790777F79871AE14_gshared (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAFF621AB1CA45BA0A5E98CDCF5858FF970B23B2A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 * L_0 = (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAB05ED2FBED5A86754FA8B4E518BE2C7B3F9E860_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mABDF5718A75A8F4BCB89A781C3ECFAC77593E6FD_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF483863EE60693FC9F190B8EE9093515ABC2A3E1_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA EmptyInternalEnumerator_1_get_Current_mDB6152D515B2083F8CA6A3D3968D8AF463E4637D_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDB6152D515B2083F8CA6A3D3968D8AF463E4637D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0854558D37BC5A256D4385F754835ABBBE4955D_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA *)__this);
KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_0;
L_0 = (( KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA (*) (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA L_1 = (KeyValuePair_2_tCEEEA2545C9572EC331DBB69871921A5B01E60DA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m96BCFE3D401696D2D3AA890B8894451DA115EDF2_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m42FA27698CEAF9D24B4E87AF5B5367F91A3B7609_gshared (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE262C371EB65B4E88D988940041F2DBFCF0033E4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA * L_0 = (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE4842672B4C948DA29DC8CC60BB4D38D4839BAEA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE587FC5C8964E45884AC99E266D8F88B25789430_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCA8F658557C875438B1EE9FE79955C57E5428F4D_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703 EmptyInternalEnumerator_1_get_Current_mDD722803B7A7DD7F21BC25817DB783ABDC9BB0BD_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDD722803B7A7DD7F21BC25817DB783ABDC9BB0BD_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFFFF603124B946D15B8819D25A3DB773BBC624F8_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 *)__this);
KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703 L_0;
L_0 = (( KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703 (*) (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703 L_1 = (KeyValuePair_2_tB8C085DAB5BB6A37255E0F93DBDCB70456DA2703 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAF82382B05B3D1A8D779CE88E2F27A83853FFD04_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m500D7B8346002778F8C1A4D5FEF422A45755B5FC_gshared (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA31306F7978EA3268FDD748D3245BAA5C5789403_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 * L_0 = (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9B3C2D4E5284B1381F77165083AE961DF19F4459_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4FD8635DFCEEEC3A91821D80CB6C54C47767EBCD_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m576FDF4BFCDE00B78AD1D728286650C486264A63_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D EmptyInternalEnumerator_1_get_Current_m61C243FA4E3F08EB16FB14DDDBBB7BAF5C986EA6_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m61C243FA4E3F08EB16FB14DDDBBB7BAF5C986EA6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6B346BBE119D0EBBF5AD102CAD7F01E8C83C06FD_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F *)__this);
KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D L_0;
L_0 = (( KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D (*) (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D L_1 = (KeyValuePair_2_tBD79EBFB31881CFA880C7413474705F0BD61552D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m283B757F0CA532350632C56BFB2D9FBA3B813A5E_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4325E6099023A161011B3FA822B28080225183F9_gshared (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.UInt64,Mapbox.Utils.Vector2d>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3C18E1D51A3AAC721857E0B8FEAB2089B553879D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F * L_0 = (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFC85C3A11745BB60EA15CDEEFAB09A997F9C3C8F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6770D4B44354E3211C257D3DC4F7C50CDF15D43B_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m115D1FFE2A87057D3F5E07E2949501855ED9C097_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B EmptyInternalEnumerator_1_get_Current_mC41B89D5983EE9E0F502F818AB6290A3E59E9266_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC41B89D5983EE9E0F502F818AB6290A3E59E9266_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3BACEE6BA847080B183BAE2C1D845CB39CFD71F0_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 *)__this);
KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B L_0;
L_0 = (( KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B (*) (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B L_1 = (KeyValuePair_2_t1E62AD339E3FE56353154AC5680D3D99348B836B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0131E50FA2B0F105EB0F2C3A37E6FD349EA3C998_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFE62A8D0CC7343C68D9C326C1C26BB8F7C4B045D_gshared (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD66DA4D5126530FCCF96D9C531F7CA1AEFC0FF7C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 * L_0 = (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC27A024C272E316E03B7AE3D7BF0E620640ED5C6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA42A06E912E4896494273F8B88BD272FF737AC2E_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9AF4CD3A42771DF894F29507920E615A245BA711_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74 EmptyInternalEnumerator_1_get_Current_mCEA5E018009E0A19039C4758D6DAD1364E9B8C8E_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mCEA5E018009E0A19039C4758D6DAD1364E9B8C8E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8498EC1C33CAF2E40886B407649765614BC756DB_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 *)__this);
KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74 L_0;
L_0 = (( KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74 (*) (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74 L_1 = (KeyValuePair_2_tE693F19EFDDAC1C5390D1C192F0ECEBE77520C74 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF3D3AA5A0A4504CC29F11CD6C4DE2E1BB612694C_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE1DDBB4A814079FCF0553DB4E698ED6B55970A42_gshared (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Map.UnwrappedTileId,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF0BCF5D374D8929FFD72B5197AE0AB5FCC9A98E2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 * L_0 = (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD2E875CF2E4692C165CD68EE4D3BA2CA6AE12B29_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2F3C612E62813148DE116E639CD9256CB53A6B6B_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD44FD24EF0552A511EC2F7FD0E777579A363E7F6_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717 EmptyInternalEnumerator_1_get_Current_mFB170608B75A081FFC8FD2F5975294E95FBE0CA6_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFB170608B75A081FFC8FD2F5975294E95FBE0CA6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5BA03D5B95138277DAC943E70FBBDB0010C4FCB7_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 *)__this);
KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717 L_0;
L_0 = (( KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717 (*) (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717 L_1 = (KeyValuePair_2_tA248CA53608CB5BD1F4859EDB188A970E1534717 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2A2331FD6C71FD633CAAA2E9DD28DCA110A2ECE8_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m53B8028311F8D5E31BDED4E899C476735A9B12FB_gshared (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<MS.Internal.Xml.Cache.XPathNodeRef,MS.Internal.Xml.Cache.XPathNodeRef>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB1C5E9638FF664100FDD9415C82171DA3BFFE1DE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 * L_0 = (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7ABEAF3E3EBE73411A9CE891C06EAC179A8E0563_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m449E5FC1D0FD131B5205FB0E4B68F4A762538646_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE6AD1E202579B685696E9197B6926083D55E0B28_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963 EmptyInternalEnumerator_1_get_Current_m872351F16FE09B4FC0FD2295A3088CA6AFB3A639_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m872351F16FE09B4FC0FD2295A3088CA6AFB3A639_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3594FB975EACBF9B1A4698E25852336CAA5A4C99_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E *)__this);
KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963 L_0;
L_0 = (( KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963 (*) (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963 L_1 = (KeyValuePair_2_t657BDC96FF3F7A00EB85AAA602250F3E237B5963 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8FF1A538DE8643A02E825D4F8636CE4C278F6D3F_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m91934FCF58B5A938EC34AC9BBE242AF16ABB5EEE_gshared (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m05F4B6916029BDA466E0965278ECE173CC84623D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E * L_0 = (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3723BFA5E621C3A42BC9F073E27DC7D9261E815E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m15A82ACF11A29C9D10CA884F7EFB95B5C20C9614_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE2D322B5A2D1E0DCEFABF60F96BC92E1FA0E47EB_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB EmptyInternalEnumerator_1_get_Current_m76A2C0457D77136D56D10C0A483B08EE3C92C4EA_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m76A2C0457D77136D56D10C0A483B08EE3C92C4EA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7EB6F16D4D0DD4C19E8ED9B3D0CFB7AE05CCA77D_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD *)__this);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_0;
L_0 = (( NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB (*) (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_1 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCA8E062823733328DF3655B59302CA57D6A79A42_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9FE18A7D8E872DB15CB6549B234D9D052EC05513_gshared (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m18A34007C4DCC019E77FB35CE4F83DEB8FF6AFD7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD * L_0 = (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t58FDDCE6D6289B905CFB8009222684BC889746FD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m191A66530A2B14A18B04283A7C690F94EA3F79C1_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m63556236741E651C8001E17895F0CFD59F7A9066_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F EmptyInternalEnumerator_1_get_Current_mB31B04849DC98D536E3C69C75AF11EB3D196A119_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB31B04849DC98D536E3C69C75AF11EB3D196A119_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE9F868ADB344D6467FF26A2B8CDCE463C79BA3E6_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D *)__this);
Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F L_0;
L_0 = (( Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F (*) (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F L_1 = (Node_t83BAF168314CEB87DDE87086DD569B35BD26E30F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9094DADBAAF4B1DBF0A043F8AF88B24F346A896D_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m138DDF81236507ED83C1E2DB13A5248C1D8C21B8_gshared (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF36733B329A966C19A5BEDECBAB70BB42ADF4976_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D * L_0 = (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCEAE60EB3DDB56B8E915047E6F5CCFD06F07D31D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m98A0E842503280A173FCE5914AE322BC793950CB_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m52575C53D0F31DC6B6BD417B848D6D103787DBEA_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C EmptyInternalEnumerator_1_get_Current_m8CF73252BC8AFE1C4ACF1545E730AF9F79388CA2_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8CF73252BC8AFE1C4ACF1545E730AF9F79388CA2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFD270C07279FDD92FF697A5A9F35993C229C6AF9_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 *)__this);
Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C L_0;
L_0 = (( Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C (*) (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C L_1 = (Node_tE3B4A5A7F63B4DA8303E6E68B26362DD745EDB2C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF2454D978F44D0187382A7412721CC1F0BA4ECFB_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA01FC92BC32576AE76CCDFA4251105D19CD4C0A2_gshared (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.RBTree`1/Node<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC9005FF7E5E0AA93A4CC18ABAED6680186224247_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 * L_0 = (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBC3D9A3B599CC13A420F4B3C77DC8CCA0D1F5B75_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB77CBBA85235916C8B80CE38E8DA4CB4ECED49E6_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7910851B42A547FCF312D5522485E6C8EABABB9A_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB EmptyInternalEnumerator_1_get_Current_m187A27A5CE2ECDEB3C2EA757527FA0262317DA4E_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m187A27A5CE2ECDEB3C2EA757527FA0262317DA4E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF397E3D29998152F9557D3518CF0AD828E4E2320_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF *)__this);
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_0;
L_0 = (( Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB (*) (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_1 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m75297E425F196677B1D3820F0C94964B7B55D2D1_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m314B75DF473249222E34E85ED320314F78853010_gshared (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB9F423A5B71CA60BB61E7E1CC83D75F547A69E56_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF * L_0 = (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t335B392DFF9D0CE2ACF406F110C0E310A4F354DF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC8C06CD27A3DAFB2666BC5EEE3236CF8B2561F54_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2C9991D038344B5B9955C6DFE928E1B5BFF13944_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC EmptyInternalEnumerator_1_get_Current_m418D1D24D091FACC9F7AB5E585A1D33D1CCDB6D4_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m418D1D24D091FACC9F7AB5E585A1D33D1CCDB6D4_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC0127C9C11AB114461D7AC4D40E029005B97B2A1_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE *)__this);
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_0;
L_0 = (( Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC (*) (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_1 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m17AFC68147F9C14809AD8BB31CB5B012B1DCA004_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m2C8B18210B87C1C41FF8CBE91710AD9A08FF16AB_gshared (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m507507CB8952E8A283DC5AE9B50297B430D171CA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE * L_0 = (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBDA789639FAA3E06A922885680A3F2607CC0B4BE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0A708FE1976FCCD1559B3D12F5D50E753FE2313F_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC1CF2BCFC3E1E973EC0B43BA75A15B8AA1A2B9DB_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE EmptyInternalEnumerator_1_get_Current_m75E78E3F86371AB4F7057D45A69799EAEDC3E877_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m75E78E3F86371AB4F7057D45A69799EAEDC3E877_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2CB9FDC301AB590578334943DC2C400BFD33B8C4_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B *)__this);
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_0;
L_0 = (( Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE (*) (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_1 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m74EB0F4F9A5F31BF90DD37645C2755B1F7F8EE1F_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8E7FFDE2D7A5D77DABE7AB993A9C6A21E7CAF38F_gshared (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEB54F6C059285723819DA40EF47DD93F8A8E2251_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B * L_0 = (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7F085F1864296FF510A4DACDEB1A0A5C8F11B03B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAA6DF41B0A641A59FA22468C3EC3AD49783571ED_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m805626F4FFA0404C8AC662853A07734356D78793_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 EmptyInternalEnumerator_1_get_Current_mAD06095CFF9962E8EA1590158F5EA0E1D03089A1_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mAD06095CFF9962E8EA1590158F5EA0E1D03089A1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6FC1DF6D35F2F839719C491C6BB4E9733D599882_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 *)__this);
Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 L_0;
L_0 = (( Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 (*) (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 L_1 = (Slot_tCA1F5FD2AC3BA5450A71D60649E66CD566E03A69 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m629DDA90A5D13ECFB476E4F323B747D152461164_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m141CDA82959C7FFA52E42C2A6B0231A7D80DE08D_gshared (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.CanonicalTileId>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC6F9DC1D8C10AC209689F8943864541FA254563C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 * L_0 = (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC19325A2E6B3B6D2B6C02DC62AF6F3D9ADDD8746_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA2ABF7BF59B2C107228818204C0352377B722CC0_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m51A060F64FC1CD03D964E92C4C9D31BAAADA0401_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270 EmptyInternalEnumerator_1_get_Current_m5D03722F029E1E19953FCCD1C6B24260EC6A32ED_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5D03722F029E1E19953FCCD1C6B24260EC6A32ED_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2954DCA12ED7236FE414B65BFD4DB7F9C5C88A33_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 *)__this);
Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270 L_0;
L_0 = (( Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270 (*) (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270 L_1 = (Slot_t7913BFDAC9B04F6D2FFAA2E86F00C69AF19C5270 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1D7F3A31366B1C9057A451E63C6F8CE6497FA1DA_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4B99FE7D927EA4E56D38A54A5D84025CB8FF0809_gshared (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Char>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m98681F1981B18C8DFC5DFA783C26864AA1C07438_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 * L_0 = (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC1CFB4480CA22C8AD749CAFEA3398F8208F0DE53_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC05596C3C2DAC69F6CA55B4029F356A55B261BD9_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA00EA1AFFB84DE05CA64A1DDE33E8FE5FC5BA818_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC EmptyInternalEnumerator_1_get_Current_m53F3449F86E15809E006F3D4D03A03002D16CE8D_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m53F3449F86E15809E006F3D4D03A03002D16CE8D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m24796F91F885E3484C29E4DA2848B3DD904656EA_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 *)__this);
Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC L_0;
L_0 = (( Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC (*) (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC L_1 = (Slot_t2C8829D525FBFE4DFEC6E3433F1335319856ACBC )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m25481A8105F1E2F07EBF56627CA4DA9D93FE4F28_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFFC5751162D8CB74A30AB04B23C451522B9A480C_gshared (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC8D7D44DB42A6AFACE017CBD0F426DF0CDC48EB2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 * L_0 = (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5AA0F1DBE479071E1EEA3932B47114301C25B727_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD6F679739F4EF28D619564B76C48749C53AF82E0_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m487B344C211A944D48F620EE99657D698F19FC9B_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE EmptyInternalEnumerator_1_get_Current_m94C61C9F309B559A47526E041E242E2B03C1BC6F_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m94C61C9F309B559A47526E041E242E2B03C1BC6F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB58B47F1E19177DF6249E14D1C92A1B6D76FE1C4_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 *)__this);
Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE L_0;
L_0 = (( Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE (*) (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE L_1 = (Slot_tE5CE31BC6C64D2910C5A9E153E2CC59D26A83ECE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0C5A0AB1CD4644F043EDEE0912A43E0E544815B9_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9C41E8A941EECEDE27369F2164A7F308BC60CE8F_gshared (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD0F3ADA9F19153277C1418BBB73B6DE228C646D2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 * L_0 = (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFDB7A45F41DE85853846413F68F249F5168C8377_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m425432455127E551481C9F501A0CEEBF8E95F5F9_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCADB4895D608212AC3AA0166B2DE865C139E122C_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F EmptyInternalEnumerator_1_get_Current_m9C214895E43ACE96B2A9328CF06B2E169FBEF7C1_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9C214895E43ACE96B2A9328CF06B2E169FBEF7C1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m87AE4C8A655B7E9CA40B7440FF5205F7ADA6D18C_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A *)__this);
Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F L_0;
L_0 = (( Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F (*) (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F L_1 = (Slot_tC31C6E818814F95B7C786172916C5FAF09A00B2F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m815EC6A76643591FD3DB99F1CD6543A3052B7E90_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD493ACAA806DC1F3F9235C11C995C3F0A26F79CF_gshared (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBC8FA348957155026D314F5F3B48B7F4FEDDE782_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A * L_0 = (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t868719E34A408CF92D18CDAA3645DFF88303E79A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m11F64B9CECAFBFB6A7C039750F8D8B29A8F4C3DB_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEBA227263123E88D36D512C9A382B28B9E383450_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 EmptyInternalEnumerator_1_get_Current_m99BD94D3FF26B24DF1FADFA1A95411BB420E116C_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m99BD94D3FF26B24DF1FADFA1A95411BB420E116C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m453D9DD732D287926D25AE8DE555489404261903_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 *)__this);
Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 L_0;
L_0 = (( Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 (*) (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 L_1 = (Slot_tC220CE39D614D00A90A9A213DC270E937D4A4D46 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6AC1513AC84D3C5DDEE58D493CF2103925B20FAB_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD917F16A2A7DC9433D853BA728234532E129DA23_gshared (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<UnityEngine.XR.MeshId>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE9B60794E59CA13426569EAC4DF23A372EB48F3A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 * L_0 = (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9549AFF175F7A024B799196BBB8528EF3C5E5C22_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m7692487E1DE765AD4146104DFDD3D5533CFDA5A1_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9E9F47713F46A7EB96E1C0DF343BB1813D32582E_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 EmptyInternalEnumerator_1_get_Current_m7DC2363AD70CAE2D811B7797956343A4983222FC_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7DC2363AD70CAE2D811B7797956343A4983222FC_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m720E11B70CE482D92CC138FCAA45CB78C93CA3D4_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 *)__this);
Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 L_0;
L_0 = (( Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 (*) (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 L_1 = (Slot_t1100E8CA172ECADD9BE877E11205FB2D911CD319 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m94F320BA9C50FE55BE70CAC03CA326E828281DAF_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB9EB24E9295007F8D749A34105DD5CFF6611AB9A_gshared (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEE4CB4653461E89E312BFDA04A98E33F10299E6D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 * L_0 = (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t91959EE23CCDF5DE1BF257E8E15A09BE03F31246_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3B4859D5B01EDCEB665B614B3FD2AF825E6F7AD1_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1AD8DF394185F5C2694F3EDEB5DCC3BE07ADC66C_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_t2C1999AE6F0443949915B981CCF244872D2684B3 EmptyInternalEnumerator_1_get_Current_mE13CC7E6CF0F965682D7C2AE2D206BC4C9FFF224_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE13CC7E6CF0F965682D7C2AE2D206BC4C9FFF224_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD28A7B35768CF71C6ED05E8858AAA84AA680327D_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F *)__this);
Slot_t2C1999AE6F0443949915B981CCF244872D2684B3 L_0;
L_0 = (( Slot_t2C1999AE6F0443949915B981CCF244872D2684B3 (*) (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_t2C1999AE6F0443949915B981CCF244872D2684B3 L_1 = (Slot_t2C1999AE6F0443949915B981CCF244872D2684B3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m17274E68F02C3479CBDE821F3B9104D87D3B8D47_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF8C72050539BAAA7F5F4BCB7BE602AF3E715D044_gshared (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Linq.Set`1/Slot<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m19C5857FE255CFB9587790F72786D5920C85B9A4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F * L_0 = (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t760E1005CBC9E5E0C819F837E57F2A8C436CE28F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m68A807B344419CF671CB6E057C20C4FE52C7E8FE_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAF7CBAD60E75445F94BB6F613AC4971245E047DB_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB EmptyInternalEnumerator_1_get_Current_m19CC61AD1F0E9729EB94F8EFFF48E1D024A61F19_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m19CC61AD1F0E9729EB94F8EFFF48E1D024A61F19_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB106CFF18D5A264F90B1DA4B03C72A1CAAD107B8_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 *)__this);
Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB L_0;
L_0 = (( Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB (*) (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB L_1 = (Slot_tE06AE31079F7548E17944E1A7FD6875AD3ED67DB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3AAC57A3F639EE2B135A54A252603CC5BF798C40_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m91D2127137A8CB768BE7A8EF7BE5E5BD6B0C02CF_gshared (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDD9E1F12E61B64D3ED89872C84CF5AC2E0E47D11_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 * L_0 = (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB897B3FAE5CC27FAA164AB3DE3DCDCF087C2A019_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAE8211E47B2441C0D9449204272E6B3E7BD1D5F7_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB7B6A9DD32E42FBB7510082137DBEDA2AA7C7F73_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468 EmptyInternalEnumerator_1_get_Current_m4D0682A7B324ECC97CE88DCB5EE232F99659560F_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4D0682A7B324ECC97CE88DCB5EE232F99659560F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3B85520CFEEADE10B4B3B32C5F907D552C56C84B_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F *)__this);
Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468 L_0;
L_0 = (( Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468 (*) (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468 L_1 = (Slot_tA7D30BBE0E1983EC1931D77DE0458357B5A1C468 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mEFB1FAED51451BCA6D9D755862D8AC9F7BE24827_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEC628CBCC7C1BD09CE7CBE2DDA1232E3911575F9_gshared (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.UInt64>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB935FEBB1B0939F035DB80B7B56E6E9142093047_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F * L_0 = (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF394AC56C91D9383F1CB3D9D22505E2FCB1E808F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA51B11644D49853F5B42CEE7BDB725853D342B05_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBA2A65B51F2940C85D4010801CE1098E3CDB1C76_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Slot_tF19B24344565224A40EBF69AE775C757153B1467 EmptyInternalEnumerator_1_get_Current_m9F6AF61261F421ACA06624963E4755AE72F2D596_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9F6AF61261F421ACA06624963E4755AE72F2D596_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m696488D1862AEF439F5537E8F60C1B2D05801507_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF *)__this);
Slot_tF19B24344565224A40EBF69AE775C757153B1467 L_0;
L_0 = (( Slot_tF19B24344565224A40EBF69AE775C757153B1467 (*) (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Slot_tF19B24344565224A40EBF69AE775C757153B1467 L_1 = (Slot_tF19B24344565224A40EBF69AE775C757153B1467 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD6931AD6113B01AE7E7A018919607E2692B6B493_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m162E383E422AD677F8769D0040AB1D09A90E8AEC_gshared (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<Mapbox.Map.UnwrappedTileId>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD25E5628F216B6738694D560EEB1418CFF6CB890_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF * L_0 = (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAD4C22A44B8EE98CB8413DBE7BCDB5FF53AC5CFF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m754900382EE6E9D6E0117DC4D4463AF358D6CCE1_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5CB078FD5B3BA69AF8F050D9D69CE302408F75A3_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D EmptyInternalEnumerator_1_get_Current_m0E8D04BED63083E7040908E39A5CFFBFE07DCE5C_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m0E8D04BED63083E7040908E39A5CFFBFE07DCE5C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF4E78A16753BE9368D4D7C43F4813CABBD5038A8_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 *)__this);
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D L_0;
L_0 = (( TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D (*) (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D L_1 = (TMP_TextProcessingStack_1_tCB10A5934F69ED17BBB7F709D74D60038177414D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD4A36CFB0E8A6CCDD11EF1F0D8FCB6D90C693D61_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8F202DCB99D9DBF0769156563A2873E089818FF3_gshared (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<UnityEngine.Color32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0AFC80FD8D88A7D3F02B499C8E139479C7022F05_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 * L_0 = (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9A4ACF081614E21336BE05866F09F46D7465C384_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8206C987C2B2BD43CA5A48A59C639CAFD397E6B7_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4B6740D7D068055981AAD1356D9C564D5BFD2536_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E EmptyInternalEnumerator_1_get_Current_m0F6934BB688FCE890E53E9BD10D8A5A030162805_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m0F6934BB688FCE890E53E9BD10D8A5A030162805_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8DA38CF8414DB3F36A4B30DF9DC3444484E23930_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 *)__this);
TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E L_0;
L_0 = (( TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E (*) (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E L_1 = (TMP_TextProcessingStack_1_t091E8E0507335193E71397075A9E75FFE125381E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7DE6AA231F7D0E32CB52AD5986149CC37C4F9EBE_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6D3200859A0FF7B3C32B380331A160EF625C3FC4_gshared (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.HighlightState>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m94BEC20E364A17CBF2A6B136FA49F17E3DFB7EA7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 * L_0 = (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t871A57B7E76B82D8DDA9AD2292FA9CF3B6ED2C48_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF2B02985A8591CA90D89B733193FC0F191A21E9A_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m98E433DB5E1898054C2A498BFB783DD9E9694867_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA EmptyInternalEnumerator_1_get_Current_m7890122F5BAC56C6D5CE95BA098B6FAABDE1EE94_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7890122F5BAC56C6D5CE95BA098B6FAABDE1EE94_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mECEA361E7FA58A3E377FD54ED5DDB3CE756C494D_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB *)__this);
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA L_0;
L_0 = (( TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA (*) (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA L_1 = (TMP_TextProcessingStack_1_tAD0A40D35721F31D8FE2C344F705515FDF0F7DBA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m00B894F6AC54F0B4DA52E2C1D28DAEBD63BA948D_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m288ED840160B073F42F5C04CC2E51F1DAFC93533_gshared (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m595DB7520DF2E044F3D710670BF188E12F8A732F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB * L_0 = (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t46BB66F5B622007C3BDE6BDCC6B481FCB2FE87DB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5A26775C38A2F41F577782866DB2D37B04808376_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1654FDB93E74F0FF9445778451412EBFD9B16B64_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31 EmptyInternalEnumerator_1_get_Current_mD369CED74139275D6D0F0EBABC6CF6BC7A9E9123_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD369CED74139275D6D0F0EBABC6CF6BC7A9E9123_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m69724B163E570EEABBFBCCEC028B3AA8F9F9C2EE_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 *)__this);
TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31 L_0;
L_0 = (( TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31 (*) (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31 L_1 = (TMP_TextProcessingStack_1_tDB47EC8942F1479B2A92CE5501379911F2189B31 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8726C0A58C228D7B923A92AAA6D9D4A65DFBC4A5_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1DBDF1F714C6D9DD1CB898BA085A73E756A2D887_gshared (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Int32Enum>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m279A0C4DAE95217D9E38535E0F213CCE91D05D30_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 * L_0 = (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE34F30A1CECD6996A98BFA580AD92AC5C30231F5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0232DEE25560EB609A823BFA4BEE31472E9F8746_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m42BCB290E6D717FEAE069D57AF0B286D2F313C8D_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 EmptyInternalEnumerator_1_get_Current_m98C835F480ECA220FE3C56412DEF78E3A4CC882D_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m98C835F480ECA220FE3C56412DEF78E3A4CC882D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m31FC2296A125D478EA4166DBD05FB3A9A7E6AF11_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F *)__this);
TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 L_0;
L_0 = (( TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 (*) (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 L_1 = (TMP_TextProcessingStack_1_t7C34F5D4D2FC429E4551885C16EFDF05B8D2A6E3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m93BA2D06D27B00E8FCED286CAF1FE19B97D9F144_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m326F779765B4DFDF8CC0752B98D00569873EF752_gshared (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.MaterialReference>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2EDD302D8A71F89458E127DB2E01AE265325CA37_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F * L_0 = (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t79C68B07CB4ECC12A19D0F32EFF14A5AE23ABF5F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE23F4422128F6A3DDA82D500F3C8889D35580C2D_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3D11A96FDD93B612C1D655F831BC8935D0E16981_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3 EmptyInternalEnumerator_1_get_Current_mD2ED021EEB7B6BE3E73EC40906942D417415E4B6_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD2ED021EEB7B6BE3E73EC40906942D417415E4B6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8F96404A484ADBF1273567ACC07044C59E55ECB1_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 *)__this);
TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3 L_0;
L_0 = (( TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3 (*) (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3 L_1 = (TMP_TextProcessingStack_1_tF3FF8BBC59FBF64D4272CB8A0AEC73A9E51710E3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m23D7FE9719996702C9E1BC74E9FF6902FFB0E73D_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m78FEE438CDABCE8205BEB94129CB23AE086E0674_gshared (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8D8E20997F22E9AA9C645943B25DB42AB8C24DE5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 * L_0 = (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC90424A4974D50B3A6C7E545A09D1B874965BA38_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m440C5A1E1323F7807E0C6B783B3CB1712D668F9A_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC1229B90005A80D471454AB1C3B803CB70E79A94_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 EmptyInternalEnumerator_1_get_Current_mDAC9F7FEBAE75AAA2374906DF54B4AB5CED6D9C7_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDAC9F7FEBAE75AAA2374906DF54B4AB5CED6D9C7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m71F01A9E9DF15A4B368423FEB471CEB3FDEE1B7F_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 *)__this);
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 L_0;
L_0 = (( TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 (*) (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 L_1 = (TMP_TextProcessingStack_1_t0C5DDA1BDCC56D66F8465350BB1E55E94AAEBE17 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2EB243A080E185A6A989C7A10F4240FA2F420DB8_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA74D0FB0014DFF50C2733EFB8C5F3979574FC108_gshared (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<System.Single>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8AAB464920B65C327A01F418B2CFECB978522E56_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 * L_0 = (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC2AD79A8F9F5B656C88B4E9861CF91BD7FD540C7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3891CC02D00219763798B39559D127EB551A295E_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m508ED39BCCAC90EF0955F8FD7BEF9CBD0FB1EB92_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7 EmptyInternalEnumerator_1_get_Current_m2F7917773223A7BE198CE287BAD8DB8563EB6C26_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2F7917773223A7BE198CE287BAD8DB8563EB6C26_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE34D1FF09F376A6E523B58C8213C194171B0B23E_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C *)__this);
TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7 L_0;
L_0 = (( TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7 (*) (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7 L_1 = (TMP_TextProcessingStack_1_t09C36897DBFF463BB173E0ED3612A8D49A8EE2D7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9297D1F856F54E00BBBAADD1D713AAFB85FEF5A0_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA95792817CB675F8064759B3B6BA81DA80FDDFB7_gshared (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_TextProcessingStack`1<TMPro.WordWrapState>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA4E81AE0A09A0335F9EF71F3D4F115445A1CFAE6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C * L_0 = (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t92192ED1A6FDA10AB1F316469D4B12CE7F7C4A1C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9509D2C9BC54AC35AF7EAA06F8B9A7D0402C71A2_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m408548B3E248284345DA9C1DEB0E1D519CEFE26A_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 EmptyInternalEnumerator_1_get_Current_mF9EE1CBF8B6662781FF2F7B65AFFB4A0B5311C92_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF9EE1CBF8B6662781FF2F7B65AFFB4A0B5311C92_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4422EE9F988397D446A0A96ECB1F93E1B445886E_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 *)__this);
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 L_0;
L_0 = (( Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 (*) (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 L_1 = (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D97B5BF6503362559AE846070C29C971BC5517B_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7E3715D2C3C03DAA3A2C6BF13FBC0545C627F261_gshared (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFEFF1B344FA14DE1FEA3DF65D8180A5760DF6683_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 * L_0 = (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8AFC2B92888AFF425982019516267184CD495D43_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m51DB28CB1FBD2D10191527215DC3DAE6A393DE54_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2A8E034550E74C17E02E77C2141552E3F1CFFACE_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F EmptyInternalEnumerator_1_get_Current_mEB228B55810D2BA7A60E76B3356493CFE8EFA727_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mEB228B55810D2BA7A60E76B3356493CFE8EFA727_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE5AEB4D089F5CFDA423887BE79BE5802AD42236D_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A *)__this);
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F L_0;
L_0 = (( Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F (*) (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F L_1 = (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5F6CE8AEE1690EA52FACF432FB5B9C106682F7E0_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE48537FE53EAABAC97BED3FBD5D9C51AA5B9DB61_gshared (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m689921439C8CAAB0D8EECA4CBFCFB54547580236_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A * L_0 = (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB5AFE54EA250946E6A318A7A5F7E19C7D68F577A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDD5D65B5C2FD6128476B5AE07D4137BDC2C220C0_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m15A06DC2E55CC3D93FFBE4B33BDE250474D8A576_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 EmptyInternalEnumerator_1_get_Current_m1B5F6754CBFBD96D22CFBFB6E6F06DB1F78BD42E_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1B5F6754CBFBD96D22CFBFB6E6F06DB1F78BD42E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC6D74C5219E0584B05466CF24051B74031A027FE_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 *)__this);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_0;
L_0 = (( ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 (*) (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_1 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDE07B1CABF4A54BA4005757FBB0DFD1089724F1B_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9107A1560E3D0B3C5DBD5891DBDE9D49B9094DEA_gshared (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`2<System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCFBBE71115F5603CC1D6B24E6348659A677AF27A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 * L_0 = (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAD9CD963568578AF3F34F81DF4FD94446CB031F3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1A9E31934DC04D085B6DCCC883C25AF6E4C703E2_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDEAA67BEBD0012BF547101E061A290A82FF340BC_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D EmptyInternalEnumerator_1_get_Current_m353D744B16BC707D0FDD6EB7680B74E6EDE97B6F_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m353D744B16BC707D0FDD6EB7680B74E6EDE97B6F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m66B2640E7BAA751EA1EDDD86EFA95168D8BC15CF_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D *)__this);
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_0;
L_0 = (( ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D (*) (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_1 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2AB03B7044174D206D84BA65DCF21A68A0BB0D30_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m057B35A7377920A6C078392E8C91A59331B67E36_gshared (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9AB6F5006596645B00925FB44C1A53BCE552F4BB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D * L_0 = (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2FEC7076EA3327732AB00B9C6EF87D3585DC1F4D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEEF908AA1698155ED239C6EBE27D098F7F56392F_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2A70F4E21BA232B61B25684D35A0B0A9B35660B1_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 EmptyInternalEnumerator_1_get_Current_m22FB24E83251FB5BC7FEFB678FEEA9AE7CF68CA8_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m22FB24E83251FB5BC7FEFB678FEEA9AE7CF68CA8_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m39607FEAB388BED754E81824B2723A69902A251D_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 *)__this);
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 L_0;
L_0 = (( ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 (*) (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 L_1 = (ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m62944D3AFC429153462D412CFFAD9841184D93D5_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m743D60CBE47B5300B02FBB35C48BFFC6AB3E07D9_gshared (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1D85EBDC191956072E0307ADCFF8AB9BA778F850_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 * L_0 = (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0450917A12D0E767B91F0C253BEE7AE3F7ADDCC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m89AF44168A8BAB9F67BD419D90BB4E6978C9FB2D_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA422FB81E850670EA1957E45E4879FBE8FE60EC1_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E EmptyInternalEnumerator_1_get_Current_mDFE96761364D5725516F81DFC411FCBBDDD373A0_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDFE96761364D5725516F81DFC411FCBBDDD373A0_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m21605B78670AA7C5C42781ECEE2D55DAF61E323B_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 *)__this);
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_0;
L_0 = (( ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E (*) (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_1 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4A0C03F2BF565C6500ED0FFE7E1A43FD3440CD26_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4742F2F37D025EDEF787067FFCFC71CC3ABECC31_gshared (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARRaycastHit>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1FBC4669E09619CB076B3571967CD74451F69171_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 * L_0 = (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC72AB3834075A6DE7DA85565FB1F9160A91517A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6C6A8B78E1EA15CE883189E232EBDB84B4DBA429_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC83FA2E3517E1D204868B1FF0104FDCE21DCBED5_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 EmptyInternalEnumerator_1_get_Current_mF6946042B86BA13242864FC1D922783268889B7F_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF6946042B86BA13242864FC1D922783268889B7F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m90719800B0505549B5800F0BFE9E8CB208394A7A_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 *)__this);
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_0;
L_0 = (( ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 (*) (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_1 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFDB6A4C7E83184BD63E8855257F6BA0A0D4B94B7_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mACF107A66AF277D37ABC7FB6405FD2979E95544D_gshared (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARTextureInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1F713EF3BAC36A643541EDEED3E65DEDE266385D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 * L_0 = (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t51B68160A36F535F1C8E27FC200B95F1C530BB77_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m475FC7EAD10F55AED8260F98AF5C64479384B4B2_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m24A90789A464E6A09B4947DE9FD659F652B17696_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE EmptyInternalEnumerator_1_get_Current_m8C6044C3D8B4849AA50DCF14C60ECBE2DDB380C6_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8C6044C3D8B4849AA50DCF14C60ECBE2DDB380C6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3A27FEB3D065E0F6AFB3CD40427D4C5167BB3929_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 *)__this);
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE L_0;
L_0 = (( BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE (*) (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE L_1 = (BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m242B816E3C0D930D09F8C41C2CBD537B07E47AC7_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3860DE437E17713A6D869742D62E28E1FE05C265_gshared (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m45A48AF308C001A8DDB64BA4243E7F735A9BB4AC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 * L_0 = (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF20EE401E92C8A7DB8CE68DCCEEA94F2754681C2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2EEF03037CEDA9C9159C31829A298C337BD95C8D_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m15E7ED4E95BA7CC2F956AF225C96FB1658462E1F_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 EmptyInternalEnumerator_1_get_Current_m40609C6F8273F0C93C463693D55D0B98E289D134_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m40609C6F8273F0C93C463693D55D0B98E289D134_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE5ECA1200F57AEC6EFDFA79F37239A1F20CB6E16_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 *)__this);
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_0;
L_0 = (( BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 (*) (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_1 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0889ABF0FFE980B9D8D0E56FA47D079671866215_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB063B36EE9E495C6B2D0F57572F53EF5AC7A80ED_gshared (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.BearingFilter>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m51A544D21097AB5C6CAD9D8B5FA1388DD7972E42_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 * L_0 = (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB2E2041C52B38222622A42792170A7DCBE68AF74_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA9F69DA5C0F4CBD2D6BF99BA147EFE4E159EAF53_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1408340B4A39C17B8233ACFC64B72606A3687763_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 EmptyInternalEnumerator_1_get_Current_mD66092ABFDC4197AA6B82331B67E2736F7A69946_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD66092ABFDC4197AA6B82331B67E2736F7A69946_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF93CCDA049C5FB19069DEDE88E3B1E8351D9ABF4_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 *)__this);
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 L_0;
L_0 = (( BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 (*) (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 L_1 = (BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m705F1115A1F12BCA748D8B9FCB0CF49DAF54F17A_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4A31E85A6847A42E5540A5CDB1B39E5EABFC9362_gshared (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Numerics.BigInteger>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m14875F5EBA1A5945787A5C9213BCCACAC8A23E9A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 * L_0 = (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7E1D847FA9D47A196EF1BD2743914BC16B215AB3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m95D53FB57A646E40AD635168456402A6B15CB9D6_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF1078A6183FC82FD8D2141A9DA015B34AE5EECE5_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_get_Current_m77F637FC174F9D55F2B928E162E0DFE9C32156C4_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m77F637FC174F9D55F2B928E162E0DFE9C32156C4_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B2D443656E15F3693C1E4F35CA5A382E5D27C81_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C *)__this);
bool L_0;
L_0 = (( bool (*) (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
bool L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m99C53181F39E2799920C70127A3997277DF12667_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC4145B4BD3BCB7C2C6775A803A73BB6E4A76E416_gshared (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Boolean>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m948D2A2C83275630AC7CD522D52A91010E835944_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C * L_0 = (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t56875141BAD686F8D3B9957E154224C010B1732C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC5EB4AE1FFE146553D19CE6041EA9C5942F31E26_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m93E59ED068D805A1B4A5C3660A74D9B6C64A74FB_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 EmptyInternalEnumerator_1_get_Current_mA2316DC31D5E2D8BE1A2A4AA9AE8A2A968D8A198_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA2316DC31D5E2D8BE1A2A4AA9AE8A2A968D8A198_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m578BE4324D6B12E7D5749F816614763644CEBA41_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 *)__this);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0;
L_0 = (( BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 (*) (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_1 = (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m16120CFC256CA1DEA5FB37D851E11D42F3302E60_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m57ABCB97FF3FBC29D622E724E53E5BAF9BE92761_gshared (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.BoundedPlane>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0695C7C94206FB292A37B6C01A7B52C17FB28E26_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 * L_0 = (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t096C07C41C63BFF40096EC3C1E2CF3E6D32DEAF3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2792720BFCEDFA486DAE8FD94F1AB77BCFCFB158_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8DF0995CFD1029B8572BCF077EE1E1E91ACBB692_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EmptyInternalEnumerator_1_get_Current_m48183DDBDFC36C839023D72E5A6161D0B47DC725_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m48183DDBDFC36C839023D72E5A6161D0B47DC725_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7C3A8E6D67B28CE5D5EAE97BFA097C9D116331F3_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 *)__this);
uint8_t L_0;
L_0 = (( uint8_t (*) (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB2A8596263A5E148F3554AB779129484630F5567_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3A1B42194A163EEE572A150B0C165FF7BA4A90A2_gshared (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Byte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0BEBD43F1D2948A2FBE34DF0BD49CB4BA826E31F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 * L_0 = (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE274EF0424898DBF5EC129B311A01C53341F0598_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC7F97E8E5A442635C5F7DBEFA0E0CFE7C49219B2_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCACEEA85A93237D4A47949AB18F31399240832F3_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EmptyInternalEnumerator_1_get_Current_mEA68B8D54CDC82965F6056F9237B3B394FA65652_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mEA68B8D54CDC82965F6056F9237B3B394FA65652_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFF15D3762C0E17609B51C68B0DB1F3F15765C996_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 *)__this);
uint8_t L_0;
L_0 = (( uint8_t (*) (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint8_t L_1 = (uint8_t)L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mE0C29FF02A0CCC30563F89BE41D129F40339588B_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA32697178B46538EF15450B05286B28620C32CD5_gshared (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ByteEnum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m70476D12A2C48C72691536368C0073747B3AAE69_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 * L_0 = (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0D0C54D8936D5A5FCB7C8979BEAC44DA515DD2A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC09197255F4FE7C1B85C5F3ED184735CE30FC26B_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEB5E40F4FFAFC9D7B782FB60154596C065C3DF7B_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD EmptyInternalEnumerator_1_get_Current_m3E2BF147117B13FD3596EE8FD9297965878FC8C9_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3E2BF147117B13FD3596EE8FD9297965878FC8C9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4A451FE7CE3BE71EEC78D3803F28CBA4ED3AE64B_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 *)__this);
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0;
L_0 = (( CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD (*) (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0209ECB08DEEA687DCC863B458F41F5F9B7F29E5_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA3E861CC0DE28A9D4B4CB9859396A75E22088B40_gshared (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationToken>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFA980A224BEDDD2566950803322C82676CDBBC6D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 * L_0 = (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t260B2DC9A6E06AC480B93F71CB9030E830C1BBC0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA9F715CFB175E6DDF330F8F8A63713657E7DA1D8_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m926659825C133A229A83CB1D209ABD631CB5C96E_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A EmptyInternalEnumerator_1_get_Current_mA7CE489A5C29F543686F36E6CF3F7B480397A355_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA7CE489A5C29F543686F36E6CF3F7B480397A355_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7817BB939A8CB696FE59083AEF2F7E84C0FF8512_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B *)__this);
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_0;
L_0 = (( CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A (*) (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_1 = (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5612BE162533ED1CAA3E5CBE8E542A03A5FAB6A0_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7EB2BF65D8D1FCE6713F5E4C9871F333B139DC1D_gshared (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF931742CAB7A07D402EEB6608BA2CF2488E1FA10_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B * L_0 = (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t68965D45121004F90196ED4A22A337D374BB896B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5C56DEA8341F2034B9FD459BDB70EE59FFB5A79F_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3F1DAA396F8C5CFFE5638ED3D96A20C7973A4B37_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 EmptyInternalEnumerator_1_get_Current_mB33BEB9F79FABBE14A9A18AC087F696A880E3E9C_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB33BEB9F79FABBE14A9A18AC087F696A880E3E9C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42160FEFEB8A48477B696433FF0C6A7FF44A4255_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 *)__this);
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_0;
L_0 = (( CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 (*) (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_1 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m570E46FCA636E9E40AB28FD38B8CBED36D8BDDC9_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8B9FE34CA5C4BEF98C2E50F12521D92BC53FEA42_gshared (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.CanonicalTileId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEA364873259AC6D19C2B7D0574BFE2E8AA4A8FEB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 * L_0 = (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA76465A7E6C217CD044CD47D82D140E8882B8878_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0532EB84A6832ABD8B2FBE2627D757E82ADF47CE_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA0E5E6248130440273BFD4203A18BD1F205642CD_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EmptyInternalEnumerator_1_get_Current_m65EEFA48395680941B24798D1ECD1D1B46FEA9DB_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m65EEFA48395680941B24798D1ECD1D1B46FEA9DB_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA1073F10CB1E752287540E73325EA1492E4FDE24_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 *)__this);
Il2CppChar L_0;
L_0 = (( Il2CppChar (*) (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Il2CppChar L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB954E1AE8B1906054237EA7E0D54EE145DE911C1_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA067D3ED244EF02CA7A0FE21CB34E6FC568AA1E2_gshared (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Char>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEB01E4416A099531930617572954C214EA630E88_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 * L_0 = (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5FFF1E7E631A8659D5EC54D85E3D496593F186F3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDE3B70E8BB13D9BF2AB5CED271A8FAA780FB531F_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1279F4F11AA3F1EC1BA967F005B8535DE881FA4B_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 EmptyInternalEnumerator_1_get_Current_mE3224B4997ACC52C5D68EF3507392CC9DA77D5F6_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE3224B4997ACC52C5D68EF3507392CC9DA77D5F6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA462A705128A431EF9F192D81C26FAF9E7D854A6_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 *)__this);
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_0;
L_0 = (( Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 (*) (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 L_1 = (Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD1F2553BE02F846C575087F2481FC9639E5D520A_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9D282EEE8BD65D0B8987DDD188179DCB217B0C76_gshared (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8C6234AB4842320C8B2D90182905A10246620E96_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 * L_0 = (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6B949F196DF8432C2FEF83EDF3E97C2603988BE9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1855E5589D177B61886E11E6AB1F7AA312A4B0D7_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7CD9645D44956137E52548B6FACF2F9CE3F9CDAF_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D EmptyInternalEnumerator_1_get_Current_mC70AF1ED0DE63DDEC8939CBACD803EBA629CB807_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC70AF1ED0DE63DDEC8939CBACD803EBA629CB807_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m63A45906A5795CA4B955EC3185FE2B5AA1DBBF54_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 *)__this);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0;
L_0 = (( Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D (*) (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_1 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m31BF640C4FAD2A31B299E29C3EA7DCE0E26CCB39_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC742E29A956142625CD2DEC271913704C9D37F52_gshared (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0D123137E06BB4FD634A7DCA130EBB6546888A56_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 * L_0 = (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t417E627D5E362F858F8946540FD27F4E47CFC498_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC1B1D1EB65409F99D2D9D22C140940299D87148C_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m22BBEE2BA183D62EC0D869A31470ACAC1C8227C7_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 EmptyInternalEnumerator_1_get_Current_mE3824CAE0346F144E7F9928D845B84D6064EEC8B_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE3824CAE0346F144E7F9928D845B84D6064EEC8B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14214E60816E7ABB1481CB326F5434F3F70A263F_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A *)__this);
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_0;
L_0 = (( ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 (*) (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 L_1 = (ColorBlock_t04DFBB97B4772D2E00FD17ED2E3E6590E6916955 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m44444F487AEABC96F5B7E6E79F054E1045806598_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m65FDF497A18838B43F83BF73DBCB7A96CC568844_gshared (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB5A1E16B9C6736A1E05A7A26590B7E098A11ACBF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A * L_0 = (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE3DA363E49EC2BF1E5550AD8F59DD953BEEE9D0A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8AADFA37039AAEF6B17D426EE426BCA60CAF5D27_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m24938BD0C11B92A373C202D2AAFB9D618CF95ACC_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 EmptyInternalEnumerator_1_get_Current_m5EBCBFBD8E2EDE750C4671ADF5995B0CC31F9282_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5EBCBFBD8E2EDE750C4671ADF5995B0CC31F9282_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE1AA7D27864E741986E4D1CB012E00B01B2941ED_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F *)__this);
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0;
L_0 = (( ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 (*) (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_1 = (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0A77D9BFC28FDFB4638FE9821643F2B5546AC90A_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAF48900CDDFFDD29D45C7021C62B4F527E042CA9_gshared (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA1D2D512B35E1703976EAF41CF66AE09F6936DFF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F * L_0 = (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tABB2AC5E19749F141DA5AB6168352CC90112FF7F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE347AD51544E87EA9F80D6161F785351CBF07852_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m047E9542F0C3B29FF79FE6B7B41FF0CD9CB5895E_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 EmptyInternalEnumerator_1_get_Current_mDAFFF9159679A5153896A6D737A32165A87BCCBB_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDAFFF9159679A5153896A6D737A32165A87BCCBB_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8699767639A0BA790088CD1CC0E11C41BD4244DC_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA *)__this);
ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 L_0;
L_0 = (( ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 (*) (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 L_1 = (ContactPoint_tC179732A8E0014F5EFF5977ED1ADF12CF14A9017 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m597EF72300E46D59F95B44755B6B99C7CD58E170_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m792E472BDD19690F6C668B8112E1531C1EAEEE6F_gshared (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE285129A2AE0B73BB7B0DD93FB2A5D5B520C886E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA * L_0 = (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD302D23E4F553F7AAEE30C52D2EEFEB9F7A54ACA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m65399029C943AE09FEBC9D94426FAACDE749F0AB_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m683DB66BEFF311DBA14AC34AA2B05ADA1F9B5C53_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA EmptyInternalEnumerator_1_get_Current_mADDE6EFCA7FB98E7E65C7545AB836A3882330EF2_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mADDE6EFCA7FB98E7E65C7545AB836A3882330EF2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m165473E3EA22B95CF8BD250FAA5CF22A48F8DE79_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D *)__this);
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_0;
L_0 = (( CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA (*) (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA L_1 = (CustomAttributeNamedArgument_t618778691CF7F5B44F7177210A817A29D3DAEDDA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3CBE48B885DDAD02FB8E5083C2E1C8F40B8B8B2B_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC36420095833B759137A970620580479771D693A_gshared (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m65A7E828BEDCC094C617AB7596717884C43291A3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D * L_0 = (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC26AA0681D8DFAC1A9F431D4E08D085F23E41E3D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9D426D475136878A57034E9E90B64A4C6A50D0F1_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m977B1378E1DC1C395BD0BC6A1BA066EB32059D70_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 EmptyInternalEnumerator_1_get_Current_m9F37B386C0EFE05CEDE77B2C83F46520DFC8AE4C_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9F37B386C0EFE05CEDE77B2C83F46520DFC8AE4C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBD085E6179B5758735BF49C2ADBA730033E0E340_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E *)__this);
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_0;
L_0 = (( CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 (*) (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 L_1 = (CustomAttributeTypedArgument_tE7152E8FACDD29A8E0040E151C86F436FA8E6910 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2220F4A52930C2FDABC35EBCFEA97C0D8A7D0997_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0BEE4D19A8D87726F9E8FC5E4B05D2FBA119180B_gshared (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB08D614C1F7E53FFDC1BCCA2AF6AF5F3AF76B9B4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E * L_0 = (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6518414A85CC07AB5F8FF8051D384C1067C41C9E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB1EE82A291192267B59F1C64DB1E41D4858EC75A_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.DateTime>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2DA95CA45560A86F52251C815E0C3901465C55F0_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.DateTime>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 EmptyInternalEnumerator_1_get_Current_m0A1A910F91FE790B1F5B6DA66C26DE5E71B9B3D8_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m0A1A910F91FE790B1F5B6DA66C26DE5E71B9B3D8_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE9203BFF56F61F0B710F3356D31BFC4B55862F67_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 *)__this);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0;
L_0 = (( DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 (*) (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6698DF124570E1BBB86D7FDAB761DC21D99778D8_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m15D85AF51F695CBB3B8FC2C6434F810EEC2F73E9_gshared (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTime>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m04D116D9C30C68798457E1FFE9FB2C715E722708_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 * L_0 = (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t726E3D54CC64D8EC3060D4391CC46D8E54068656_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m62FF6ED471A0B8A861CA91FDC240E929C8B0FA7E_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF6661ACBBB4A1A32EEC9D98656F46DC65C8E8C7B_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 EmptyInternalEnumerator_1_get_Current_m73DA76779593ECD04DDBF3C26CC05CD24D7886B9_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m73DA76779593ECD04DDBF3C26CC05CD24D7886B9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBDFDE6F55503F84995B5F9B8637C4C928F168E13_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 *)__this);
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_0;
L_0 = (( DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 (*) (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_1 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAE0B6C614E404DD6041809306E96C051C0F17053_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB00D81465F51245F230F4A51A43005FCE4868CB6_gshared (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.DateTimeOffset>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD1FD8B01C78539AAF8E1D5ABFD6EF46B04FECBE5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 * L_0 = (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6503CD2D7E6C44706DA1CF9DAF027F7BFF351C51_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m046C5350D0EDEBDA1EEA228A0A7514267A4DD731_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Decimal>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m171188A5E2EBFDAF951FD11EB571E5202E111B3C_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Decimal>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 EmptyInternalEnumerator_1_get_Current_m03C30054ED8E2427E3DE1E1BCB87D07891AD4BF3_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m03C30054ED8E2427E3DE1E1BCB87D07891AD4BF3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCF1658E56574360CB32AE61877F8E92F4C1ACCFA_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E *)__this);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0;
L_0 = (( Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 (*) (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mBA946D710729975C6FB365483E0ABE592C11DF27_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0E59439548D0074870FEF6CC97D158DA615FE080_gshared (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Decimal>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE386D2557A54CBFB3153019F3274C3D72E144BA3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E * L_0 = (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t10B6FEF1B4ABCF7096A50C987CB11542CE024E2E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEB6D164D68BE1BBCCA07B26CAF92C3154114ABE1_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2C824C366F1841520E1D6433A2B40C1E4ABB6630_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 EmptyInternalEnumerator_1_get_Current_mF0977453D673D91BE8C9B8CFC6048D0D229D44EB_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF0977453D673D91BE8C9B8CFC6048D0D229D44EB_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m49061C39846F4C0C9B340980AF176B3CC56CC7B3_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 *)__this);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_0;
L_0 = (( DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 (*) (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_1 = (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3B30B5889476A9102B01B91B66D8E246569E0D33_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC03AE98EA13DC2D0327793803C05E8CA2C2A1E2A_gshared (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB51F5506A6DA5486245A7B28098A52AECACA6FAE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 * L_0 = (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA204D365C3C1347BE86955967974285971A30861_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m359C7763710D9602B248BD587806FC8533E5830F_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Double>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m551C410B35C0ABCB060613EA978FA56C164768B9_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Double>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double EmptyInternalEnumerator_1_get_Current_m2102B98CE42D70B926F9234CA8FB646ECBB7107C_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2102B98CE42D70B926F9234CA8FB646ECBB7107C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m98C06413BC7D0341F9E229657ED0680C20D75AE8_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 *)__this);
double L_0;
L_0 = (( double (*) (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
double L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m31A3DCC149BBBAB3AE17834DC30D2E56A25EF8EA_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB00F3A8B3DFD4042E2DBE76AE0357EBD810E9D11_gshared (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Double>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF8917D5A01F7CC5F0B4BC2A4236E0D3E273E4A60_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 * L_0 = (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1170CCD0BDFDCF58482AAF758C02403FD74427A6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE71824AFA965A949667229008EBED1C3C244F28C_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0A298E4CEAD20134FDEA2CA2ADE6B06C6A3EA3A4_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208 EmptyInternalEnumerator_1_get_Current_m32C2FD5AAD074ED196296BBD4087E56A2F711D90_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m32C2FD5AAD074ED196296BBD4087E56A2F711D90_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBD1A59E04E81D89152E1CDD1A360C42543D9DF3A_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A *)__this);
Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208 L_0;
L_0 = (( Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208 (*) (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208 L_1 = (Ephemeron_t76EEAA1BDD5BE64FEAF9E3CD185451837EAA6208 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1923612A7DB5581528EF95BB4988504751405DB1_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m825FFD4FF07C7AEC2BBA3C11BC896A1795A4616B_gshared (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD0954A46AFC33C7F4A7069CD96DB1FF15CB70A9B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A * L_0 = (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA189556638C04823DE8AE67ECE13105A473F9F2A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m35374D0CF14E1B3EC11380786F7ED0CB43C2EA06_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC693E4D0CC9D7FDCC4E74039840718D818CE8DAC_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 EmptyInternalEnumerator_1_get_Current_mA795A93B9FC42021395276E56D8888DC12F2D7BF_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA795A93B9FC42021395276E56D8888DC12F2D7BF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1ACEFFE4B9929DB41D3418D40DB14BCE09D250BE_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE *)__this);
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_0;
L_0 = (( GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 (*) (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_1 = (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA1BEA87D4F6050AB99E02FF4B09ECFC7301C1DCA_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m658DF765893915E86C68E67D716FA0775E2E235B_gshared (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Runtime.InteropServices.GCHandle>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF13BD8898B87738CE274C34FAB757524DEE32DC7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE * L_0 = (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBC0574AADD31054875385E2CACE9BDC921EDEBAE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0E2F2ED89E1610D074C533F951AE7B47483A1920_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m49BD693A84FF9BE7AECF00BD588A4990EA45BB07_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 EmptyInternalEnumerator_1_get_Current_m5ED3E96A6BAF7DF5D75049322A3B604DB45DF592_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5ED3E96A6BAF7DF5D75049322A3B604DB45DF592_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA24A6E4FF9E1CB0A2293D01EFDE193239E70F070_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 *)__this);
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_0;
L_0 = (( GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 (*) (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 L_1 = (GlyphMarshallingStruct_t6944FAFBC02A2747B49417BF23EBA14EB5FE7A19 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFBB2259E42CF82BECA0FF958C672D98B9654497E_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAB43ED196ABAA449989F115390F070858972693F_gshared (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0064966266D868AF20901E43AFA9C6AC38DD73A1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 * L_0 = (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA2F1098C38570C732899793422234C603AD0C474_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3A74C8057BCE024C51E38E97297B100FEBA47E16_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1C4CF8B52DFAE42377018169C35896DF9E9A3BC2_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 EmptyInternalEnumerator_1_get_Current_m68E9F752687178C5E4D395EBF9D800AD2713D870_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m68E9F752687178C5E4D395EBF9D800AD2713D870_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m98F295C06B90BF1E67B0B766A94D6AD9203A9D89_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 *)__this);
GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 L_0;
L_0 = (( GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 (*) (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 L_1 = (GlyphPairAdjustmentRecord_tAD8F88FFC3A19DFDC31C2E0FA901E7CEAEE8A169 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD1EA9AA7B4BFFDD37CDD49D9DFB93C85D968AE1C_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m07B7703D386D4814C4E998B0978A82B24176887C_gshared (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2F977DB7694149FA55CA41DCD40F48F9BF7AEBAA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 * L_0 = (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t72E7465F4AD42871678352D33B86554A2A5115E5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF48E451D1739419FC597A9759AEC8C7D27FF97B2_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8C23F234AB53E3B694430F1A927F1B34F0F98231_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D EmptyInternalEnumerator_1_get_Current_m99AA05DFFE4D90DD66E8A5C73813D6B82E4F48F8_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m99AA05DFFE4D90DD66E8A5C73813D6B82E4F48F8_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD082C6F1754E836EFE6CA211E976EDC2E1961FC5_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 *)__this);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0;
L_0 = (( GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D (*) (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_1 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m385F2DF791441209553F522EF5F89CFEB5F28070_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9AFA5FB89253CA3D7DDACDF1020116F0BC40225D_gshared (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.TextCore.GlyphRect>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0B6AF70F3871E55D3E5C0A9ED6BF8FAD7C04E767_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 * L_0 = (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4444406A428AA3BE3BB75474AF5C0EF6B3ED6102_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Guid>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDE209D9B70ABD55CD0B70D5FA35EB2C5BEEAB4A5_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Guid>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2230A093380DE661E15D3F3E83F1C878E3FD795D_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Guid>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Guid_t EmptyInternalEnumerator_1_get_Current_m23E227EE463EA88CFEED9909F40549F74B7C99F5_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m23E227EE463EA88CFEED9909F40549F74B7C99F5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Guid>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4EFCA83521CECCFD6BEBC8C6830235F7DDE2F2A_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D *)__this);
Guid_t L_0;
L_0 = (( Guid_t (*) (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Guid_t L_1 = (Guid_t )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Guid>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m588F511E19C7B5AC48EE386854B4D3CF7994ADEF_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Guid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mDE5B450FD8E54BD788289B8B504676C797EE8752_gshared (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Guid>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5F78C9B5DC93BDFDC96796EF2F422FC231E779A5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D * L_0 = (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD68414D16589E152F8316B674FC004E6E2F8335D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5E63741D7C39CB0629B308E0FE0E7C250FDF053A_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEB954B3C3339118167F7F6766DA48C2757374496_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 EmptyInternalEnumerator_1_get_Current_mE46D573F775AE56CCC5953D2BD54EC9FBBEF2BDE_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE46D573F775AE56CCC5953D2BD54EC9FBBEF2BDE_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m904528E21769DBE8ECED245BA57BE0F8C77D9307_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 *)__this);
HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 L_0;
L_0 = (( HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 (*) (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 L_1 = (HeaderVariantInfo_tD03E1F7AEDDB87537B5002F0B7A5455D31B297C3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7D0B4FF783F89E9D3F9BA264F60BDC5B29EEE09C_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6D5DF2A12C698C46DA4421E8957F5D4F99ACB0BB_gshared (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.HeaderVariantInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m82E01020D98AE87825DBC49D33D7D8B255FBC05B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 * L_0 = (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t17CB0E6F2F9E76CD1BF00B847D7CE0B1D6AE7C29_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBB65D0702BB82C4A58A77F5D129DC6F59273AFB3_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m1C5F049D9246967987CF7FF810CD3B22C2375834_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 EmptyInternalEnumerator_1_get_Current_m939CD4CDE6A6900D73FC006CBF9684C2028A6440_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m939CD4CDE6A6900D73FC006CBF9684C2028A6440_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF625D94878255D07C2CBCEE6EAFC67FC29189C7E_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 *)__this);
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 L_0;
L_0 = (( HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 (*) (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 L_1 = (HighlightState_t52CE27A1187034A1037ABC13A70BAEE4AC3B5759 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF75A117FAAB80302FF34050DC8EE6ED0D234514B_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m167265D3DFB3E55C64736F37105DE728EF7DBDE1_gshared (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.HighlightState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF094906CA7A1E40C607CC994794611AFC3CAC270_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 * L_0 = (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0E16A18B0F7FD392B84BB9BA1BEA5B5878B12729_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9836CDE7A5D393362D1280D68932210EE41B8917_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m73257CFA44FBD99C0A503A9F382A9952CF1C229D_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF EmptyInternalEnumerator_1_get_Current_mD885BAFD1DD4E7DE7391D5E19729EFD09571C29F_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD885BAFD1DD4E7DE7391D5E19729EFD09571C29F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1DD502060BE63702D557ED1353D9C529D1FFB05_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 *)__this);
IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF L_0;
L_0 = (( IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF (*) (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF L_1 = (IndexField_t28DBF72DC6031998078C6C49D756E62D6B5AFCCF )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mCBFC40732FC061CEB7A3CB06A449BDB93BFAE8BB_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m431F369CBCAA8B8E45E6EAC0448A32F0581E21A3_gshared (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.IndexField>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m011D04E43F5300C379D18AEB8DA6AD4B51E19471_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 * L_0 = (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFFFF16486E3A6C307CE11273FFEF980DA7353226_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB1797B0D8B2A61C42E97B3E58979D60FB98B5E9D_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mA072574BF502BF8FB85B4F4BBC05BC299A07D7D6_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E EmptyInternalEnumerator_1_get_Current_m046D09CBF73AC6782BF00CC43E2370163F408C02_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m046D09CBF73AC6782BF00CC43E2370163F408C02_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFB43FD6DFC21946A826C6A5738956D32C733F4A1_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 *)__this);
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_0;
L_0 = (( InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E (*) (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_1 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m72050BDB7281A5F9FA10FC70F491940C48055EC8_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m001E0DE8EF5248AA6B7E7503BE2B8666BD8F25BE_gshared (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.InputDevice>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m520D0E667080001337D34EBAEA9F4EE6C41A49CB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 * L_0 = (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBEFB2B424526E9EB984C6B2A63CCF226C055BAE6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA0B3904C05EEE3FB4B004A8511C8577896918AE1_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF98935D78A6E48013773E0D5EE400855D8EF9861_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Int16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t EmptyInternalEnumerator_1_get_Current_m5A9BB2D38D3031E7BA4F311369AAE2AAA5D5139D_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5A9BB2D38D3031E7BA4F311369AAE2AAA5D5139D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9393418FD91300D1ACFCA85E2A56EB5FC9327E9C_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD *)__this);
int16_t L_0;
L_0 = (( int16_t (*) (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int16_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m22678D3C04E90FC88754CA654112DD40AA1CE83F_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5EE36EFFC15DA802ECF8237972687CEE47A89B71_gshared (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int16>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m416C6FBD7508322425F751C416E60EAFB20C0970_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD * L_0 = (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF15A3752DA216D09FD5F129496CF55E18CED8CAD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6767DB3BC7444FE32795C5659667695C6D80D3F4_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF3C0043A7D17D1DB2D56D97F14CAFD75968064A7_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EmptyInternalEnumerator_1_get_Current_m4F3563646D16294940D73C81AE6F2D0808B6A492_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4F3563646D16294940D73C81AE6F2D0808B6A492_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m474E2080C369567C5191FCAC8C034402FE668EEA_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB *)__this);
int32_t L_0;
L_0 = (( int32_t (*) (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC544C9FA1B70F03712C117747068244D5B1AF21B_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m269F28E5A54093BFCE7107046A980CD408934357_gshared (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m77A18394FD28B9E16BEC360C760D960F0FA1591E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB * L_0 = (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t183B07D6D966587E51B7703F377C4CA1A11B89BB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m062FDC9B6A895E2160587F07993DE5F7D6A6B1A9_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m22E5F7A65868C1840F72C2CF047C694DEB87166E_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EmptyInternalEnumerator_1_get_Current_m79A0567D685C09F9C167B435B011D75DBC8E7097_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m79A0567D685C09F9C167B435B011D75DBC8E7097_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB686508FBE41A8FE38AAFCF6253518FB475BDE99_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 *)__this);
int32_t L_0;
L_0 = (( int32_t (*) (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int32_t L_1 = (int32_t)L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9E592256A7D80536D1F72DBE64EDFA3929296C1F_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6DBA7833F827634E3F3241DFDD214436792D7B2A_gshared (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int32Enum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m42FA6C814C63B7155C41047BBFCF1304625BA2EA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 * L_0 = (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1433AB7767B1D7B05E3BD32D17D5A5C68E546953_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCD9C4D03BCA6DC0934BB087ED9EE3E2CD3ECFFDF_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Int64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFB9B2E2C9A67D952DEADCE5C69F8503F832D6921_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Int64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EmptyInternalEnumerator_1_get_Current_mA1E263254A189E58ECE597C994ABDE956A9C180E_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA1E263254A189E58ECE597C994ABDE956A9C180E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m375A785ECA81721A259B4236372B0044AD63812B_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB *)__this);
int64_t L_0;
L_0 = (( int64_t (*) (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int64_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F5B6612DA9F7AD7257E12D04F54FA1C08CA71B7_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m897B88EE1B4CF3F1BE200AFB41FB21615C294DCE_gshared (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Int64>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3A771021C15EC7C84F4C1AF3A2AE8E81175DF932_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB * L_0 = (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9073B4D4D4F8C8EE06ED64F5961DFC02616F5CBB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBF652705BF864D2AFD0334F671FC4FB92A22D5AA_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.IntPtr>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3502D0575AA72043D1AD0A590FB5A5FE6D7CAEF3_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.IntPtr>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t EmptyInternalEnumerator_1_get_Current_m7AC2BBF060E600CDF4C5BE08F6188FBFD0A6C4B8_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7AC2BBF060E600CDF4C5BE08F6188FBFD0A6C4B8_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF283C81E56BBB9D3F2818086640AB793690332E0_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 *)__this);
intptr_t L_0;
L_0 = (( intptr_t (*) (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
intptr_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1021FBEFAD9EFCBCD54F10B5CDA6DCEFE262F967_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m346BD757A32DE4FC9ADAD5146C85FD601B8D9066_gshared (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.IntPtr>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF16192476305B9BB8F6BFA8E95E3A5D1A1BE9397_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 * L_0 = (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4D184FDE16ED45A8E86776C9F3914F335727A9F3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3B012B7ED3798BE576B2F1A261BE321E06D57580_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m459492C8C04EB8608D4EFE06D2F769B97B5FBBC6_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 EmptyInternalEnumerator_1_get_Current_m7B0505C6C40CF9CC43C3F0EB3C67FE7BF455F1BB_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7B0505C6C40CF9CC43C3F0EB3C67FE7BF455F1BB_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8EBDD623602047C04F8FB948F5406D4ACF67D0DC_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA *)__this);
InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 L_0;
L_0 = (( InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 (*) (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 L_1 = (InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m03CF65584B4D9DE0D36272032CE112142D72685F_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m51FC677BC53F23DCB96A6502C7C99C1BB5BCB2AD_gshared (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m626F4BCD1ACCB6E7036724915B06F7524B6B4ACF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA * L_0 = (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2381C5689C58EA562845E104791FDF9FEEB438FA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9DA5F47C9A71E17A2DF7B7EB5B55E620BBACA4A5_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB16A3C259C75D7BB50C7A492F0490D245A272413_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C EmptyInternalEnumerator_1_get_Current_mAD462A00D17B39BA5B83496662EFFF28AC93AED0_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mAD462A00D17B39BA5B83496662EFFF28AC93AED0_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCAD52E20E912FEF8CB6CC1F56C955F3478139806_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 *)__this);
InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C L_0;
L_0 = (( InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C (*) (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C L_1 = (InternalEncodingDataItem_t2854F84125B1F420ABB3AA251C75E288EC87568C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8A5F8DE0AB4C341DEE964EC9A0ABBF920003B9C4_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC5F0247513DCE8954868144CB5E4253A2DD07174_gshared (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5DF086DBDFA4E87862181EF9F3FD00245CE4D6BF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 * L_0 = (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF2F23339A1A0382CC15047A7956A4CF88AC69608_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5E989C67256697D573E3A3A8E6BC744051E0F1B0_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m71B2191274E1C0A33B50D82E5F441C404CFE2E0B_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 EmptyInternalEnumerator_1_get_Current_m60DB5A9E499E7E942D3B029555B081E555DCEAEF_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m60DB5A9E499E7E942D3B029555B081E555DCEAEF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m54C583E6A093E76FA93432A2DBB911F5359FE5D5_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 *)__this);
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_0;
L_0 = (( JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 (*) (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_1 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2247D6DA43DE0875CD19FD0B662B1DF219B5518D_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7676D5082A481653B7B32107B15324AD04EBDDF9_gshared (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.JsonPosition>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5CAF8344087CF71F932568E22A07AE9DA8A1CBDC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 * L_0 = (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t27A3A90F34EB36AA0D79713BAE45018FDE8005D3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m57077AF478A1085F1FA57312D23718EC9F6AF58C_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF9FF175B3E7CDA97C8A3EAF93547308C669A7102_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F EmptyInternalEnumerator_1_get_Current_m4D3AB2A9ADBFB3CB068F0532A41447C9E450A75E_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4D3AB2A9ADBFB3CB068F0532A41447C9E450A75E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m69C1A98305924139E1C4D25F02CFD0D557EF7224_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 *)__this);
Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F L_0;
L_0 = (( Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F (*) (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F L_1 = (Keyframe_tBEEE79DF5E970E48A8972FFFCE8B25A6068ACE9F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2E5043580D68EBB4DF28E7C419CBAE560EFC6385_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5A17047A93CD6CE32E9BF70654EDA686C28890F6_gshared (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE1B61DB52D95EFFB6049F343A56EC4AA2D1C2549_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 * L_0 = (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t75C26DC5E37A1DE5E7952364949788A0414292F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0F9C55776C8089B1FE6A41A50B69BE0994C77321_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF941F239D730370708AA45322B867877488BA9DA_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 EmptyInternalEnumerator_1_get_Current_m8E75B5C48F7D9F4027CB1AA6B85F9508ED52E588_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8E75B5C48F7D9F4027CB1AA6B85F9508ED52E588_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m37D8336279B58F49A29E740B72D29909C90A927E_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D *)__this);
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_0;
L_0 = (( LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 (*) (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_1 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m16805E02A80E5466FA89A49FE083C160320F8670_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7A181185FE642A3D1A7B23CE28CF3160FB08B9E5_gshared (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.LatLng>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7304F03A58694B6D2BB138CCC13BD78676A09A49_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D * L_0 = (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0B73A40AA37A78658A223B1CA91790CC6B42CC6D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m17BD442E7C2B7842655F248763B00926A72ABBBD_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEDE13336CE333085014428CADE3CEF25BD42697C_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 EmptyInternalEnumerator_1_get_Current_m158CCBED743316971A29BACBBF9A4163448C8462_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m158CCBED743316971A29BACBBF9A4163448C8462_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE0F4FE7CE045B94965CC44400162067497FCAB54_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 *)__this);
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 L_0;
L_0 = (( LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 (*) (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 L_1 = (LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9D1237365A34C2B70F32FAB128F1577ADAF63453_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m19E5A8CB70830FFD63E0D484DC2C7972011DDC75_gshared (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3A41124ABA2CDB443E8E8D889C816ECF4150694D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 * L_0 = (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tED0D8BE1466C6C1533A3FB110C1BB85541EF34F7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m89FACCA037201A47DFF327D44790F2696E86C21B_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3655AF0B53AD2530DF4FA7C73554BEA7B70355AB_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 EmptyInternalEnumerator_1_get_Current_m6F06EE181633FFBCE737588B0746F9426AEC9AB3_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6F06EE181633FFBCE737588B0746F9426AEC9AB3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1C156B09D18DB01A89BE196B8B9E1B17C794EC3A_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A *)__this);
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 L_0;
L_0 = (( ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 (*) (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 L_1 = (ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m19370BE75F1C26DBA113CBEF0219BA89D8D8A577_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0A79AFB98768BD6EC8AA06A2C5C419A5B3313075_gshared (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ManagedReferenceImage>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCBC6F9C823EAF8CDB504BD7D97D0CDBAD1221BEA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A * L_0 = (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t08509E710A8F22A78302B18FAB92F20728C48B8A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9B38052BF1F0024754304EA7EE999244BB5E07FD_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD50BC73157518924815B2A45D1475F23E1B4B5EA_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B EmptyInternalEnumerator_1_get_Current_m9F0428CAE178CE01EC760C7F497F10878A5CA5A1_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9F0428CAE178CE01EC760C7F497F10878A5CA5A1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7E61D653493A7C8546C94CEFA788448AE32696D8_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF *)__this);
MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B L_0;
L_0 = (( MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B (*) (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B L_1 = (MaterialReference_tB00D33F114B6EF4E7D63B25D053A0111D502951B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m80A0F44C64F45BCFF44AC39EBFBE6605D8A33543_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6FE8665D020A60EEECDBDEAD6F7FDA564A48928B_gshared (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.MaterialReference>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7C23BEAA0C550C7618D9229C0A2AF0DA77475CA8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF * L_0 = (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t64CD841119D8B854F97023D7C346591CA9CA44CF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m02225577BE9CDB63C99DB9F943FD99143F58A79C_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE50EDF30F83B05E1484E525C52BB234F73E3A5FD_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 EmptyInternalEnumerator_1_get_Current_m41D2E0FA4CCB23970F912B5F73772364D68CECB4_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m41D2E0FA4CCB23970F912B5F73772364D68CECB4_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8198493BCE0A4935B9B8FE518A9EEE9DF0B9B489_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 *)__this);
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_0;
L_0 = (( MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 (*) (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_1 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m331884E92D67D50D127C1675D333D11839E3CAF3_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFD1250DE70F877E7C85266F3E6404B642C5A9BAB_gshared (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3A4F6E0E31AD94A48CAA59810E637FDF0D1EB8F2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 * L_0 = (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t483C6EDE06B2C00DC28BBC08667D6E9EAF6247C3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m672FFA2CD01408D1F050354D0F31959019CAD5BC_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCCF2313CB9758AB2106924F91686812ED1874BE2_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 EmptyInternalEnumerator_1_get_Current_mF3F3BB5A51033A395E0B363ED4C65EFD9CD1385C_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF3F3BB5A51033A395E0B363ED4C65EFD9CD1385C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1334A4ABD7F7495DCED3B7B9BF09D36BBD005D47_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A *)__this);
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_0;
L_0 = (( MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 (*) (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_1 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6A72E89C4BDDC12E55FB38D2C292E2DD9178B0AB_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE71C36D4D6ABE04AF95F777C300C532BA4D7206E_gshared (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.MeshInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5231A30751E9CED4CE984DE9D346778CF59504B9_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A * L_0 = (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9C5BEBAA63BF56A1B9E0D1C2D4C9EB23C5B5426A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9BF48750096C9A9F4E21DF223D227E5AAAB66CB9_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m41EB95ABA200EC12F9B1E058DE5AD6E1D06A22BF_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A EmptyInternalEnumerator_1_get_Current_m4B47BE5377E9DE0DD5BB1A7EC32A486773955E2A_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4B47BE5377E9DE0DD5BB1A7EC32A486773955E2A_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m446BB892F52A6958B36882C69E4F255159222D2B_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE *)__this);
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_0;
L_0 = (( Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A (*) (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A L_1 = (Navigation_t1CF0FFB22C0357CD64714FB7A40A275F899D363A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m900B3159DF4053FB43631F42AF119FD5C5E0E4FD_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF59C3EC944028C9C16CD5D6A7850F7F2A24A0E54_gshared (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mEC7E957E3AE346536434D8F341E500B0B9F3DCB6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE * L_0 = (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB97C27906CE71067C984DF626A2F5CE4B8868EDE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCBDBBBC0A12013DDC6751C427737DA8FED08D2CB_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAE4AD91BC2595D863422D08CF2BD5E816DBCDA0F_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_get_Current_m69E42D7E04C660DE326769F714C6F7E5A50A5CA3_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m69E42D7E04C660DE326769F714C6F7E5A50A5CA3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB48D2C92745D302927DFC0C710EAF8475790DF9C_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF *)__this);
RuntimeObject * L_0;
L_0 = (( RuntimeObject * (*) (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
return (RuntimeObject *)L_0;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAA59C0F03CB71B6B1EAE08BC573DF81F72104360_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4CD119069908D30FC0969F012819DCCFE6B85012_gshared (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Object>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m93E5EB64794D52D8CB9A824B223275D7AEEB7353_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF * L_0 = (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFF9E4C29D686A07247159E8C1D1E3AD449392FBF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5ED72401896C5B8AE6CCDA3AA3FE3E17C702FB0F_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE04E12CDF474EA772513D523944178CB7751321B_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA EmptyInternalEnumerator_1_get_Current_mBD9F9A287DAD3D165B3503F7229FF86F4F151932_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBD9F9A287DAD3D165B3503F7229FF86F4F151932_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2B9379FD9370F9A8FE6030371AE0A81994C751B2_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED *)__this);
ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA L_0;
L_0 = (( ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA (*) (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA L_1 = (ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9A145C81037FF9410785B5544CC70C92908DF78F_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE0297D7F63AD66535D0B9779BC1DAE482AF6A249_gshared (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFDC7ADDAD424B236CFD61EC8CAC0FE1474D8671F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED * L_0 = (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t78065659056F4527D230B0D22B4F4308F9564EED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF030FE280D503C191241A52FEAF81A1E9AD532C3_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFC33D1C3C0AE7D0B63AB68D649810B376E62F240_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 EmptyInternalEnumerator_1_get_Current_m52D4DB812CD928CAE890C5011F6203D47CA3DB59_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m52D4DB812CD928CAE890C5011F6203D47CA3DB59_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m118F7B59835591CB87F74C67567B3151997B5334_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC *)__this);
Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 L_0;
L_0 = (( Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 (*) (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 L_1 = (Plane_t80844BF2332EAFC1DDEDD616A950242031A115C7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAB10D92102DE80B113793BB463545E1075A31103_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB63B0F1703B06061DB8A4B6D04664352F7D0F358_gshared (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB0471148DBD71A06AE739D1664B9262E34A1EAB2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC * L_0 = (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFB6AB4078B849B7D9D041709E7ACE075063933DC_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m708893B5ED04A3F2E8BF3B2C1473D7492D06A611_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDE6B7F448A8F51CEFFFE5D46DA3678A9D3E2674B_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2 EmptyInternalEnumerator_1_get_Current_m5E49C3A4C8D7241A815327D2AE546BC7638AD496_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5E49C3A4C8D7241A815327D2AE546BC7638AD496_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0B5BC17492D111750A6345864E1EDE69919553FC_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C *)__this);
PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2 L_0;
L_0 = (( PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2 (*) (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2 L_1 = (PlayableBinding_t265202500C703254AD9777368C05D1986C8AC7A2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF64925078898C80E9607F1DAE93AB3311F20DBFF_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF874B9020A04867294A81B904C4A70F99F493003_gshared (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF6A75E2AB16BD61C299F3BB1CF82787C3BAF0B17_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C * L_0 = (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDA240E936C6885E689C8EDD57FBCC92B8FF8623C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m9DE852F3CF3859C162BA566A35DBBB7FD6EC58B0_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7CDC4F600F400B0A4665F51E3AC81510A27FD072_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C EmptyInternalEnumerator_1_get_Current_mDDECC89455F2184C01BA152E4257C712E4D0408B_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDDECC89455F2184C01BA152E4257C712E4D0408B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB8BC4602BFAE6B6EBB5CC0DB4FD59E1B6A9D923A_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 *)__this);
PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C L_0;
L_0 = (( PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C (*) (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C L_1 = (PlayerLoopSystem_t3C4FAE5D2149A8DBB8BED0C2AE9B957B7830E54C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4713793A93D9B2BE5863CF55D20987BE93160CE3_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE0011E690D188D4F59BB8ECC6D29740C63D624BE_gshared (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFF608FFDCCC98072C6C45281CE81180738F95304_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 * L_0 = (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE80CE8A0BBB70ADFA376E01A8A783F282753A057_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8D9C205D77BEB28F4ED4968A799949F343D82762_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m45D115054BAB909258B07BBBD772E0AFA43DEFB5_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF EmptyInternalEnumerator_1_get_Current_m16BEE8117DD254CD9A734C0F1257535D434E22D9_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m16BEE8117DD254CD9A734C0F1257535D434E22D9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0786E61E1631D1C955230F89BE733825D555ECFE_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 *)__this);
Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF L_0;
L_0 = (( Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF (*) (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF L_1 = (Probe_tAA206B7D64E9D96682D65997B81878F505DCDAFF )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA8DED96F24902F38A160C4E10EC4E3128B615504_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB53FDD7AAD8EB89B7B11E234B12BE424E435CEB4_gshared (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.Probe>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB1D578E2955CE48263AF106DE0E4CE27A4A63B73_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 * L_0 = (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t62529083720C40FCACCD93B8D0562C463854FB26_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m49E3B9BFBE27913DE2A753F0A2AC809EAFF0527F_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m0D6AD52BA8747DA8E84827374BE55E6A7999577C_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 EmptyInternalEnumerator_1_get_Current_m889B413BA22490FF21B342DF4200B8A553E38751_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m889B413BA22490FF21B342DF4200B8A553E38751_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAAF7CDA7CE526513C75AC06CB636E2305103660D_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B *)__this);
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_0;
L_0 = (( Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 (*) (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_1 = (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4C709FE049EB78BBC8482F719E93DFC72D18515B_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFD5B09841169665096BE5BD65CF9585BE6105908_gshared (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Quaternion>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF85E827C2EE914D1D96CD8717E8B135888185CE1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B * L_0 = (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0948888B9BA933F2DFDAC75410FAC8088CDB483B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m43429AA2B95941EAE123E9AABEC01E660E2886F3_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m30B96FF687A0C2B317E8A3075AC94EF64F0DEC3A_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB EmptyInternalEnumerator_1_get_Current_mB3DEA259F4C96671F04207CBCF2BA37C9A33ADF1_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB3DEA259F4C96671F04207CBCF2BA37C9A33ADF1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m188F8708C53E7FBB1894568546891745A16BC1C5_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B *)__this);
RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB L_0;
L_0 = (( RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB (*) (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB L_1 = (RangePositionInfo_tB46C25982A33E1DF36005E89A4A1EA3D397DB8BB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5EF2D8C9BC841A2F90E499CAC7B41ED48981A67A_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5C43895247BB472F7F4709305FBF0F29EFB0F050_gshared (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.RangePositionInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD5E927A535422273322631B346BD82F7E0771048_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B * L_0 = (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4930602420DCB2382F89DE9D329F627F75FE2C9B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m666803FD947B2A7201C62E0EC28DE65997220016_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m076D2CBD73A22D45F4B540561EB8A0A58A973728_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 EmptyInternalEnumerator_1_get_Current_mB4E7C83EE4BDE34804842FDF0F42AEDDD2ED3313_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB4E7C83EE4BDE34804842FDF0F42AEDDD2ED3313_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBA6B58473A07002601A3925514FA11B29B6C675E_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D *)__this);
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_0;
L_0 = (( RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 (*) (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 L_1 = (RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m947892CE22BF2A140D14F4B6506178ED8214369D_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m51E94D4A84E51A96872F4C7F657B49A6D32E13FB_gshared (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5D02BBB01FE273DE3EFF6EC0C796F35261F738A8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D * L_0 = (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1161F4679FC506ABABE6B869D0FDEF9B2628297D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8CD49995B06BE0F05416061F67424C826D44A7CF_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD84A9A56DD280656E95D0FD01A28E30FE9A5AD50_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 EmptyInternalEnumerator_1_get_Current_m1B0B1A7B96E78AA57F632C220BB3118340254CD2_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1B0B1A7B96E78AA57F632C220BB3118340254CD2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5C94D57B2A74EC156EFD3623F20D4FB661646E26_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 *)__this);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_0;
L_0 = (( RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 (*) (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_1 = (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m559961A7C60AC8F3819B5191C784E468A8134A76_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m22FD851A5BE97C23584971B3A427F1C9729CD88A_gshared (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m671F56D140E4C649E435293DE3E4D2DB6C72F630_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 * L_0 = (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2BD7ACAB2895105DECC544A7F5EB2906B0AE9679_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0335BC1E38E9B4E5505E902E94DFB7D5BC761D63_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF473E67AB0DAA746C9B9D0B31B6B5A405CAE9A60_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE EmptyInternalEnumerator_1_get_Current_m2CE937DED33CAFCC1C256DE7DE2CDEC890501547_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2CE937DED33CAFCC1C256DE7DE2CDEC890501547_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m252190738A124B10AB9C683DA117BA7CC2C3100A_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF *)__this);
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_0;
L_0 = (( RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE (*) (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE L_1 = (RaycastResult_t9EFDE24B29650BD6DC8A49D954A3769E17146BCE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAED687D5D2D0ECE271C3CB6491BD45B8E680888B_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC3902D4B685DA010338B196E5D8E7FC740214114_gshared (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDB82D92BB9BFFC39E4A92E2CAFAE99F55A352CEF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF * L_0 = (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC1E11F50E1529EF34BC931C90452ACB00144BFEF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6EA23169C96A7928D43C0FCEF0801BE993EA8C09_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAA94007289299522C804DFD20DD6070A6F7075F3_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 EmptyInternalEnumerator_1_get_Current_m839429F3A84B14971A804C3CDB3E171A6A9A485F_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m839429F3A84B14971A804C3CDB3E171A6A9A485F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3B1525962D35BBACFA2E0899E94410E1081ED677_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 *)__this);
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_0;
L_0 = (( ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 (*) (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 L_1 = (ResourceLocator_t3D496606F94367D5D6B24DA9DC0A3B46E6B53B11 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDAF4B4F3612300F1C2D5329FEF4644FDE570B6C3_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0ED802C17113EB40C7EAE5E51C3B72D68BBAEFBE_gshared (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2A9C2243885D417C1BD5D03B83E5D16A405C9156_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 * L_0 = (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t548575A991ADA04BAE2FDC8DF88859F243206697_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDCDF8F8CE7B62BF28D289BADEBBF635736E33775_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m91C6FDEF381A4836A68CE8D7A4A0A47C6CC5D32B_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9 EmptyInternalEnumerator_1_get_Current_m1531F467C508E09CCABF78CFFB4747F71F98756B_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1531F467C508E09CCABF78CFFB4747F71F98756B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDD85C20A6B4D64A98C5B3EC6A231137E6CF1ACEC_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF *)__this);
RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9 L_0;
L_0 = (( RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9 (*) (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9 L_1 = (RichTextTagAttribute_t5686297F46AB107FF79754273CB592F0185ACCC9 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m49278943A2AAF4BC603D3D69CEAFBC535451B99D_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC687F982F8876528A62EF9E028D91FBB55F940FB_gshared (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.RichTextTagAttribute>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m68F8A89E17F007DC2B4006A6053E5EDEBB5FAD39_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF * L_0 = (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t542C99054D2A89017BA4B51F1AE17F1FC55A00DF_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF4C830C2BF103F1A8A79CC8C782C855D4C2EC4EE_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.SByte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBFEE3164AA7A560AC2CFD629EBB6A494D419C92F_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.SByte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t EmptyInternalEnumerator_1_get_Current_m6BD256B1AA4F5877D6068FD37C365D21D2ECED7D_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6BD256B1AA4F5877D6068FD37C365D21D2ECED7D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3B9E0ED081668D90F02876CA9EFCCD3E295B8BD3_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C *)__this);
int8_t L_0;
L_0 = (( int8_t (*) (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m01B364E4B7A1E922C4235160CB0D0BD2B0DEBF3B_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF64706D616FF26E3FF3A6B4D679F08CF11554E3E_gshared (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.SByte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mDA4C12361EF03BCFAD0729025CD3B0883C2CEB50_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C * L_0 = (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9A225F66BDBAE9083D6E8F6B86F3C91892BC354C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF17B325E8950D79A6F8F6FCFFB482F5CA522D5FD_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Single>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m962047EEAD0A459972B344EDDEF209610D45A514_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Single>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float EmptyInternalEnumerator_1_get_Current_mD1F33A6A53D987A186D28EBC1F9F1611B182BD24_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD1F33A6A53D987A186D28EBC1F9F1611B182BD24_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB5C8DFBD64706A3A79ECF0613B6E62016DAEB777_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D *)__this);
float L_0;
L_0 = (( float (*) (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
float L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mACB80ED6C7E2DD058167D1E644BF024C57EDA3D2_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6D4A8474E9CC8146FE6AE3D7F1536A1FC210695A_gshared (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Single>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCA01D27080EF419202D105A6F7FDA6BFB400B756_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D * L_0 = (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDB61423ADEE2FA3467B27AD9E508FBEEE459496D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF3859607C81F128F3B4C4DE1963B22C91D0D2AF9_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF3297A5D24200458DF8571632982A25B76FF1C1C_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E EmptyInternalEnumerator_1_get_Current_m8CF002144289E207C00EF3F0659D6A013FDB097F_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8CF002144289E207C00EF3F0659D6A013FDB097F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m567D45245F8C30D2A49CFEFA5D4D2452173AB202_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 *)__this);
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_0;
L_0 = (( SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E (*) (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E L_1 = (SpriteState_t9024961148433175CE2F3D9E8E9239A8B1CAB15E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6C69B99C81AC2B0D186714FBB2E510C9E8E0F561_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0BC0CD874B10E85BC1E021388375ECCEC5105790_gshared (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7E4BE32D0C50B80B5EA72608226919192A2B963E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 * L_0 = (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t33D11EFD52D67BC92E5A950CB83039387E015D94_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE6FB7BF3AA1FCC45C456B5B55F065061A42F0D2A_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m22D05B85630FA2D8B097D4E421D8AFDF103AB808_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B EmptyInternalEnumerator_1_get_Current_m9EA89F6D2D0D1E23B373644500B471F250F68190_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9EA89F6D2D0D1E23B373644500B471F250F68190_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF17148AD5E6176DCFEFAAD5CAF67AFD3C00F43A0_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 *)__this);
SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B L_0;
L_0 = (( SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B (*) (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B L_1 = (SqlBinary_t83BA1113ACB82E306D2EC534B0864D8A4A7D125B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6B4A53537A94E9D13FFDBC7EAAA6B916F0B6DC1F_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0CF7CA8BE245E12A1F3EE98CB1C5127887B51D51_gshared (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBinary>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7597F51A298BB35DABD6F7FFDB3EF08671B317FB_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 * L_0 = (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB13122ABE52D429C4BAFBCFE8C15D6F399CD2028_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1E524313D5B15D5B023A84049D445DEFB3C94932_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCA74791823998D7E9E328ECB6821155768C5DC91_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 EmptyInternalEnumerator_1_get_Current_m317758C8C1460F0AD304A96B0FC6DD5C23947CEF_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m317758C8C1460F0AD304A96B0FC6DD5C23947CEF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m326631C359CB90F8216DB468F4D0524EF7A0ACC1_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 *)__this);
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 L_0;
L_0 = (( SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 (*) (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 L_1 = (SqlBoolean_tD34BC5894C8A7061B0E2D2D2CBE8E4A5257FD4F3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAD600E8520B66CD9155784795914C83AFDDF10DB_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m31377FC6FC28EB7A2A06DB8954F7E2866E170B2D_gshared (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlBoolean>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m1914FE2E4FEECE5EEB09B6802A7BF9781870122C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 * L_0 = (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t6E97A7B6376C9BAEC5092778CE63249D04FBCFE1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDC4ADF3888FCBE0C8043E51067A38E655166656E_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6A2290D4ED16E1DD5496BA91161363CED95CEA6B_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 EmptyInternalEnumerator_1_get_Current_mC7307A3AB1CF8B75CE4EBBCAD2FE1970EF15830B_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC7307A3AB1CF8B75CE4EBBCAD2FE1970EF15830B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA0078B8E756ABCC2BFD4966C27152CFA026B10A4_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 *)__this);
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 L_0;
L_0 = (( SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 (*) (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 L_1 = (SqlByte_t5E78C40CFCD84AF432F47D15743E513022E09B41 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD5C5522C42F0E7951219BC222823AB869FC7E64E_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m482B1E7E24FF741E263725C5FCB0FE3EB774908D_gshared (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlByte>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8932B93D445F18004DA0B5D144477166585B853B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 * L_0 = (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t81D4793F1FFE3C97CA84DC0ADCA2849EBF83AFC2_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m64CBE587450BAE80E79BC07338C0D11307AB754E_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4315811B64760955228BF4A0CB68998A0715961B_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D EmptyInternalEnumerator_1_get_Current_m6FC581E2AEE6159AB79C755B6FF6B85C1EA3380B_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6FC581E2AEE6159AB79C755B6FF6B85C1EA3380B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3F8F05FE56FB8EC7B10606B545A10A2A38015825_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 *)__this);
SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D L_0;
L_0 = (( SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D (*) (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D L_1 = (SqlDateTime_t18DC6DADB09444EBDCCF6536AA4F1567EC19337D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFB863CB7865CCE136768F8C14EE04C97B975928F_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE45540D77A155C8681B3CEE6DD3557CF7D6EA669_gshared (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDateTime>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mABE9DF775BCA617FF57129A091DFE70F65F8EF6E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 * L_0 = (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t12C7363CD12EFEF93512CC1FB4EF8B7380695528_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m54F9C4EC9D74F142990FE94239B301192EFAE123_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBB04BB09FA015258BC2B79C53693F9ECB91BDD1A_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B EmptyInternalEnumerator_1_get_Current_mBA9F184F7CC5A475585146C22208B84C421B3B8F_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBA9F184F7CC5A475585146C22208B84C421B3B8F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m77B9BB54E853ED5B4525527630B43BBBB02CC139_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 *)__this);
SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B L_0;
L_0 = (( SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B (*) (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B L_1 = (SqlDecimal_t2E3764DA58ABCDADAC6F390C24C8273EF87AA54B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3C6837138B62E2F492479D68D7BAAAD3E33A7135_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAB0CD2B00B42F9E7E62622B9DBEE553D81779BC1_gshared (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDecimal>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB88A1845A8A2F0BB7C9F1C5EF35E24A4002568DF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 * L_0 = (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9BB0B5AE252BB4B5604971FD9E04016E9B782902_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m97CD54A3DE094EF44C239840E67435FFE0976713_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEE46A19B4182E8DEFA8B5531208C184877CBABF4_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA EmptyInternalEnumerator_1_get_Current_mBF34531529790CC8FB5AFDFCB55A1320FB454EC5_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBF34531529790CC8FB5AFDFCB55A1320FB454EC5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m68916C6D2C0737AF3ADF685283442F89A3079CA6_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB *)__this);
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA L_0;
L_0 = (( SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA (*) (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA L_1 = (SqlDouble_t0D9EDD6B609690459BDBBB52962B791D3D40B1FA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m784B97920D5CC4B437FA198F1F83BFFC00D3F7C1_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1AB27A86AE61644E22071B969626A06101DFEE4A_gshared (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlDouble>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5A7E61129FFF5A492EF5D37C1869CDD8C530C830_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB * L_0 = (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t163DE578E0A8F9C7FACF229B774BBD530ACBF0FB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m836278A341EAE381361DE57591916D6B87FC45EE_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m225E9BC1D908BB216469E44CD6B2A1390185B2E2_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 EmptyInternalEnumerator_1_get_Current_mD9747B43717D06232EEE8271474271009DD1914D_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD9747B43717D06232EEE8271474271009DD1914D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1C023811065E15236365609FC6F7B6D0724AB796_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 *)__this);
SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 L_0;
L_0 = (( SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 (*) (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 L_1 = (SqlGuid_t5D26918EA5666BC8EBF86F12192E616F0BA8DE46 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m59EA6646E2432C16E65C130297CDFF88EA42FD1E_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m0A9BE971B95B29AFFA59994D2B4ACA43E1E727E1_gshared (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlGuid>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAC33F12CF330BF163AE69549F4D2E0C0F652A9AC_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 * L_0 = (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF440A102D45093B83FF4C0E52ACE5D1D97DC6D72_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCA782FE980312FC28BB667B27787263744A4318D_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m77F6D1A8A3487DDE255AE46CD6E894C48743E290_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F EmptyInternalEnumerator_1_get_Current_mC2C3417650253E94B335B2709F434C635B350636_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC2C3417650253E94B335B2709F434C635B350636_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mABB649CC6F62E6A2275BC176FDAD1112E9604963_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F *)__this);
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F L_0;
L_0 = (( SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F (*) (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F L_1 = (SqlInt16_tB003889273CEF2625C06174D4DB23DBBAFEDD72F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3589A35BAD82B9E9D2460A63B2E3AC794C04EA95_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6F4BB3954DEAD6F6AE45EF6E99442D5B29C996DE_gshared (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt16>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9778459B09A91475C913CD2A3C2EEDF989E6A1D7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F * L_0 = (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8674779AEC72FF2B0B411DEEB97BDACE15B7FF8F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m95B4966D4E1DAA622D2404B91E9128F302EF3D52_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDE363F6EEBBADB2BA3723C9E2F7914C4DFC6E621_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 EmptyInternalEnumerator_1_get_Current_m010AA69BBA106E956E9104EA2324B58D710F4572_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m010AA69BBA106E956E9104EA2324B58D710F4572_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4F5D98DA7D398251A66CB6F63DE96C297A610D39_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 *)__this);
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 L_0;
L_0 = (( SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 (*) (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 L_1 = (SqlInt32_t2AB23DF9003BEBE6DBD94E94C8C679454A8AF0E5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC097F964213540427B2E3851CF61E9F2C4D895AD_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mECF81A21174DDB587F1DF3DA9606BA23B79E5E00_gshared (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC9216A39A40B280C5A1BB32DA303F422AFC5D0E6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 * L_0 = (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA0CD502DB46701E04FA3303C3AE52D04C5BB1032_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m564991805DF3E76503381F9110F6539FD0759060_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE261C3D1B91ED4523336025C247FA5E5A956DD02_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE EmptyInternalEnumerator_1_get_Current_mCD9D4774581F60FD3D363E1DBA4AFD8903B9C10B_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mCD9D4774581F60FD3D363E1DBA4AFD8903B9C10B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1C0795C1801510E04B9418057FE5AA0675F8E83A_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 *)__this);
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE L_0;
L_0 = (( SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE (*) (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE L_1 = (SqlInt64_tCF441A47D276F6121644D08D6BEE0296E84E46AE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m888EA9EF2ED6B55BD6039EB93E1E44D2E10E5428_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB1824EC2808365B3DDE15990958CBD61DAAFFA0F_gshared (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlInt64>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE09A70E48BD34B6CED06E1A07816CFB081A5E03F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 * L_0 = (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t167FDD1FF166B56295CCA98793A88BA74D572E14_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m939C7BD42AFF45AF650EE43ECD41BDF5F4B20860_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4EBFB38E619A145F1E74C16AA34FDCCCCBCE578E_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA EmptyInternalEnumerator_1_get_Current_mE41DFD0169573D3CD01851A05B7A8643B3CE2AA5_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE41DFD0169573D3CD01851A05B7A8643B3CE2AA5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m48B17661FE626CC7A7850465A079808DA3F93CC1_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 *)__this);
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA L_0;
L_0 = (( SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA (*) (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA L_1 = (SqlMoney_t3AFB18BE9EB489D660B42B8A4276B7C3054E00CA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m38DEF6192DF982683156C2CBC8A08864160C0EFF_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m634C8B9ECDFFA1787454E31B1F4E0AAD259C6277_gshared (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlMoney>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2378F8244F980376481B5CC6F3308DD31D3F88F9_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 * L_0 = (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC4F84CC469675DE642EA8CC78C90AFA6821DDAA3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1D49600A4CACCF2A9A6897B4A341A1CE03FA2820_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5C7FA7C0419F9733407D9FE5FD20B372B1D2804F_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E EmptyInternalEnumerator_1_get_Current_m279CBFF242EABF670CFA9428ABCD38EDBE87B623_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m279CBFF242EABF670CFA9428ABCD38EDBE87B623_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD3FCE03F19380801EB30582263DE23319D03BE86_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB *)__this);
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E L_0;
L_0 = (( SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E (*) (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E L_1 = (SqlSingle_t2CD814E1AA8A493B2181D8240064E7A0A034A32E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1B9F12DE2C3702AB444DB3DE4CAF76E9C4516E8F_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC1E799133C832B06C21E4689CC3B64731B2C4118_gshared (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlSingle>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m07780DA699A97CA8EEA9F047376992EB8893A8F4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB * L_0 = (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBD9C342A53EBE79CB6B657CF22B66AFD64089ACB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD2C6BC09EF341964E28F6F32F489E13664BE1D85_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m64984169995955E9A98DF5C9722DF72AC438319F_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E EmptyInternalEnumerator_1_get_Current_mAC4738D33D4050FD089B649354A591D6582447E7_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mAC4738D33D4050FD089B649354A591D6582447E7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7635EB7BC9B3465E5ED676DD052855B92D794373_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 *)__this);
SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E L_0;
L_0 = (( SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E (*) (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E L_1 = (SqlString_t2CFD797DC19AC10EFAE0277F867ABCFCD7F7AA6E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0C6A42C0CE31CE75C4817F55D7CE99B3D328A7E6_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA85D1624EEA447711299513F28558D3F613A6314_gshared (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.SqlTypes.SqlString>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m560F337A375FD16AD1D67554A6077779897114B9_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 * L_0 = (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7F5862D102A9F87DB86202798575044F4B2F0D54_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4677001516DB69D4AB8327FC0E197787D64B4995_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m52725FF367228472C2F00BE963B07277AB3D41CA_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B EmptyInternalEnumerator_1_get_Current_mB0A192577E2B0D1CEE94F5973E82C2AB501F553F_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB0A192577E2B0D1CEE94F5973E82C2AB501F553F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFA55C15DBE672D9D05E6E6D20FE9EBE808B8ABC3_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 *)__this);
TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B L_0;
L_0 = (( TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B (*) (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B L_1 = (TMP_CharacterInfo_t6F1B9FE4246803FFE4F527B3CEFED9D60AD7383B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6C763CC4272AC5195700E08E08108AD20B9514AF_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m67571D85D42C7530C788D8D8D36BE2628D0312D9_gshared (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_CharacterInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAF2C9259389DC12C2DA913851308F7AA3B03C9EA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 * L_0 = (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t52F3576DBA19B68467751AF5671B9F61882C9363_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3414FC74B5F85BB22E55CDD8CB2418DBC217EA14_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m197EFA34EF49083DEA3FCF2F6B359C6DD821CC3D_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A EmptyInternalEnumerator_1_get_Current_m658797D4A0633811451F7E64B876282E8E3E5B7D_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m658797D4A0633811451F7E64B876282E8E3E5B7D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m181D375312D85460022DF178EB6384A06764F4C2_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 *)__this);
TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A L_0;
L_0 = (( TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A (*) (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A L_1 = (TMP_FontWeightPair_t247CB1B93D28CF85E17B8AD781485888D78BBD2A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2FC4CD48C8BF7A0501250F388A6631A23000D329_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA5113595397AA36786CAD703CE2726B4B4214412_gshared (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_FontWeightPair>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9008CD3A29F6B92396CF7EDE91D0B3EAC9750AD7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 * L_0 = (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB36EB4CACCABD085AAC99B96CDF4D0A661333434_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m928F35222365C56B6C79CC480D9C7ADAC762F59A_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6005B72C93EB1943651FB544C97BCCAD3832B62B_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 EmptyInternalEnumerator_1_get_Current_m4277D18F505E6D37478DD2F8C9D4CB3232437E9B_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m4277D18F505E6D37478DD2F8C9D4CB3232437E9B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEB847D89C2EB6AA614EE24EA48506CA55A5260D0_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 *)__this);
TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 L_0;
L_0 = (( TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 (*) (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 L_1 = (TMP_LineInfo_tB86D3A31D61EB73EEFB08F6B1AB5C60DE52981F7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD1C1DB56F627405F3B5C9BB8AC6B311DABFB067F_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m11CD0F08F3BF3EC1569E1E2FD4D2ECC6C5C1E60A_gshared (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LineInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBC0B66B3D1F275189F847F3A5D3698FB6D38F842_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 * L_0 = (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t50BF6E08936A52E8EED528829808336DD8BCB549_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4B09D9FEE6D370CCBDF555A9BA75BC186061C68C_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6DCB54C9203129BEAABD9900654692421C6EA79A_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6 EmptyInternalEnumerator_1_get_Current_m7C4441C0F74FC5F288BB4B9406DC5088F0E2929E_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7C4441C0F74FC5F288BB4B9406DC5088F0E2929E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58375129949CDF0E0D4345ABBC1419C7DFB0BB39_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 *)__this);
TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6 L_0;
L_0 = (( TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6 (*) (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6 L_1 = (TMP_LinkInfo_t1BFC3C15E256E033F84E8C3A48E0AC5F64D206A6 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB1A0CBF55706FFDCF2E05BA9B82B5FDE1AB74E5E_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m66E7A0B07DEE6378E7CF74604CE716C33E5BE933_gshared (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_LinkInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFAA9DE73CDEEB525EB80777D35A7F0249CB4A331_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 * L_0 = (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB1AFCBBE6DBEF3F0FB760F855EC7163F0A3CF293_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mE0E4B907B588EE2535CA989983441AE4784E5C08_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAD7D942A92ED46F00B5E02ACB7E6B53C020CB580_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176 EmptyInternalEnumerator_1_get_Current_m5C6DB5CAB935ECB6FC4BF47DED784A0A7FA3B65E_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m5C6DB5CAB935ECB6FC4BF47DED784A0A7FA3B65E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA21E08CE05AC295A95206AE0EC6CD8E9A5D9D876_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 *)__this);
TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176 L_0;
L_0 = (( TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176 (*) (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176 L_1 = (TMP_MeshInfo_t69FCEF4CBC055C00598478835753D43D94A03176 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB71D70DBF48F6DEE00E66142D9CB2D3855C7D139_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5E808C5154E242E9BB1CC9FBF0E38F07131C215B_gshared (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_MeshInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m740F12357DD94EBDE27515AA59B8AA9EA40A888E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 * L_0 = (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9F6B0468146D5A9F04F4E17767AB8E12C4F31978_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA6A688243992EB225D9BF22AD44D6010D8341D9D_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC062FBF817DA5AE8870FD2A9C374D9CFEF229071_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC EmptyInternalEnumerator_1_get_Current_m21E5339F3FF76C81720B1656EACDDF2BA5B7AA95_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m21E5339F3FF76C81720B1656EACDDF2BA5B7AA95_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m145EEA252748E5ECE5F5ADB54F81EBA7A3D6EAC8_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 *)__this);
TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC L_0;
L_0 = (( TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC (*) (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC L_1 = (TMP_PageInfo_tB5F02C2AE1421D5984972F28F2ABEE49763D58CC )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m56378657F22D46A17E713047BF8A2BA336A001A8_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m82DA7140D553A4CFDFE6F9F12C140C63205DDEB9_gshared (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_PageInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2D27A63033333C065BC8B01838BEF41D2142A6FA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 * L_0 = (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tF33AF2C7551FE2540AA79389E62D31DE5C909052_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m698B84EBE55CBFF9D5090CC2731F8B5C1DCD3161_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m73AAF427DA77521A24FCA5AFD6171B5CABA5504A_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C EmptyInternalEnumerator_1_get_Current_m1610AA5E75FAC7063F39D40F402AAED93410874F_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1610AA5E75FAC7063F39D40F402AAED93410874F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0145B0407E2FD5B95A9FF21D714B7564E8E79F3F_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 *)__this);
TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C L_0;
L_0 = (( TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C (*) (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C L_1 = (TMP_WordInfo_t168F70FD30F4875E4C84D40F9F30FCB5D2EB895C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC9C063958CC664835B63460CAF7302C15519E0B1_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3BCE120B03A276B93D7C1CD887528F2D2EA76AAF_gshared (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_WordInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4D27052EAC32DFA834DF18CB0F09F0131A05DC4E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 * L_0 = (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t85210BE8CDEA35149F4871ECE78B1895584886B1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m740B1D3362BB068443390E5A151C1D1008EC4774_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m711881BE65B571E96CA0325BF13523BD73E9FA9C_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 EmptyInternalEnumerator_1_get_Current_mD1D1B67FB75EB119879A92627E5A956CD124E50D_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD1D1B67FB75EB119879A92627E5A956CD124E50D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m91ECC74DA3FCCF501B9C6C79FDF71FA4C44FE7E6_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 *)__this);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0;
L_0 = (( TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 (*) (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_1 = (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3589E3F97038613A846F0473B4203827764F6E7D_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF342AE8F02B10B1374B545C9F4324EC5B8E4F2BC_gshared (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.TimeSpan>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3BE4C58FA33D14EF3F401EC4B367498CEA61D50F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 * L_0 = (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2CBF422896913BA624F3044D06177CE5C7AE41F6_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB25DD2793064E398FB062ED962FE64960C220CBD_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE0584FD48462F88A983672C2C496737F5791175D_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E EmptyInternalEnumerator_1_get_Current_m53352B3E5414FEA399440821A5CA9A2DE58E387C_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m53352B3E5414FEA399440821A5CA9A2DE58E387C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAE5995C5DDC5B36FA4C4F3DA1EADF466BFA09E70_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 *)__this);
TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E L_0;
L_0 = (( TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E (*) (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E L_1 = (TracePoint_t4B0C7F2ECBCD834D6A4D0DF385274637D09C503E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC9ADD449A80152C49978A656D8A916D70AD21674_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD716D527F718D550103CDF3EC55C6629209A635A_gshared (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.ProbeExtractorCs.TracePoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m259980EB0458A9D9BED5AB57DA9CDB5AF844E372_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 * L_0 = (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t07F36662BCD08AB6405CD551A807E3AAE57A5D80_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m77673B3ECA3E251327592398A0317C6CB6F95514_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD80A66F763E4045315C51F4B69044A906C1D687C_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B EmptyInternalEnumerator_1_get_Current_m3DF7E98B71A5AA1080FB2C4F0949BA8E74781463_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3DF7E98B71A5AA1080FB2C4F0949BA8E74781463_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m75D47B19CA904D48CAA249D0E30A8464B2AE6872_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C *)__this);
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_0;
L_0 = (( TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B (*) (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B L_1 = (TrackableId_t17A59B04292038BB1B77BEACD41221D2700BE90B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA4656D91E14078BCD32BE08EE3160F1F167459FF_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAAB59D7E4419095D0935FEC10DE7D89B561A4854_gshared (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.TrackableId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA3A99C7B75ECB3F8729EAB9E361F78A7AB976E6B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C * L_0 = (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t46B69178182ABE4DDCF5C5E6D5FA8D45C2AFB65C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDA06FF6C1B686E6EE580B8B9D6CB807932B6748E_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m46202617027B778B53CE74FE2921FD1747538EB8_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 EmptyInternalEnumerator_1_get_Current_m96396F5BF828A14103C387A454DA72618DA27D8C_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m96396F5BF828A14103C387A454DA72618DA27D8C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2283BDB090CB4E2AD099AF378758676D4CEAB7AF_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E *)__this);
TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 L_0;
L_0 = (( TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 (*) (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 L_1 = (TypeNameKey_t8300CDF268F7F924199D7599088B72190702B970 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m20CB1DD460E18FA194EB2FB8E381D4ABA5D4DCDC_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9ED77DFF70AB005ACDD6B38B9CFD688646C2E58C_gshared (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.TypeNameKey>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE8110C4E99936AF3DC0A0319DDCAF6768FD7AF25_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E * L_0 = (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t013E7D2D702E346E1BDE7706E573A33E5AF1B77E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1B9DBFF00011EF03D08B1629C34C6E5298DA9778_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6C25969D3C4B3136E520D2CAF359EC0F0AB5284B_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A EmptyInternalEnumerator_1_get_Current_mFE5D875075E958A8CAAA0C796793501DF8AAA752_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFE5D875075E958A8CAAA0C796793501DF8AAA752_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m43531FCAA8300E474AA2AAA34B7DB090E8A9675F_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E *)__this);
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_0;
L_0 = (( UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A (*) (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A L_1 = (UICharInfo_tDEA65B831FAD06D1E9B10A6088E05C6D615B089A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB87CDEF1547F30358BAF07DDA48BF1FC4A4CBD93_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m84757F2135074B3E936468A08E670AC2613F344A_gshared (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA932F04A689C4CA6ADBE65B1A76228D594F28988_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E * L_0 = (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t51F5549F32E1C07F8FF104B77F094FFEFE29779E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m00EDDEEA8EC28D7BF6125C225832665E761EFD45_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m94BAD2B8363D79D476DC31FE851B2D5EC5195F65_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C EmptyInternalEnumerator_1_get_Current_mF60D4512684870B8A2A536D67F17915E97CFAD91_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF60D4512684870B8A2A536D67F17915E97CFAD91_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7234367BA3988C19FB7BD41C14492A2EDDB1E2E8_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 *)__this);
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_0;
L_0 = (( UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C (*) (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C L_1 = (UILineInfo_tD082FF4894030AD4EBF57ACF6A997135E4B8B67C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9D4DD1428D7700D8F07392D273A26BB5D150D9C3_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mFA9C1EA88000D8DD3261C62E417688E6CD4813A6_gshared (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0081B1D9236365152F741D9394B45132D224CCE7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 * L_0 = (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3C259954882BC0944CF8D2156284068F14F5C377_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m49BCFC44D6302AB96F648184A5993A7387F04F7A_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB9D4FF7DC9CA6212D1E583CC16968D07DADD0E59_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A EmptyInternalEnumerator_1_get_Current_m812F364466676AAEBA811F236D27B7E27B68A6E4_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m812F364466676AAEBA811F236D27B7E27B68A6E4_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB7259CE3192BEC3EB49DC03A22F067E359AA7427_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 *)__this);
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_0;
L_0 = (( UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A (*) (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A L_1 = (UIVertex_tD94AAC5F0B42DBC441AAA8ADBFCFF9E5C320C03A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m387E853D54F950CFCE4FBA8BD95FF0C0377A5ECF_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m86E4E31CC24E419181BA39FE0134FDCE5491FE54_gshared (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFA0D78494AB0547B1254EA6FE75A95ADC05B2919_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 * L_0 = (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBF97ABFDA9C760BDF7D30019D8C37352ECDB4E65_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m14FFB7DD6D1CDAE585B540F4F207DD7FFCCA6F02_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBC3735E358C7B353853BACA742AD989B89C619EF_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.UInt16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EmptyInternalEnumerator_1_get_Current_m7F90A8A273DE718B9F7C59CBF9D5E0C15A3B1DFF_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7F90A8A273DE718B9F7C59CBF9D5E0C15A3B1DFF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAD4ED26ECAB4DD4B9BBE9B42FF0ED39FDAD457F0_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 *)__this);
uint16_t L_0;
L_0 = (( uint16_t (*) (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint16_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4FC8ED47981D59035ECDC0B16A9B50E376518832_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF55968B0537A8D577B71ADFC1C9D5B75F5C369EF_gshared (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA6D1AEBDCCB24959527A57A4E6041976CDB5421B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 * L_0 = (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB45A9A443595936CD1B8EBBE346D89CA95D68ED1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m63166BA227FBB4B74502648CB478FE14CBC5832F_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m11D0FED5BF9A7024CD06933D7ABA82BB0B7AC3A7_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t EmptyInternalEnumerator_1_get_Current_m1CB87ACC66A10F1B82F18B1D6406AAF6206FC382_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1CB87ACC66A10F1B82F18B1D6406AAF6206FC382_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4C4D884FA582B4C42056ED1939F248C75B7D9FBB_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A *)__this);
uint16_t L_0;
L_0 = (( uint16_t (*) (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint16_t L_1 = (uint16_t)L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDED515E3982F5F6328BFBE398873DF843D78F99E_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mBDAC656D3CC0B2CE66442C2303D612CAC36123BE_gshared (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt16Enum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAF2BE40665C5DFC45744EF5BBE34138AED05D0C1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A * L_0 = (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t89D4C08A67E4D7D8F5320797FFA1CE531542CE8A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA7058F28FDAF361D1B262879FA75135B9980A453_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6138E6DB23A1A4EA169D195104B496A4AF5A2BB2_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.UInt32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EmptyInternalEnumerator_1_get_Current_m3A9447ABB4533EB1996C3FF21026927F2ED41DD1_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3A9447ABB4533EB1996C3FF21026927F2ED41DD1_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1A2BE61FC2C242DA548C2235B417446C69E2DA71_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA *)__this);
uint32_t L_0;
L_0 = (( uint32_t (*) (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m02AE8644CBE81B1C09A0F426D29CCF298AA08937_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m34ED1D9FBBA5887394CF048483F14A2C01A6F1A4_gshared (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8CA221487C60224DF5E80D81CA27ACD3E0C0D403_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA * L_0 = (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t062CD4635FD05C48CB2B2B1A352BF09B43EA85FA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m3858441CF1006B20D7AAAF38EB1FC47F268DBA97_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8D34981AC97875E38B4B8838ADDBAC02122E4321_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t EmptyInternalEnumerator_1_get_Current_m2138FAEED624E705B2E2E878D560EF35DB401295_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2138FAEED624E705B2E2E878D560EF35DB401295_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m78A2CD2B7DEF9A079FDC8507418EDBC93F340508_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 *)__this);
uint32_t L_0;
L_0 = (( uint32_t (*) (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint32_t L_1 = (uint32_t)L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m833CCE8540A6F948BB095B6AD14C5158A3F6311E_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m63B5D8D7D557639B3400866BB30949F2B0B7D983_gshared (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt32Enum>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mBDAEA41978548663E6CEA23CF4C553FDBD82C3EF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 * L_0 = (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBDFFEB4D48CC1E8414924C00730B45E3DCDF5003_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCDB35404508BB1552A737AD764FB240BE4CEDADE_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.UInt64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCE3FB5D0C1332C66BAB81BCDFE84C9182EC23ADE_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.UInt64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t EmptyInternalEnumerator_1_get_Current_mFF741FFB33BA8180B014BA95148D5EC7241F2E06_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFF741FFB33BA8180B014BA95148D5EC7241F2E06_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE9FF764577795834A6955AC49D68CD71FA827A12_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A *)__this);
uint64_t L_0;
L_0 = (( uint64_t (*) (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
uint64_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m128199F23F3D8785552D7CA472FA7E1FF035370A_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF94BB421E1788081FBE9D65030C0F907BF3FD120_gshared (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.UInt64>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9FF316FE695604DAD91E6B9BBF3FCA324663C5FF_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A * L_0 = (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1964EB5C96A8CA58A55EA579A0732387C8CAF89A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD57D65BA971D350B68C6A06F3AD42C2CC4531115_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mFDA5A31A3E506785830D90E1F5ABA5C9E7595A76_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD EmptyInternalEnumerator_1_get_Current_mB6D83D530CA964174248C490972F5FA91E503263_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB6D83D530CA964174248C490972F5FA91E503263_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7AB0B0BE4ECA19D0FE05A0A0C475EF6351515DAF_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 *)__this);
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD L_0;
L_0 = (( UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD (*) (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD L_1 = (UnwrappedTileId_t778DF07BC5C868F4512D49B04273FDC866BE78CD )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m95E10DF6119F979100B2B51B00A69639AE54425E_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB84430A78D087DE825C7C6BDF0DB8C2532457282_gshared (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Map.UnwrappedTileId>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFCBD59CDD301BAD134B0DA5C1E2577E26BAFFEA7_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 * L_0 = (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tBA6F9DC7B81C124779FCC909FB598B834958D994_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6D2578E217C11EED8BB189638A129113F2F6B400_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF8AEDFEBCB64D88F0CD15A11BE43F9E9D9D23CEF_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 EmptyInternalEnumerator_1_get_Current_m52BB7F03E97A4D7CCD5AF97E905BC8BAB9F0450D_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m52BB7F03E97A4D7CCD5AF97E905BC8BAB9F0450D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAEA066EE94DD4EDDF7AADFD65761469095A0AAF3_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA *)__this);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0;
L_0 = (( Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 (*) (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m41F6C2C91EFB0F769A5D6D94623885523EA6FD5C_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEA93DB46FF1B291712B4D41737AF2E9C56331D4C_gshared (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC31CB1C0B0CD57D146B622CA97EC6A2EC4A8F7B1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA * L_0 = (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8C1EBBA425F786FEEA936A2899789BE1E09916BA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0ADF1242FB6F0CD2BC22DFBEC53AE8DEAFDE8DCE_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m65101FE3BA659A7168AFE49B2CF27496EDA7B106_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 EmptyInternalEnumerator_1_get_Current_m29085FAB3F7CBBAFA21E1A6489F5E67748E4B83F_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m29085FAB3F7CBBAFA21E1A6489F5E67748E4B83F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m42FD5D4CEC3E7127BF8211DED1FF27C75257F5A3_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 *)__this);
Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 L_0;
L_0 = (( Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 (*) (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 L_1 = (Vector2d_t7CEBC24009C2E7F926971D5C26BDAE6C4CAC0577 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD92D2B85D1A16EF57DF514D3AA0F3243E89F8AAC_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m051BAEC85CEF83D8CB4370AAE0D3DDA342971F93_gshared (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Utils.Vector2d>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2841560E1A76ADC3FB2C3E53FB43F513E2C2A525_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 * L_0 = (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t514D89D1002566F25DBF15C41F6D6608D0E27599_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFA42B6DF7F66FE43D752727B6C8035B97B7B8E84_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m992729BFC2BDC18F8AC531E84EEE46A2DC065501_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E EmptyInternalEnumerator_1_get_Current_mE94EDD8787391720D758337B0CA0F485ED4263BE_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE94EDD8787391720D758337B0CA0F485ED4263BE_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFCBC51ECBFECBADE3FD7686F21AD23888B86C080_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C *)__this);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0;
L_0 = (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB223918555216E6436A53C29EAD9F22E170DA372_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD27357F39D8A4ED56135D250DBB292F9C45D6E7C_gshared (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4F6B5C47F36ADDDCF1C9C0F7F53B34D2F698AB94_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C * L_0 = (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tA5E7DB878B495301EF1A17EFDE75C0979C7B792C_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0EF538B22A335D995A557710CAD57ED44BBCBAE9_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mAEAAE7F6E0E98270BA7308E39F17A32A4D48ED92_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 EmptyInternalEnumerator_1_get_Current_mBA171E7F10557D577EF141B132515B7ABFA3DA99_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBA171E7F10557D577EF141B132515B7ABFA3DA99_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEA396AC85283867F949E87B2EA5F2D98218F714D_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A *)__this);
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_0;
L_0 = (( Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 (*) (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_1 = (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAFD27078EA1A5C90E6663E5C55531567493F2C7E_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA966D7B0D36D9FFBA4CF55FF508CC367BA54EEE3_gshared (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m6ACCEC5D29EC3F1009DD9766E6602AA3F08AF889_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A * L_0 = (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2086054D86C308C6BACD48367418D110DA1B011A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m2643B255EDF7F19F2E56D1F7864B2C566F9742D3_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3C3369398DD629C0894DCEA7F6D3B042FE08322B_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 EmptyInternalEnumerator_1_get_Current_mDA9294A8BB3F09C2547153BE23F9EB3EBA779425_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDA9294A8BB3F09C2547153BE23F9EB3EBA779425_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9AAF40B8FD1126CD5CF4C064F7793EC5D5DC278F_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A *)__this);
WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 L_0;
L_0 = (( WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 (*) (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 L_1 = (WordWrapState_t15805FC5C080AC77203F872695E3B951F460DE99 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6A2FF2E11C9EDDD1E5C5092BCFA8D8F06CBAC796_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m314F2FF1F070DFE898A982F78BDA6D4C6EA5C4C5_gshared (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.WordWrapState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2B2B22B9F9F20F3156D374F257AD010390C4057A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A * L_0 = (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1F23F4AC1088FA67A1CE47EAA31CFD28A016793A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD0750AD9E96A17A36B4873596FCC736DC035B912_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m89A0051F9EF63A2A284AFF42778EA48A8059725F_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB EmptyInternalEnumerator_1_get_Current_m227933A7E48F2DE5D2A64AE9D4DDDBF72B95AC85_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m227933A7E48F2DE5D2A64AE9D4DDDBF72B95AC85_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE4045E5105305D5119A544F76BB3D536FCC6FB80_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B *)__this);
X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB L_0;
L_0 = (( X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB (*) (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB L_1 = (X509ChainStatus_tB6C3677955C287CF97042F208630AA0F5ABF77FB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m65F0264D1D32992A18C0DF223B48D85E6E6D35BF_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m148B4D9BA4DAA01E4386112F17E0F0C40F72DE3D_gshared (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Security.Cryptography.X509Certificates.X509ChainStatus>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m83C99CB01ABF4979F3C6F2F49F67E9E1ED4A207B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B * L_0 = (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t2479F21C77D30DE2FB51BE3CE1B30F61EB52569B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6A9E9CFD4EE1564FFA2D6A39D87CF816E7DFEB5B_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m25E0A2588BCB20CC1C731B8DAB4C069E9C4A762D_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 EmptyInternalEnumerator_1_get_Current_m0E79550555B59D1214C323127746942EBDD40BF5_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m0E79550555B59D1214C323127746942EBDD40BF5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE12D4E90A4972FE347DB56C9B490CED3437405C2_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 *)__this);
XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 L_0;
L_0 = (( XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 (*) (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 L_1 = (XPathNode_t8136D06F11AFD28E2F7CF363AD9198C32FA0FEF7 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m302DF2B1F48C5C0058BB07EF57FEC421F9755213_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF9596CB5E0364789FC2FACBF3B14603E94D6E3E4_gshared (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNode>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF142BE759DC0A33268219C690520BE7615657B6F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 * L_0 = (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDE022C747BB06B92CE84863A9E7ABFE11D7F90F8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6FBF58F2083FB15B33421F15741D26D30B371E6E_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE1BA25CFD7A99ECE851E01F5972BEDC945C5B3B6_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 EmptyInternalEnumerator_1_get_Current_mE9C115D2CF112FB2093DF191C1A17D55B0567CE3_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE9C115D2CF112FB2093DF191C1A17D55B0567CE3_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0CFEF50AE484DBDBCA6B78B9BB87357BCCBF2EB3_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 *)__this);
XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_0;
L_0 = (( XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 (*) (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 L_1 = (XPathNodeRef_t2A79A2C8D785DF72D2F344E0E216A8C751D50503 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m1CD5BCE00493256F9C0A493286C279D63B74183C_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE4629DB2EAC9C130EF11874FE744E8E9CFA15916_gshared (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<MS.Internal.Xml.Cache.XPathNodeRef>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC936B489C727FB135AECF13A62C078333FACEDE2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 * L_0 = (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t77B81818A5C8F290E3D7992CEE06E18EA1A155A7_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mED1229EE877D8BD88E6EBDFD4B581D9CFE7A9C1B_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m560D66029F1ADC178C6A11E010A1E099DD8F09CD_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C EmptyInternalEnumerator_1_get_Current_m511F1CE482D34906838FA51AB5AEC459036D983A_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m511F1CE482D34906838FA51AB5AEC459036D983A_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA5E11858B35EF3BA5C308832FD3C51101C945E95_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 *)__this);
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_0;
L_0 = (( XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C (*) (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C L_1 = (XRAnchor_t8E92DD70D9FA9B3ED2799305E05228184932099C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD3E422723CBADA5E6E8C88B3C8EECF2F2C0FA3A7_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m82AFFFA7545A55A825270C5D4721A1612607045B_gshared (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRAnchor>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA2C51F7F0B2DBA19FAA8F40BD4C529F2226BABC0_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 * L_0 = (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9A74CC32B4EAA9DFD9BC6960DE510123FF271349_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF008F08970EDF98AE7C0212BC04805E2729E9368_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD27807E41F0DB8D5BF5E5B63AA4F12419A8E3A35_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A EmptyInternalEnumerator_1_get_Current_m2B97802BD7B1A062033F0C1F42BAAEE25D0EB2E2_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m2B97802BD7B1A062033F0C1F42BAAEE25D0EB2E2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m21D290AE2F0ED0E1B09327C352338EACFFE3621F_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D *)__this);
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A L_0;
L_0 = (( XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A (*) (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A L_1 = (XRCameraConfiguration_t2393055E5547307393E9C73AB13B95E0785A4F7A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB99C60DE2E54CB0E021FC4BB3386B68FA13792A1_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m183BF70460EE3E4CF2383DC9BB3DC50970217956_gshared (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRCameraConfiguration>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mA0D19C6A209397EE8224AEC96ED2E3C8474323AD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D * L_0 = (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD99A6B6B28ED2A6FCB3C8401818F147C6011392D_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA7DF560CFFC5C2E4EF52EBD2DC0E0D8827AD6071_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCEB551B18220E274E836E3BEA6A3B7942A61C280_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C EmptyInternalEnumerator_1_get_Current_m8A5BB541373B6BCF32AFC435078F21AE9F500D4F_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8A5BB541373B6BCF32AFC435078F21AE9F500D4F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCF52C7418AF074AF16460939B10164AADA546ACF_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 *)__this);
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_0;
L_0 = (( XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C (*) (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C L_1 = (XREnvironmentProbe_t4D75B5DF95135D1BA45222CBE3E7677E823B8D4C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m2ADFB7798E1DC1A15577D3D14687C9AA248FD4BA_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB70875D5BB5E5BCF86D1437D1FD217AAFADDC767_gshared (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XREnvironmentProbe>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5920E8F310B9A6C73E85461AB4EF746FDB1B502E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 * L_0 = (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tEEFF48148F010911F752F6AAF3CDD9B315F70987_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1466D1D78D4F5CF23BEDFD84ADCDAF3DF7C08589_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2F7DBC6D298C000DB13286F1C6498BA1CA3BC4F8_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 EmptyInternalEnumerator_1_get_Current_m21F09FA72B93DFAAC5F9C64686326E4F043C1793_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m21F09FA72B93DFAAC5F9C64686326E4F043C1793_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDFBF58DF46770D8CCAEAD55B3C7706816D0FCCE8_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F *)__this);
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_0;
L_0 = (( XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 (*) (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 L_1 = (XRFace_tA970995ECE26D43D1CBB9058ABEC72B76D2DA599 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m62FCBA5A617EEDE213EF6738C9E04895D583FD7B_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5065627D1ABAD56A2C0C5F3781D29E7957AE5D43_gshared (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRFace>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m85DB7A0764A8F3341E752584A1A77F86FF38D6FA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F * L_0 = (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1394F8A03AB30BE0A2C56B906D4618B451DE0C9F_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCE5EF5164D66F27B1F7DE890F41DE6F13B1C782E_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m855E35A9F5211A6D37B44AB9118F0CC3E6ACE913_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B EmptyInternalEnumerator_1_get_Current_m43093D0F3B301A23E1B6AD89B6828E109AB504D7_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m43093D0F3B301A23E1B6AD89B6828E109AB504D7_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m98BF4030AAE0D4FBFBD7AEBAACB7B6DAEAF8D333_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 *)__this);
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_0;
L_0 = (( XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B (*) (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B L_1 = (XRHumanBody_t1AA9DC3BEBCF86A64BE2B83452AC5704AD08C13B )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m001002351CED2255F97BD8CED564217E465712C3_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m4E98B6133B0A9723A2AEC177CBA13B5D7591AF47_gshared (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBody>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m656F6218F046BBA9C8ED1A8D96A2FF6D62C80F8A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 * L_0 = (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t39867F16054D83E519B30F851AD4C37D29CBF5A5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6EF4718481F2ED5BAF41F6EBC97E3BD3BF6E2F92_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m344C453F414692DC3E107FAF1C01AA06F6EC14E3_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 EmptyInternalEnumerator_1_get_Current_m6244DB2D123516D191BF5E60BB3E5BF6161EC918_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6244DB2D123516D191BF5E60BB3E5BF6161EC918_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7F92119CEC7081DDE33BA437A74E3034BC302D92_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 *)__this);
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_0;
L_0 = (( XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 (*) (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 L_1 = (XRHumanBodyJoint_t80D5022A816E4F24C92A9EABD645794FC0B5E2E4 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m01649FD5E7AAADF2DF3C028424FA6F586072B13A_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m040E4ED3C4C530B5910FB6BE4B82AB7B5EC82D90_gshared (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyJoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF1DC239DC55F581A3A5D8883EBA2D9E6EA38BE03_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 * L_0 = (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8D2A92095E81AC95D9EA1F3BAAC8E7A307C76585_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m68B2B0C4D0C8B2CCC06DA279EB74968EA69A1B18_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mC03D20FFAC745A0E10070B7AB04967E8642ED8A1_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 EmptyInternalEnumerator_1_get_Current_mE7A4B950E4DD91712A78BCD55C11ABAFED923AEC_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE7A4B950E4DD91712A78BCD55C11ABAFED923AEC_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB0E801F89B5831AF8F9C4C6B78C81B9F9115A69C_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 *)__this);
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_0;
L_0 = (( XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 (*) (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 L_1 = (XRHumanBodyPose2DJoint_t901EEB0FA2A9FF2D258978EC36EE0852FEF35BA4 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7B8D25BE27A0B78F9FA95D046C55F1E2D7833586_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m90070DBA475B970795A20E6D211676DA1E77D5DF_gshared (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRHumanBodyPose2DJoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7231808B447F7F90E158D562417C9F845269972B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 * L_0 = (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t56028DAD62447A4A705E50BC6ED104937606F378_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m39529B07459607DC3E0561B857F8994A462F4401_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m029D3C7E58672356E5B3D326F5573433D5FD19F2_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 EmptyInternalEnumerator_1_get_Current_mC4CCF9CB76A4337890C6B5F637D58F14CD0C01D6_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC4CCF9CB76A4337890C6B5F637D58F14CD0C01D6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9C53889987A64309EDF1A2A2F0826B9D0873DBE1_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 *)__this);
XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 L_0;
L_0 = (( XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 (*) (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 L_1 = (XRNodeState_t6DC58D0C1BF2C4323D16B3905FDBEE7C03E27D33 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m63CB630E89DBA45B8A8A8F80C24104017842CA5E_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m63546B96B7842C9ADE36528B80C301E9FF6AA9F3_gshared (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.XRNodeState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5D09D815287A66948E13556EBAEB599B0F786D6A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 * L_0 = (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t39F8FBD7BAF43D07A717A48C34DB6D64016BCB60_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m108EDCDE4D7824574F2B2CBC1EB6426D418462BE_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB1908E125E0DBA112CBFBFF2BFC44A442C15275D_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F EmptyInternalEnumerator_1_get_Current_mC321183672C9AA4CEA092B03C5123F0081B83CE5_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC321183672C9AA4CEA092B03C5123F0081B83CE5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0BD0EBB1B73354001DD80C2DD03997CC8F95E52D_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 *)__this);
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_0;
L_0 = (( XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F (*) (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F L_1 = (XRParticipant_t8CFF46A2CDD860A7591AD0FC0EE563458C8FA13F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB08F8F65F785AA003A4F5E2A9373AA8202D27A49_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6CDD5521ECDF6E7AFFFFBA44808BBFEE789D7448_gshared (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRParticipant>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m362CB4BF226B4C179A2A8F92D7CD3D92EE36CEC2_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 * L_0 = (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5B02EABA0A9FDE963913B422D3E9887C1C2C0365_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5A836AB02D60AD9E28102E81EB885DA1C680AF16_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF9C26D4B0668B4E58A872F8D14B0F74DBAF991EF_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 EmptyInternalEnumerator_1_get_Current_mC13B3ABE2A0985E2F9BFB1270897FBB096494505_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC13B3ABE2A0985E2F9BFB1270897FBB096494505_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mE6B74E0530CAC60E51462BD6D4F9FC714FB16D4A_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A *)__this);
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_0;
L_0 = (( XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 (*) (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 L_1 = (XRPointCloud_t08B41A05528E45CE709F8C14CA6C484D360A62F2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m22224BCAE4DCC1A8C21D7B3CE0400A137AFE5B0C_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCF1A546B8BA94D690456A86878169E1907A5802D_gshared (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRPointCloud>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3680519E7BFA0B172976A7506A30557F9F758D0D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A * L_0 = (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t59905AA75291C85A370100C19B126D290F94C11A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1A33C2C2B4FDF63E5BBFE4A68B908B0ABEEDD00A_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8FC82FA2F0024074A275E848BF7780BEF2B58051_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 EmptyInternalEnumerator_1_get_Current_mCADDA935579A17451ADE518C6AA88EAAE8CD3823_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mCADDA935579A17451ADE518C6AA88EAAE8CD3823_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m79D6A32FE2A4A8C1B0CC6F85D05EF5156ECBD49F_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 *)__this);
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_0;
L_0 = (( XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 (*) (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 L_1 = (XRRaycast_tA18F9107EFF1D692E70EF15233BB6134A5F66C55 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m0038247BFF65F84133E8C082C3089D9274D946A6_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEC38EE82C51571BCEE859827B7F6FE591BCB69C5_gshared (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycast>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m83033A1D6F4E83BB2D6856568784D3D6DF21D5A5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 * L_0 = (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t0FC6B733CD6C4F29957D57C6E2F3C41E821C00E8_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1FDBBE43F3977531EC758865FD0F0779AF35EEA5_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5099F6D4070061FDF79DDF4AE545959C1D53917E_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB EmptyInternalEnumerator_1_get_Current_mE3E0028E2B2B8CD3433F709FF26A0513251E4420_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE3E0028E2B2B8CD3433F709FF26A0513251E4420_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDBF2129AFE4113581E20C1163ED9F26DAFD35027_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA *)__this);
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_0;
L_0 = (( XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB (*) (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB L_1 = (XRRaycastHit_t94A3D13B245A9D0A7A7F2D0919DCAAC7C8DF8DDB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF7D8DFB198C9C5D36620FC4001CAFC3CF4D3C88C_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mCE2D1A5FBA247D363963EFEB38C831FECCF1B477_gshared (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m75CAF7DFD288D280BD7EC02E552C2801AD9BDCE4_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA * L_0 = (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8E3F893DA36AE412DC37C8D128CD9C388FA989DA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mBC651E48B0DDA7E3498BC2D73BA26647103D46F7_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4E6D00B5AF683E14C4D177DBA3551B5A2843EBC4_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 EmptyInternalEnumerator_1_get_Current_mC1217F4D21EB4987EC22B9A2AA2A0FD015FB1168_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC1217F4D21EB4987EC22B9A2AA2A0FD015FB1168_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8CF9CF1DEA637A4F4F95B2B61AEA83513622F630_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 *)__this);
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_0;
L_0 = (( XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 (*) (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 L_1 = (XRReferenceImage_tB1803A72EB581FB35B2CA944973679132A1D4467 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7DFC2AF2B406A8F0AE454802DD81646A2E54727E_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6174F381174A3B3FAF2D50B5AE68A289E39D5B3F_gshared (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceImage>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m2AD6A6856FA1933FBCB399BD677B3BCE74DC916A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 * L_0 = (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t04FEF30E8FBB8FC9F0A7DC896D52A9B4E7DDC0C9_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFE073F1D6485A7F596B0A12A9587BB13ABC5C842_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD858F49D9187CBBB17E2FDC2CAD5109C9890C569_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE EmptyInternalEnumerator_1_get_Current_m3D15FB4CB697367930FA7FD5BCCAF80003DBA07B_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3D15FB4CB697367930FA7FD5BCCAF80003DBA07B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m5D4C3A58D19D2852037A2B8C82E09883CCC93958_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 *)__this);
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_0;
L_0 = (( XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE (*) (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE L_1 = (XRReferenceObject_t18877E1C9F50FF11192A86805D881349020032AE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC13D55A4CB1B9792794BC60A137A86CFDDC2D134_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m58D2905008C91EF727591DE41272D6EDE618CB52_gshared (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferenceObject>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mFCAF920F6B0DE24600575439E62F9CB90E972302_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 * L_0 = (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB5C762637F9D8FC5710D69D69939A2A3C5575F28_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC7035A6FCDE940B0FE52863E1EADD96796DC9FE6_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7ADE9FB2FEEF81CA04394111796DDDEAF61643EC_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 EmptyInternalEnumerator_1_get_Current_mA9EB37EF57DF1CC1242381A6C951A4ED9D6388F4_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA9EB37EF57DF1CC1242381A6C951A4ED9D6388F4_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m46391704E1B3405FB8594C16449F7A80FDE54274_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA *)__this);
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_0;
L_0 = (( XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 (*) (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 L_1 = (XRReferencePoint_tF3ACF949B4AE1EC67F527F5D30DD8B912A814634 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF1330C0D36AFAD062A67B9CA1FBCEFF2B8992355_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC1E68215269F4D952B5B6B2F3F48B3A8ADC860B1_gshared (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRReferencePoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5562F1EC203DC707BFFCB2B379C150C242C9A599_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA * L_0 = (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE3F47BCBF53D31DA669CBA296EEF1E16E7EB13CA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m763BF22AA554CF1DD5AD43D4F960185B4221CCB9_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8518E3B09ECEBCC9771EDFD56440DA89448B8752_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 EmptyInternalEnumerator_1_get_Current_m207D526285FF061D9B3543489B06C34417142455_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m207D526285FF061D9B3543489B06C34417142455_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m37868EE385B3598E54BF370032B5AAB3911568C2_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 *)__this);
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_0;
L_0 = (( XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 (*) (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 L_1 = (XRTextureDescriptor_t9CA857DCCC1208B74376787BE4F3008A01B29A57 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9D1F863CF75445F50A437B3FF84763E3E0A3E0E5_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m71AD914E6AF74823123A0F8618CD06039B0FB686_gshared (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTextureDescriptor>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mAF6E73CEE14D3555AE8FF544E095968C26DCF4DA_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 * L_0 = (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4E84B6890D53AAE4C8F57E5F75140FAF4F8D0235_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5E073266D77B8AB5A74B2B4310E3DEBA2F5EBEC8_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3A129CC2EC4E27171CBA8735B064E9F2936D5FEB_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F EmptyInternalEnumerator_1_get_Current_mD80DE8C9D8B7F04F8CCB8341809C8C234F21681B_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mD80DE8C9D8B7F04F8CCB8341809C8C234F21681B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2EEED15F4EF6507D21F4F39C349D8AFFFAF36D1C_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE *)__this);
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_0;
L_0 = (( XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F (*) (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F L_1 = (XRTrackedImage_t92B53E0621C6D2E930761110E719F0E9580A722F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m99E5353A8BD3D288E30C194AA2070C3E27B2EB7A_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m35C0C1EA84DFD87F99C3F64845A78F1DDBFE5385_gshared (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedImage>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mD7032947A1808454402FDF18358655E2F25B9CDE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE * L_0 = (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB78C4D65655A0CD8E204629E7D3D679DF5AD08EE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mD2D6F80156004E8E955E677E3F74C0F484CF0853_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mEE112F29DE8488C4AC5550512662DFCF8D522DE5_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 EmptyInternalEnumerator_1_get_Current_m3C4CB81398E896218CBAAEC9A11B01F1A143DB6C_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3C4CB81398E896218CBAAEC9A11B01F1A143DB6C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2101F89C7CCE127FB4274253B323601F23312B8C_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 *)__this);
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_0;
L_0 = (( XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 (*) (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 L_1 = (XRTrackedObject_t247BBE67D4F9308544C4BAD807F321E0C404EC58 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC7103D610D0E8C4AB2BC98FF79D9EA59D776899D_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m06333E62D3FDD499E942483ADA2F62BAD9109554_gshared (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARSubsystems.XRTrackedObject>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m7C1C4272D42ADBE76C8AD6CDA0C0CEA59A3D4C26_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 * L_0 = (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t36B9FA18CD4B3E31640AF10B79D433C1EED25487_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m5EE3B543D5341A30E2E130848DA78907E83609C0_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mBF50F3A5E9D25C5BC24629E84B78B8F814A9ABE4_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587 EmptyInternalEnumerator_1_get_Current_m995EA9B176D7546D9CE40BF148789B107BD3EDBA_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m995EA9B176D7546D9CE40BF148789B107BD3EDBA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mCBA5F521AEC8D6C98B4CA15D9319CA47EB2211B3_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 *)__this);
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587 L_0;
L_0 = (( jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587 (*) (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587 L_1 = (jvalue_t220BECEE73180D6A4DE0F66CB6BA852EC6A5B587 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m47A362D1BECFBBBA6E8786962672F24C7A1457A3_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m55A63CF832B644B5513A3C03390FF03D703B9DAE_gshared (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.jvalue>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4D93A01025E42E2CDF85814DC9786956E223C009_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 * L_0 = (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCA61C4E9AB06E9560096B8164444E558D9B6D877_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m17AA8650DACE5922B6350162A9221185CB3735C5_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mF7B2687575298F5FECAD355DE46D75D53B1F3DF8_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F EmptyInternalEnumerator_1_get_Current_m814A6B482FEED3F966D80EA85FDEEA0C2F5CD17E_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m814A6B482FEED3F966D80EA85FDEEA0C2F5CD17E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC9489A98B940705914086D0FADD7EA9CE0AF8B2_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA *)__this);
FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F L_0;
L_0 = (( FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F (*) (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F L_1 = (FaceRegionWithARCorePose_t85CE44F6ECD5E3D6DB8ECD043407E311EBF7F35F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA0C0C7FAF52AC9FEFAE0E12B976EB890E57AB58D_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m1EF9BAB1F56C2C9EB1E594AA7411073A7E353089_gshared (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/FaceRegionWithARCorePose>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mABA6BDC579608B0794A7764415098D8F2625468F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA * L_0 = (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC3ABDE9F591135B45062C8EEB6F1DCB6E54268BA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mCB94ACC2B55FD16AE60232BCEFDDDCC829124521_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m958CDF301AD80A879448A0F57A3DDD4B5A36CC7C_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1 EmptyInternalEnumerator_1_get_Current_m1399CC63AF57DC03D76353E6BA10A0A0A5015529_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m1399CC63AF57DC03D76353E6BA10A0A0A5015529_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2643B2C25D720E18F403E86D371F1B57B74A47F1_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB *)__this);
PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1 L_0;
L_0 = (( PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1 (*) (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1 L_1 = (PointCloudRaycastInfo_t3CEA434CD8C654942880AB891772D174AE33A2B1 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mDFF867585B22884E6BC49DCAA28FBCDA922D7EE1_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m48CA9D0B0AB7B6BD1F858D2B8D588C2A658896A4_gshared (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.XR.ARFoundation.ARPointCloudManager/PointCloudRaycastInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m633D2FF1DDCAAF0AE4D498544D7DA2C947517370_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB * L_0 = (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB62C1FD1BE6EC6AFB4C25D02827791C0431A41BB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m38982BB2D1DAB7BA881F29C69FF7AFC1571BE9F7_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDD6A43506AF90C06AED3AB18B58DE5F0D8E524D8_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC EmptyInternalEnumerator_1_get_Current_mB0A6A208A96215B705ADFF9253F27DA2BB0C007F_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB0A6A208A96215B705ADFF9253F27DA2BB0C007F_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m2F0DDECD58A9B08852F86688A70107DD9DE74E6C_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 *)__this);
AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC L_0;
L_0 = (( AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC (*) (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC L_1 = (AttributeEntry_tF297C4D0035E9C113388D7B4128D1A2334E9ADBC )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC9F44C99F6AF2A370E49A71887D834941B173184_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m91774F7992E1A4752705A66C1DFD6C4F0A1E247C_gshared (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ComponentModel.AttributeCollection/AttributeEntry>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3274B9D8113B2416D71AE013078D788AF1BF52CE_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 * L_0 = (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5C3781F8814AB66177CA4362C825EF938A8B5B61_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEBD50F7116837BF2A2FCA37250FF2031D2035556_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m68731368FCEE6BE9F9FF15A5289376CC1BE089C6_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 EmptyInternalEnumerator_1_get_Current_mF7CFB04ABBC45A05C0FF80E10D5883CD63EE04CA_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF7CFB04ABBC45A05C0FF80E10D5883CD63EE04CA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mC0A819E6A0D08306EC412E0427541612F48C92EF_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED *)__this);
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_0;
L_0 = (( OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 (*) (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 L_1 = (OrderBlock_t0B106828F588BC2F0B9895425E6FD39EDA45C1E2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m979A961C68D2C5F60EBCC4B3FB05780FF0F30477_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m24D4C28FB3DB63F3DDCFF0BFC9CD0EB7C37C1E3E_gshared (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m302BE07487C8B8E30293FA936C504160A9A14813_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED * L_0 = (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t358EDE63C99865E62702448FAACEABAEC278D2ED_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mECAAB9705550E6C45D3829397012FB21572EA2DF_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE796689CA49611EB8636F962EB8747DDB189A28F_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 EmptyInternalEnumerator_1_get_Current_mA5E8E5D318447890F7D3F39BE26C303D499B3BE5_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA5E8E5D318447890F7D3F39BE26C303D499B3BE5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m7EA6FE1D3310DB74D0F58F132CF00FF1EC99028C_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A *)__this);
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_0;
L_0 = (( RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 (*) (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 L_1 = (RenderRequest_t7DEDFA6AAA1C8D381280183054C328F26BBCCE94 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m57761BB1B97B234C1F5200A9D96F142E2F1BB44A_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mEA6047BAEE8A82716C04E82D63DAEE017D14D673_gshared (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m48DAF30B408DA8F787F05139FDED6DEBBACAD852_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A * L_0 = (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC2DC768C893401F3201F97825245090B967AFE9A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m07A22C77C89E030049320E1A99920AAFA344EAAD_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m19AAE4CA5355FBED17906399A7CF75F942B79A34_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 EmptyInternalEnumerator_1_get_Current_mE460F6B1410945A647FFE082EC5BA5E68E81ACCA_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE460F6B1410945A647FFE082EC5BA5E68E81ACCA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m4EBF54BD40625A118A2F708B2DE276D8D22FCE71_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B *)__this);
TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 L_0;
L_0 = (( TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 (*) (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 L_1 = (TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m59F21DAD90F712953289771295AA5EB721E64FC7_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m56E0472CA3DB0E7C47083C982A88ACCA65D35BA1_gshared (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCC6C1E8913E66CB8D41FBC9EAB0E2594A567CADD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B * L_0 = (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t08947FD048E88D15D0B7C8BE10F545B46097E61B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC8D9AABD9758580A59DA4C1536F67324EC913F06_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE4AFADD80F877609533D2764CCCE2AB8413B942A_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 EmptyInternalEnumerator_1_get_Current_mA48A2D52EABDC523021AAA120986FFCFFE7549E6_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA48A2D52EABDC523021AAA120986FFCFFE7549E6_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAC6A39D6128BEBFF9FEC36ABBA07B5C6E6466613_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 *)__this);
TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 L_0;
L_0 = (( TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 (*) (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 L_1 = (TypeConvertKey_t91174018D8876CDEA6705B42BCE3FA14D8F97AF0 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5DAF4C7CDE4421ED2F1CFBAAF465C461A3BDE64C_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF9C5F1C0039100EB4326202571187D8A2FE0857F_gshared (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.Json.Utilities.ConvertUtils/TypeConvertKey>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mCB484090ECB78FB23061799EA092CA874DA48B88_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 * L_0 = (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t02B9496524698E3A67DF1B87BEB3B348365421C4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m0694AA27D29FF3FEFDFA88608A651533DFA4D523_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4AD1CD75460FED12D65F68ECE3CA001C961B2CEA_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A EmptyInternalEnumerator_1_get_Current_mFD0BC2826CDFA9B6E31207DD6E7DD6F8F48F0A85_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFD0BC2826CDFA9B6E31207DD6E7DD6F8F48F0A85_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD3B9586E274ED38E72BBF35EE3F1FCD4E49B1309_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 *)__this);
RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A L_0;
L_0 = (( RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A (*) (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A L_1 = (RecognizedAttribute_t2EEDD81B78A9A885AF1B6136D15CA9EC47C23A8A )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m904A9FAFE15B9277AC171CF055A15853DF15A986_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mF709B0AA81CB63747DAF6053385BBE4D2636153A_gshared (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.CookieTokenizer/RecognizedAttribute>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE3A806122C82B00B3946C166B02E630052E4E25A_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 * L_0 = (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t9674A9A497E405A3CDC2BC575DFE2818DD8414E0_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m35297DF4BFE588ECD19C5A1A5A44E43206220F8D_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3EB1F9EF4764D5ADEBCCE842C5FDBAECB93D7489_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568 EmptyInternalEnumerator_1_get_Current_m23D6F9FB4C2BD6B9058DA9DA90E34571664EFC55_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m23D6F9FB4C2BD6B9058DA9DA90E34571664EFC55_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3748D38C598475E4C79BD8D6744C9E6F4C8AE27F_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A *)__this);
ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568 L_0;
L_0 = (( ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568 (*) (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568 L_1 = (ColumnError_tF4FBD0333E1398D81D6DE8149BCAC5CE6214B568 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m14F971BDF606F27B684274E9EA1688923E8015CA_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6E2C14242EC9524328588C19643267E53106419B_gshared (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.DataError/ColumnError>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8F73EFDD75CF1BB5794ED52ECD0775D333EDF97D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A * L_0 = (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t69541F1C14761772CD1DB08D0B07EBFC6A989F7A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6A365C091BE4DCF54E2B82E3F87127EBBC57DD9C_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mDC095B70DE23C72659A8FFE90655B3096B1C3D17_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62 EmptyInternalEnumerator_1_get_Current_m8175E434C807E7223293B6F44B2279FD10AB9E98_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8175E434C807E7223293B6F44B2279FD10AB9E98_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB8D710909A24EB6060EE846527DE2EE2ECF515D7_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 *)__this);
ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62 L_0;
L_0 = (( ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62 (*) (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62 L_1 = (ReservedWords_t47DD3733DE702FA92AB9D25895E938A9B3645C62 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m42BACB590A198ED16D13E965011CB99829EDC521_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m35E948D29381FFA9B8EA83C4CE4AACC05F784E5D_gshared (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Data.ExpressionParser/ReservedWords>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5594929456E21B91A3C55A07946A8F4A56C61557_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 * L_0 = (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t866933D011CF94DA208D58E47A617AE57387AD36_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m1DD2C8DF9C838E542FE88F58401566695FBC2B97_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4E67E4843D320CD90A9F2312E8592A8A419A0539_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D EmptyInternalEnumerator_1_get_Current_m0F71CAE23EACB2F1DA49911C7A9E814A0009C3D9_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m0F71CAE23EACB2F1DA49911C7A9E814A0009C3D9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mA3DEDFD71A21483FDCEADB190BA17CC0CE6EDD39_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 *)__this);
bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D L_0;
L_0 = (( bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D (*) (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D L_1 = (bucket_t56D642DDC4ABBCED9DB7F620CC35AEEC0778869D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m6F1F0075D6ED693F2B3E2B1EB94AE26FC8041B54_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m58B38863495D0B4E5896504A61E58B76A41284D0_gshared (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB9C16E4BB6D2CA5D56FF313638252153733FF815_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 * L_0 = (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t722CE7953BDA5EAB673D0A20586B627F26F3FF47_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mEF529BA261CC11EA2ED1D6A074CF0D7E25BA2FDB_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m39E10C852876CA54F608F89D7D5F10B88478A415_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103 EmptyInternalEnumerator_1_get_Current_mDD4A10439121CB95EC454809C4EC9DF96F3978E9_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDD4A10439121CB95EC454809C4EC9DF96F3978E9_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF1EF117FE6804C828CD6F921F57AC0744E1A89CC_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 *)__this);
IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103 L_0;
L_0 = (( IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103 (*) (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103 L_1 = (IntPoint_tC153C0B20EDB9CBEC73F65D9D19BA60A19BD5103 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m549582190B5DBD19F5A841E45AC5DF3B40F2D015_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA2E491D182F8F436346474763D8E437B3D80DF87_gshared (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<Mapbox.VectorTile.Geometry.InteralClipperLib.InternalClipper/IntPoint>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m780F66C7A1F6C8C21372B90B8C520AECBE4A4C6B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 * L_0 = (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB29CDC4D12463F280DB3BFED1F61FC0E53F76998_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mDFC2A41E6BF4B6718FE77D09DF4E3C4A21C24B89_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m50811E1D8251155D976EA3AD3E6A99B5917B600F_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE EmptyInternalEnumerator_1_get_Current_m519283B34C8D7DA292472F3F85E0347578BFBC04_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m519283B34C8D7DA292472F3F85E0347578BFBC04_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m05E083ED211E105B5FCD3D795D4F5C7440690DBF_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 *)__this);
FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE L_0;
L_0 = (( FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE (*) (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE L_1 = (FormatParam_tA765680E7894569CC4BDEB5DF722F646311E23EE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8A33BB1083252345CBD34355859C1A890D3F4CE9_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m66B5E79977F4097221FA85CAAEA45F6824FD6BAA_gshared (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m110212CC7756F46798EFD2EE657CFDC34701481C_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 * L_0 = (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tE697715FD913EAFBA4E17D8865C36C4863EC7428_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF34EEC1786E4BC4C859A5E1109FDB70DAF8FAF26_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m6F2EE3BBE1D71EF488B2F451D3101B48B6211B86_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 EmptyInternalEnumerator_1_get_Current_m6B6DA6DE7CC242DB42A3350FC0D1A6C0EF5DAF9E_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m6B6DA6DE7CC242DB42A3350FC0D1A6C0EF5DAF9E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m93D6BFFDC0A06B6842F12674D7D7FDEF378E3C6F_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 *)__this);
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 L_0;
L_0 = (( Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 (*) (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 L_1 = (Particle_tDAEF22C4F9FB70E048551ECB203B6A81185832E1 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m30E8FA24287F7A2FDCDEC1FA0575833D87674AC9_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8BD3E69540A6CDD24DAB2EA73E210C895BB7886C_gshared (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.ParticleSystem/Particle>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB53256DD92837EC1671748B27342D276B37B2C40_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 * L_0 = (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t3105CF83CD9BCB53534C1A58DA924FB226F4A2C5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAA076CB342C133E9D63FE198191BE5D330CC6A75_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCB5B3F372821E49B4DD5065D53E8B5C19298DD76_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE EmptyInternalEnumerator_1_get_Current_mBF7187FF16EE8F146E1FA163524756015E5B0C61_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBF7187FF16EE8F146E1FA163524756015E5B0C61_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mD8E46859BAFF8B7EAE1A013CA5B91A53D8B77887_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 *)__this);
LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE L_0;
L_0 = (( LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE (*) (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE L_1 = (LowerCaseMapping_t54FB537AEA4CA2EBAB5BDCC79881428C202241DE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mC5DE6ECAC6406AE33371EB949173200DA970941E_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m679C7C9757578D04C61E5458BB41CB4E9451795C_gshared (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB0E496A35B5B51BD8385579E35E4A9308D842BD1_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 * L_0 = (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC497CFE7E54D32E49F6EDBD2EEC94FF24748E774_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4974A843ADB81941ADE4BF3D70DCBD8FC13220CB_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mCBAFB240BB31F7B25499072A13006AFAF9C3F944_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 EmptyInternalEnumerator_1_get_Current_m7F9AA0352AA85934A1B55036E3259BC9D3EB7712_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7F9AA0352AA85934A1B55036E3259BC9D3EB7712_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mFC5A7CDB0C47AF63E24B00DDF6681E9813C6DBC4_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 *)__this);
IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 L_0;
L_0 = (( IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 (*) (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 L_1 = (IndexInfo_tD66C4011151852EC41F0A684570825E472DE4A64 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m71F54227FC0D1076807A554917572E7DDB802D72_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m7C1057485FA30861F3B1660EEE044D68A63D81FC_gshared (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m3C1C0D70C98D30CB68AF646DA7E140030F3D1A43_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 * L_0 = (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAB04870226E7D466193321F968A4DC234A71DB90_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA55DA2E107498B0FC65F9DA3D1BE0409586AB0B5_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m93527AC07C313DD7FC32F6F0F6B529FF0C1AA4A9_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 EmptyInternalEnumerator_1_get_Current_m3067E50217CD249B4E702F11E31F4C36679D4A9C_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3067E50217CD249B4E702F11E31F4C36679D4A9C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m8BAA9A3C4258EE6B6AE959991B40EE6719620D60_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 *)__this);
IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 L_0;
L_0 = (( IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 (*) (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 L_1 = (IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3A284457A778C027B561C24236AB4331511A9587_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB166B7DE6B84BCAD4EA0F0B1ED5927F0E4CF3AC3_gshared (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m225F1A08F85BE1299C2A9152D991E0F64FA639F6_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 * L_0 = (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC31EEA11059B0F03F2A06569EF6BE9A9609FCB47_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m78B4A81CF0ED684D44DB199F272F4B2919B98EEB_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7D0DF916A4F3862CB3EFC57D3DEE15FCD7248DD0_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6 EmptyInternalEnumerator_1_get_Current_mF5784E2ED78CFB4F441154433426CEEB75AE78CE_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mF5784E2ED78CFB4F441154433426CEEB75AE78CE_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAF4FB3458C544E03CC5C3D745EF824F6B5626ED8_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 *)__this);
HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6 L_0;
L_0 = (( HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6 (*) (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6 L_1 = (HitInfo_t74B96DDC302EB605CCC557B737A5C88EB67B57D6 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m9FD7FF0C29D33C59181D6DDAEE5D795035CCB757_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m330E3F387270419CCE4E388AF16E15967DE00999_gshared (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m440C16A0F3F9F5A576935272A47F242BC7A7BB2B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 * L_0 = (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t279FEE66D5269BCAFAE1A52E72858BBDB6786F92_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m6CB29EE16E9025257EBCE6F47E78F5D17BF62686_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mB8BDB39B8FB5C76DB7B4467CF6940A8205082E4E_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED EmptyInternalEnumerator_1_get_Current_m3E5FF981865922403A9FA2C9FF3BE13BD326F4CD_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3E5FF981865922403A9FA2C9FF3BE13BD326F4CD_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m9EFD410639347D3151C36D0416BF582502A82985_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 *)__this);
SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_0;
L_0 = (( SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED (*) (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED L_1 = (SequenceConstructPosContext_tF123DDD568337316B30320BDDD88646EBA9F94ED )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m3769C9A3B6B6403B624D3DC8054ADB2C0A18A4CB_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m9F7569B4E885A11AB4C637F401998FB0BE1E7E86_gshared (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.SequenceNode/SequenceConstructPosContext>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8242DE33F0AB9C03C0E1040FE68CBB4D23F3DC11_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 * L_0 = (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC7B404BFFB6EFE7AD7010E1251BD57B3096A7E54_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA2F27041881ED2840FA6A0C5C68532AC6ED8D0D1_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m5C7BB9EE23B5535F0E9A9EDBEBDD40DB0F664833_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57 EmptyInternalEnumerator_1_get_Current_mBBF016A8115BBBB50A75F5C3F15C72F4340AEF5C_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mBBF016A8115BBBB50A75F5C3F15C72F4340AEF5C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mEE11A3F98ADE040F28D590B0AA7FB042DB5D5D52_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 *)__this);
WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57 L_0;
L_0 = (( WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57 (*) (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57 L_1 = (WSABUF_t982D1FB4F102556DD0ABE9F8AC73FDA02B581C57 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mF5CD87B9C8A52032D397BC5BA4AD901840B405AA_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m02BB6243FD6D518424D58AD0495599E57666B3C1_gshared (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Net.Sockets.Socket/WSABUF>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9ECFB20BD4CF063F252AD792969F247745C31F9B_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 * L_0 = (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tAFBF291D27B33B60D837072DFB7B292FD1301E38_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m74988D3AAAE3F81858A598619D6D77FD90265559_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m030DF24B33966493F456A9DDD4F34CA576D2551D_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25 EmptyInternalEnumerator_1_get_Current_m9E811FC7F913D9A93D5D19173F02B456CE3B542C_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m9E811FC7F913D9A93D5D19173F02B456CE3B542C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m58FD2CD896CC88C92A16A1B2DA6AF065D53F173F_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 *)__this);
UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25 L_0;
L_0 = (( UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25 (*) (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25 L_1 = (UnicodeChar_t7C67F31D1AA3029C5AC96F50A8312DB6F9BB5B25 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m828620AAD6F31DF7C81EEFE27DAD9564469FE9C3_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB98DFFC8DEF5585BB8306DF2748C6E4316C6ADEF_gshared (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.TMP_Text/UnicodeChar>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mB149736F77F18ADBF0F32CD1B011280475D88F97_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 * L_0 = (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t86F182E0DBAD3CF7EEF65FFD4051C567CCC89173_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m4274B0AE57B45DD51F67E3EAEE74551B11222985_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD606ED985637A586516AF4BD25340C3D25C17E51_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Frame_t277B57D2C572A3B179CEA0357869DB245F52128D EmptyInternalEnumerator_1_get_Current_mECBE89DA4C45777AF951923C1D43F85751A1D6DB_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mECBE89DA4C45777AF951923C1D43F85751A1D6DB_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m19ABF6996540E4710D5132C166B10C3D2E0C44E9_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A *)__this);
Frame_t277B57D2C572A3B179CEA0357869DB245F52128D L_0;
L_0 = (( Frame_t277B57D2C572A3B179CEA0357869DB245F52128D (*) (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Frame_t277B57D2C572A3B179CEA0357869DB245F52128D L_1 = (Frame_t277B57D2C572A3B179CEA0357869DB245F52128D )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFF3F327DDCA88EAFFBA0D7601E6E90268FD001E1_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m580751903AB1A756ABCA57265CC5E6DB8A500E88_gshared (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<TMPro.SpriteAssetUtilities.TexturePacker_JsonArray/Frame>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m74A5174F043C60C9617DF5995F94B530C6449F2E_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A * L_0 = (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t8B41A3C4CEAE735DBA6B14D5C3B153B9DF59157A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m24D5D53C9DD52D87751A7AA8744D12F0C5BA2421_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m3A07B40B1F118297B2E889E305FFC95D3EEB4EAF_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4 EmptyInternalEnumerator_1_get_Current_mFC3EBF1AD6A5D9B85B6067FD85D86F31C07E2BFE_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFC3EBF1AD6A5D9B85B6067FD85D86F31C07E2BFE_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m14B9479E2C4B79743A63E6C4882091DA1F46DC80_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 *)__this);
TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4 L_0;
L_0 = (( TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4 (*) (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4 L_1 = (TimeSpanToken_tBB2E9D0BD794CCB721E9A74784D5C1BDE33882C4 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mFB14918F4C49B0966D5AD5E2A79BA0D51BB3EBE3_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6D4538ABE9C4494322EAEC64B6D2FA014746A384_gshared (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Globalization.TimeSpanParse/TimeSpanToken>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC4406BD8A90990D6A2D90404E66A98180A20AA9F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 * L_0 = (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC64B58634E8B762371B6C5983D0AD2F286F85923_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m51368147CC254021C11CA7691B62204982ED05A6_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m74BAE47AFFE6FFE558EAC93B910B033B372A1C65_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 EmptyInternalEnumerator_1_get_Current_mDE16A267662E780FBC82322414516BC3311C291B_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mDE16A267662E780FBC82322414516BC3311C291B_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mABA06DABF7E6E90156B636B6936FB54D7D726878_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 *)__this);
PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 L_0;
L_0 = (( PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 (*) (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 L_1 = (PoseData_t3F5C8C74C50A6ECAE42890BBEF683882DB4E97C3 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD3121984794937811C7CD52505423FCF145EFFFF_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m240B587205AC60D34B47CB71048F1A9E1C8F5DAB_gshared (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.SpatialTracking.TrackedPoseDriverDataDescription/PoseData>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m0B3C42AD3C628DA86406CD7EAD1662F64AFC9631_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 * L_0 = (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tD70B6F1760E51C7C378C3AA9BEFD3C0EF1038174_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m556DFF4C674003E8C5D14C416B1C2E48D103AEBE_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8A275FDA2B479C4CA7559729C1DD4D04F243EE1D_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 EmptyInternalEnumerator_1_get_Current_mFF5E1D8AA9EF5664DBF82F2CA9446F57F3EE37B2_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mFF5E1D8AA9EF5664DBF82F2CA9446F57F3EE37B2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m543923EA2B902EF34311FC1C7D46AD8703A4C4EC_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 *)__this);
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_0;
L_0 = (( WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 (*) (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 L_1 = (WorkRequest_tA19FD4D1269D8EE2EA886AAF036C4F7F09154393 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m08A56B23933BEDDDD206878A1056D763B7FB795F_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m304A2FDD6E964B07D6C17F681280D265F2456E34_gshared (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m00644570BDC15D605722C2AC48B990F66154DCBD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 * L_0 = (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tB0204AEDE076DC986248229638A80CDDE8B26F51_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m525923B2743021538471CCF362DF5FBB704DC9E1_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8AE4EDD41C0DFB3D9F101145D2025CB340CEBFE8_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8 EmptyInternalEnumerator_1_get_Current_mE1ED85AA51186ED667BF5B6ABFB1D0715DAB6CE5_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mE1ED85AA51186ED667BF5B6ABFB1D0715DAB6CE5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m85C523521BF3B6C99091BAE3D2BDD7C4BCB8AAFF_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 *)__this);
XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8 L_0;
L_0 = (( XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8 (*) (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8 L_1 = (XmlEvent_t90A3FD5589BF0CB095CF3B7A0F395CC1604B92F8 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m8F1133B7B8D0EF52EB7C09C01AE9282FDE474600_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mDCAF26141B5702FB78508535C1C546AF523D6712_gshared (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlEventCache/XmlEvent>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m008586083CA53542D05B7B1CDDF5F9A3239FDA00_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 * L_0 = (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t59F637C34AE26604D2206E6EACA6B13E99997492_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m74F4DF237F401CDF6856551E0B261793FA6F7413_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m8008B7E6DB1DA1986AA1F0E49030EEE74B741E11_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 EmptyInternalEnumerator_1_get_Current_m98D7E73365918DD24D77ECBA985B8F345D4F0D5E_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m98D7E73365918DD24D77ECBA985B8F345D4F0D5E_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mBCA49483E03B672502B830A35B02F6A30347ACC3_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 *)__this);
NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 L_0;
L_0 = (( NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 (*) (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 L_1 = (NamespaceDeclaration_tA6C088F040DB7BC93B5EAF72BFB90CE3C5D1AF48 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m05397736A1B2B5B5485D9FE9008D815BF7A916BA_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD20C7D05BA564EC4A352ECDCEBB98626CE272510_gshared (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNamespaceManager/NamespaceDeclaration>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5D02E802A265848B95D9597DD41C6C87314C7DC5_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 * L_0 = (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t138F9C08430E69EA3E201558737AF4ECCE297F04_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m506BFA61F14FC6EAD2188ED59B729DAD368BA8F2_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m2DE1384C6CFEA85BEB093447F5F1FFA694E53F37_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE EmptyInternalEnumerator_1_get_Current_mC572DB4169F982C27338AA73D3CB3F7ABA1A60DC_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC572DB4169F982C27338AA73D3CB3F7ABA1A60DC_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDD340FF8670FA2CD17F080CE1043C3471B993738_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 *)__this);
VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE L_0;
L_0 = (( VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE (*) (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE L_1 = (VirtualAttribute_t14B76F800E0B652BBB54ACB4E1194220F49CCEEE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m7440D688121CBBF020867230BD0B7221630639BE_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m5F2FE2AE76150BA1DC9153F8556B7D3B163E34B1_gshared (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlNodeReaderNavigator/VirtualAttribute>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m846CAD903DD99B10242B699CCF9F47A1746E69D3_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 * L_0 = (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tCD3D641E90054D9B734EFB290EE0B126ED6762C1_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF4D7DBFBFFBB367562D5C38B6E90A8E4613A3FDC_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE6E925F33D7514A18D346CF17607D0F7F5768477_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917 EmptyInternalEnumerator_1_get_Current_mC674090794F4D6C15481C261B0391632D8B099B5_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mC674090794F4D6C15481C261B0391632D8B099B5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3A3AB748A18D859189231862AD4EE14B599F58DF_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD *)__this);
XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917 L_0;
L_0 = (( XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917 (*) (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917 L_1 = (XmlSchemaObjectEntry_t7B722E715509AAF744088E3EAE9EEACDC2C86917 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4E47F767552C5BD9CBBEF0BDA35E24443491BF97_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m74DAE2F7D61A8409A87F4AA390EB9C50101A43AC_gshared (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.XmlSchemaObjectTable/XmlSchemaObjectEntry>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mE9548FA31499A1FB2EDE8674EF7B1B38F4ECC165_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD * L_0 = (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4FE7F585EB2A290969950EC3F59903EFBB36A7BD_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m8600E7909B266B87FD3F8CD450D83C8F4A0A1257_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9FC2A7EB105B9E1055F2456C0BEE7D7EEF48C7B8_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84 EmptyInternalEnumerator_1_get_Current_m8D1F40775F16F76AC6309AC2E21642A75D1CA3CF_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m8D1F40775F16F76AC6309AC2E21642A75D1CA3CF_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mF21D0BE2A91BE88C128FF8697F3065A539CD3223_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 *)__this);
AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84 L_0;
L_0 = (( AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84 (*) (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84 L_1 = (AttrInfo_t746988E1A624801B5344946D4657B8F3DB86FF84 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mA3824C863DA6A88E92D7EE1CF36D5B7D18CE02FE_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m3DBFC9FD6374FBE7FCA0B0685DED8A84B856CEA4_gshared (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/AttrInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC2F0C62EC7F03F051688491BE48D49D3A10C9CCD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 * L_0 = (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tDD6155152001C8A37E18FE0EBAA1200BFA9B50A3_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mB2ED80A791D52DAF41E776A2DB7C5A05392F998C_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m9754634E6B4BAD82CD8D07EE0B60210E5D43C099_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA EmptyInternalEnumerator_1_get_Current_mB811CBD76221EF3E00013CE23B9B6018EBAF71D2_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB811CBD76221EF3E00013CE23B9B6018EBAF71D2_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6F08B0EB827AE41F23EE859F70A230CEC0BCB4AF_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE *)__this);
ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA L_0;
L_0 = (( ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA (*) (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA L_1 = (ElemInfo_tB08E61834B2BE4BA6FDD9C293D2CFFC8984BDBFA )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4673817A7F215DA02356EEE47861DF8DA0C8B0DF_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mA12922FCAB8191F0939E7B2CC45BE2A3F68D9BDA_gshared (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/ElemInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC47B5530797049A606454E552E68E7C4FFC89E58_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE * L_0 = (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t4C69263E7051E612B40836049E56977D67D35AEE_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mC94141548646D072E3A8923ACFB34B0FDC50DAC6_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m716AFC291455D99B8888FCE8B1B98BA07B3C3266_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 EmptyInternalEnumerator_1_get_Current_m48C3B52D65F51265D594D187FACF6713DDA2E9BA_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m48C3B52D65F51265D594D187FACF6713DDA2E9BA_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mAC47E4FE97C50D5F749024D98555235279395456_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 *)__this);
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 L_0;
L_0 = (( QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 (*) (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 L_1 = (QName_t85B852EA56EEC6289EE696328E2BC5038B6BCE08 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5D88FCE583DC3F46515A7405E384347CCF662B94_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m6EE86FB531CA8D1AAE09192B1D892520691F7A9D_gshared (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlSqlBinaryReader/QName>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m8AB749FC7CBE6F17CD9A73FEDFA926D251AB4475_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 * L_0 = (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t807407F86387DE4F439EE5228ABAB315286B8D03_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m84863A2E86DF87A563FFCFE1D1D4517CBA5572B6_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m259B92912F25E202584AE40295DFD069111F31D4_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF EmptyInternalEnumerator_1_get_Current_m15B23A0EE708C715FD97E17364926F9EB74B222D_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m15B23A0EE708C715FD97E17364926F9EB74B222D_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m3BA513943452CF0229DA1CD78A652C9646BAF85E_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 *)__this);
ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF L_0;
L_0 = (( ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF (*) (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF L_1 = (ParsingState_t5C1CDFE140B4F180AE0AB39A21AAA0E361F691EF )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m925AE8BA2687DBE96844C51662232F1A1C36D25D_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m8043E3DA4814806349862FA0A9C18A65255A6D36_gshared (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextReaderImpl/ParsingState>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m5A7E64A40C6C33C71B4706DA3C89B48DEA521A3F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 * L_0 = (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC4A45C636A3E451E287F0BC7A63AE5FA2EF9C1E5_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m945DDA0B933C690F4FBD82C0A0F8F9608C7BCB16_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mD0EA7AD8A9537278D8F52E7DB713471986722A30_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB EmptyInternalEnumerator_1_get_Current_m7D7939D21E59C6272BC05862431022295475E518_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m7D7939D21E59C6272BC05862431022295475E518_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m10246C2281D5689EDE7305238786CC3FD3B17605_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB *)__this);
Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB L_0;
L_0 = (( Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB (*) (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB L_1 = (Namespace_tFB1EBA6EE8C3E28B35158FCCE171FDC302CD20EB )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mB156D191F6AB8497302870735D2DAB837A711AE9_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mE903DAB1C2BC3B4A93DCF9A96B91DF36EF8D97DB_gshared (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/Namespace>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m278F4A0A5B857A8A5B8EB9B6B389F9C180FB2F93_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB * L_0 = (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tFD916BBA991A8131DB67E03BADF574C2A4D464DB_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_m50CDD6761E3A04495B9999C0622B8E50F6EC5233_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_mE352B4D973309938D13F654ADE27A9373E2DDAA9_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 EmptyInternalEnumerator_1_get_Current_mB6FD9082C6C06DEFEC8FEBCE9F0A5316EA98CE44_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB6FD9082C6C06DEFEC8FEBCE9F0A5316EA98CE44_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m6C169D0E36F76C47422BFB2E061F83FEE7B859AA_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E *)__this);
TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 L_0;
L_0 = (( TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 (*) (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 L_1 = (TagInfo_tCB16E7242088C97871045AB8D1E6B0D12350D6B2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mD7F86EAFB0B6260270D5CBCCCCB9934B34AD1E4F_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mB80E83C7731C67866C50D796EEDD3F9B1DABD0CD_gshared (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlTextWriter/TagInfo>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m9AABCDADA79F20FB8590C11267C85CBDC19FBC4D_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E * L_0 = (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_tC0170A53767F69A1E246D1C25C2DD93FD4C5294E_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mF06FAFD502E24B3C2884E65A5290AF9B378C53DA_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m50CD208C6FDA2D7C53AC0F2A651B5BF1EEE64A35_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C EmptyInternalEnumerator_1_get_Current_m3428BF61A34B2ABF0A5D6751F3404F1ED57DF645_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m3428BF61A34B2ABF0A5D6751F3404F1ED57DF645_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m0C6D7F28FE5FD32A7FD1D7F283609A8D3DB01FD4_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B *)__this);
AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C L_0;
L_0 = (( AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C (*) (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C L_1 = (AttrName_t0672A54748B35BEFB6C4C4F67D86D9612D137E2C )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m5643A4A4E0F4A96580CF72744E87EBADA6B3F5F1_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mAF3DE9E4682B46FA0D0F6C773BB2E3CCEB32BB39_gshared (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/AttrName>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mF1C27B9F618183646C3BDEB234181BDD46ACD841_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B * L_0 = (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t1E15EA439496DD81E5206CCBACACF5E8F799129B_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mA8E71A7E3DF18C3B1E197424F9ADEBA9AB299355_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m17B1CE7173DC91F16B2999B1E1FAE7D24FC897EC_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474 EmptyInternalEnumerator_1_get_Current_mB9FC1B6BE89EE5A282A0DC85B4254760D11AFDE5_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mB9FC1B6BE89EE5A282A0DC85B4254760D11AFDE5_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mDC5079BAA99EE3619540D292F2DE8D7AAC9AFF77_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A *)__this);
ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474 L_0;
L_0 = (( ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474 (*) (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474 L_1 = (ElementScope_tCAF8E72C26AA435F4628AC1523BB64E2E6CE3474 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4325BEA3247108AF01B5A0B76CDA5A2D48B981C3_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mC9A9183F2300D68DCF0EF0CE7B2650AAFE0C1153_gshared (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/ElementScope>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m4FC5D91464A5C5C9E57557DA5CE28F08549755BD_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A * L_0 = (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t7D4EE35CBD15EC42495BBEE771065E556B85A40A_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mFECD8D366A8560D32CD47A00E66C91AF57B69FB8_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m7258B732BAE2C970878A6497D6EEEAEBF12A0627_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00 EmptyInternalEnumerator_1_get_Current_mA1CDCAEAE9FF61619169B85198933BE7A543478C_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_mA1CDCAEAE9FF61619169B85198933BE7A543478C_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_mB03098C0907A154DA925ACC6F9231D5971E8080E_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA *)__this);
Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00 L_0;
L_0 = (( Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00 (*) (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00 L_1 = (Namespace_tCCD6FFC46FAE8BA6AF0D84A0DA4E18A41ABDDB00 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_mAAC16C11533CE669FA2D06B106F8957441883C68_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_mD96E3D9884B289DEDC00B60C919B294631C77908_gshared (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.XmlWellFormedWriter/Namespace>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_mC2B6C7913A9BE71B710673DBB14223515C3B5EC8_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA * L_0 = (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t76ED28AA18E5571F8D4A65E759F39BC31CAD01FA_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_Dispose_mAAF6772E6BB3693B6DD16BEC0EAC74455F4ACCB6_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyInternalEnumerator_1_MoveNext_m4E5BC1110D6577F1C959CA7ABBE1D4EDF838366F_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// T System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1 EmptyInternalEnumerator_1_get_Current_m51194060095EFD226F9CEB388093F78C67BB7E51_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_0 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_0, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7E7A07FECA0FF43839D67A9F7828EE56182CC9F6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyInternalEnumerator_1_get_Current_m51194060095EFD226F9CEB388093F78C67BB7E51_RuntimeMethod_var)));
}
}
// System.Object System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EmptyInternalEnumerator_1_System_Collections_IEnumerator_get_Current_m1731057EA4C1BC8D40134A79E8EEADCB81919DC9_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
NullCheck((EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 *)__this);
Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1 L_0;
L_0 = (( Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1 (*) (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1 L_1 = (Map_tA04953860BB198F9F070D3B4AFB752A8B51F7AE1 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 1), &L_1);
return (RuntimeObject *)L_2;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1_System_Collections_IEnumerator_Reset_m4FD22A5160785C49D195CE3B6BF828911C7A98EF_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__ctor_m580FD249C1A3727527471FC3D3D5EFCBF655B7E3_gshared (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array/EmptyInternalEnumerator`1<System.Xml.Schema.FacetsChecker/FacetsCompiler/Map>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyInternalEnumerator_1__cctor_m71D76D2F6EA04E548ECD8F03C3104EDF88A0696F_gshared (const RuntimeMethod* method)
{
{
EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 * L_0 = (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2));
(( void (*) (EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)(L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
((EmptyInternalEnumerator_1_t5E37486E66BBBC436A7F07C1766C6A206A1D2E96_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 4)))->set_Value_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Dynamic.Utils.EmptyReadOnlyCollection`1<System.Object>::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyReadOnlyCollection_1__cctor_mACD89426D4577293898A6E259953762421B69D5D_gshared (const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0;
L_0 = (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A * L_1 = (TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1));
(( void (*) (TrueReadOnlyCollection_1_t7B0C79057B5BCC33C785557CBB2BEC37F5C2207A *, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2)->methodPointer)(L_1, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
((EmptyReadOnlyCollection_1_t1A4BBE0B1FB7B0E4EE193FC33A6800608677C426_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3)))->set_Instance_0(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Dynamic.Utils.CacheDict`2/Entry<System.Object,System.Object>::.ctor(System.Int32,TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Entry__ctor_mD67F1378918B063FACAB9D9C70AF8FC76AAF5A17_gshared (Entry_tC63F6A8EFD95F594FC61BC13171B112D9B69F894 * __this, int32_t ___hash0, RuntimeObject * ___key1, RuntimeObject * ___value2, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
int32_t L_0 = ___hash0;
__this->set__hash_0(L_0);
RuntimeObject * L_1 = ___key1;
__this->set__key_1(L_1);
RuntimeObject * L_2 = ___value2;
__this->set__value_2(L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(T,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumEqualityComparer_1_Equals_m8F9DE8E13FC6F8E702E2FC383CA23F5E4D018BB3_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, int32_t ___x0, int32_t ___y1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___x0;
int32_t L_1;
L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
int32_t L_2 = ___y1;
int32_t L_3;
L_3 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
V_0 = (int32_t)L_3;
int32_t L_4 = V_0;
return (bool)((((int32_t)L_1) == ((int32_t)L_4))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumEqualityComparer_1_GetHashCode_mB1BB1B9CF0E6A7FD92EB32568BC73FF78B790710_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, int32_t ___obj0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___obj0;
int32_t L_1;
L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
V_0 = (int32_t)L_1;
int32_t L_2;
L_2 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(int32_t*)(&V_0), /*hidden argument*/NULL);
return (int32_t)L_2;
}
}
// System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumEqualityComparer_1__ctor_mE561EB671D2E46A6D5A6D0282E6646F88B75566F_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this);
(( void (*) (EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return;
}
}
// System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumEqualityComparer_1__ctor_mC7FBCC800AA77F18FB28E0E1BEC0510ED98EB267_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___information0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
NullCheck((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this);
(( void (*) (EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EqualityComparer_1_t399C4B066E24442E62E52C1FD1CCF501E96C846F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
return;
}
}
// System.Void System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumEqualityComparer_1_GetObjectData_mC85FBE5321756F9D5C8B37C391481B7AE9B03E26_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 3)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1;
L_1 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
Type_t * L_2;
L_2 = Enum_GetUnderlyingType_m8BD5EDDA4C9A15C2988B27DD48314AC3C16F7A53((Type_t *)L_1, /*hidden argument*/NULL);
int32_t L_3;
L_3 = Type_GetTypeCode_m25B2ADC2D68FE33486DE032926C6B1EECC8D73CE((Type_t *)L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)9))))
{
goto IL_0028;
}
}
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_4 = ___info0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_5 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->klass->rgctx_data, 4)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6;
L_6 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E((RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 )L_5, /*hidden argument*/NULL);
NullCheck((SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *)L_4);
SerializationInfo_SetType_mD6F11DC42FDE78E7E8A58BC3D9E248E21BB37275((SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 *)L_4, (Type_t *)L_6, /*hidden argument*/NULL);
}
IL_0028:
{
return;
}
}
// System.Boolean System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EnumEqualityComparer_1_Equals_m9C924862D7F10BC10C04FDC3B016E811EF091C35_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF *)((EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF *)IsInst((RuntimeObject*)L_0, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5)))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumEqualityComparer_1_GetHashCode_mAD0871EF31F44809E28B53C5424581FC25B3C86F_gshared (EnumEqualityComparer_1_tBAFEDDFBE0245A52A34FE8475E3B76B111C22BDF * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Type_t * L_0;
L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B((RuntimeObject *)__this, /*hidden argument*/NULL);
NullCheck((MemberInfo_t *)L_0);
String_t* L_1;
L_1 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, (MemberInfo_t *)L_0);
NullCheck((RuntimeObject *)L_1);
int32_t L_2;
L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, (RuntimeObject *)L_1);
return (int32_t)L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableDictionaryWrapper_2__ctor_m1F6FC8324808C5050A47E9D886315F191DA13AC9_gshared (EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * __this, RuntimeObject* ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___e0;
ValidationUtils_ArgumentNotNull_m0F7255167A7709F4B58623AB9AECEC31A73B9A60((RuntimeObject *)L_0, (String_t*)_stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53, /*hidden argument*/NULL);
RuntimeObject* L_1 = ___e0;
__this->set__e_0(L_1);
return;
}
}
// System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<System.Object,System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumerableDictionaryWrapper_2_GetEnumerator_m8B86938F19B6DAB35017061742D407CBD6594165_gshared (EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * __this, const RuntimeMethod* method)
{
{
U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA * L_0 = (U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 0));
(( void (*) (U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)(L_0, (int32_t)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA * L_1 = (U3CGetEnumeratorU3Ed__2_t201C8051722FBBB9C5D1FF3060758A29B5DEC3FA *)L_0;
NullCheck(L_1);
L_1->set_U3CU3E4__this_2(__this);
return (RuntimeObject*)L_1;
}
}
// System.Collections.IEnumerator Mapbox.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2<System.Object,System.Object>::System.Collections.IEnumerable.GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EnumerableDictionaryWrapper_2_System_Collections_IEnumerable_GetEnumerator_m2EA19DA13E45EC7E4174B493CEBC00BE7C1A98EF_gshared (EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 * __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
NullCheck((EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 *)__this);
RuntimeObject* L_0;
L_0 = (( RuntimeObject* (*) (EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2)->methodPointer)((EnumerableDictionaryWrapper_2_t6E4F832AF2A22180EA341BC3ED83703F4DB0B9B9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 2));
V_0 = (RuntimeObject*)L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return (RuntimeObject*)L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32[] System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Sort(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* EnumerableSorter_1_Sort_m88E4974C564FEB7633DF94BD578D0AB38DC18A79_gshared (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * __this, KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL;
int32_t V_1 = 0;
{
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
VirtActionInvoker2< KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_3;
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = V_0;
int32_t L_5 = V_1;
int32_t L_6 = V_1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6);
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_001b:
{
int32_t L_8 = V_1;
int32_t L_9 = ___count1;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = V_0;
int32_t L_11 = ___count1;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
(( void (*) (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_10, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = V_0;
return (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_12;
}
}
// System.Void System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::QuickSort(System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1_QuickSort_mF9D6FBF05EA544A3CDEB42B76E3864E56298B38C_gshared (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___map0, int32_t ___left1, int32_t ___right2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
IL_0000:
{
int32_t L_0 = ___left1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___right2;
V_1 = (int32_t)L_1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___map0;
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = (int32_t)L_7;
goto IL_0014;
}
IL_0010:
{
int32_t L_8 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0014:
{
int32_t L_9 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))
{
goto IL_002d;
}
}
{
int32_t L_11 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = ___map0;
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
int32_t L_16;
L_16 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (int32_t)L_11, (int32_t)L_15);
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0010;
}
}
{
goto IL_002d;
}
IL_0029:
{
int32_t L_17 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002d:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
int32_t L_19 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_20 = ___map0;
int32_t L_21 = V_1;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
int32_t L_24;
L_24 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (int32_t)L_19, (int32_t)L_23);
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_0029;
}
}
IL_003e:
{
int32_t L_25 = V_0;
int32_t L_26 = V_1;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0060;
}
}
{
int32_t L_27 = V_0;
int32_t L_28 = V_1;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0054;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = ___map0;
int32_t L_30 = V_0;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_3 = (int32_t)L_32;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_33 = ___map0;
int32_t L_34 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = ___map0;
int32_t L_36 = V_1;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_39 = ___map0;
int32_t L_40 = V_1;
int32_t L_41 = V_3;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0054:
{
int32_t L_42 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_0;
int32_t L_45 = V_1;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0014;
}
}
IL_0060:
{
int32_t L_46 = V_1;
int32_t L_47 = ___left1;
int32_t L_48 = ___right2;
int32_t L_49 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)L_49)))))
{
goto IL_007a;
}
}
{
int32_t L_50 = ___left1;
int32_t L_51 = V_1;
if ((((int32_t)L_50) >= ((int32_t)L_51)))
{
goto IL_0075;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_52 = ___map0;
int32_t L_53 = ___left1;
int32_t L_54 = V_1;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
(( void (*) (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_52, (int32_t)L_53, (int32_t)L_54, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0075:
{
int32_t L_55 = V_0;
___left1 = (int32_t)L_55;
goto IL_008a;
}
IL_007a:
{
int32_t L_56 = V_0;
int32_t L_57 = ___right2;
if ((((int32_t)L_56) >= ((int32_t)L_57)))
{
goto IL_0087;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_58 = ___map0;
int32_t L_59 = V_0;
int32_t L_60 = ___right2;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
(( void (*) (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_58, (int32_t)L_59, (int32_t)L_60, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0087:
{
int32_t L_61 = V_1;
___right2 = (int32_t)L_61;
}
IL_008a:
{
int32_t L_62 = ___left1;
int32_t L_63 = ___right2;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1__ctor_mAB7338F3E79E600830551DF96A86E4EAA8BE8512_gshared (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32[] System.Linq.EnumerableSorter`1<System.Object>::Sort(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* EnumerableSorter_1_Sort_mCD15BC785D1174698560035D033C1367BC65DE5B_gshared (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL;
int32_t V_1 = 0;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
VirtActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_3;
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = V_0;
int32_t L_5 = V_1;
int32_t L_6 = V_1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6);
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_001b:
{
int32_t L_8 = V_1;
int32_t L_9 = ___count1;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = V_0;
int32_t L_11 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_10, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = V_0;
return (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_12;
}
}
// System.Void System.Linq.EnumerableSorter`1<System.Object>::QuickSort(System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1_QuickSort_mECDB5D3A23041E1604E13E52C9F7A48A610D700B_gshared (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___map0, int32_t ___left1, int32_t ___right2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
IL_0000:
{
int32_t L_0 = ___left1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___right2;
V_1 = (int32_t)L_1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___map0;
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = (int32_t)L_7;
goto IL_0014;
}
IL_0010:
{
int32_t L_8 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0014:
{
int32_t L_9 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))
{
goto IL_002d;
}
}
{
int32_t L_11 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = ___map0;
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
int32_t L_16;
L_16 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (int32_t)L_11, (int32_t)L_15);
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0010;
}
}
{
goto IL_002d;
}
IL_0029:
{
int32_t L_17 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002d:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
int32_t L_19 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_20 = ___map0;
int32_t L_21 = V_1;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
int32_t L_24;
L_24 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (int32_t)L_19, (int32_t)L_23);
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_0029;
}
}
IL_003e:
{
int32_t L_25 = V_0;
int32_t L_26 = V_1;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0060;
}
}
{
int32_t L_27 = V_0;
int32_t L_28 = V_1;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0054;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = ___map0;
int32_t L_30 = V_0;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_3 = (int32_t)L_32;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_33 = ___map0;
int32_t L_34 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = ___map0;
int32_t L_36 = V_1;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_39 = ___map0;
int32_t L_40 = V_1;
int32_t L_41 = V_3;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0054:
{
int32_t L_42 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_0;
int32_t L_45 = V_1;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0014;
}
}
IL_0060:
{
int32_t L_46 = V_1;
int32_t L_47 = ___left1;
int32_t L_48 = ___right2;
int32_t L_49 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)L_49)))))
{
goto IL_007a;
}
}
{
int32_t L_50 = ___left1;
int32_t L_51 = V_1;
if ((((int32_t)L_50) >= ((int32_t)L_51)))
{
goto IL_0075;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_52 = ___map0;
int32_t L_53 = ___left1;
int32_t L_54 = V_1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_52, (int32_t)L_53, (int32_t)L_54, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0075:
{
int32_t L_55 = V_0;
___left1 = (int32_t)L_55;
goto IL_008a;
}
IL_007a:
{
int32_t L_56 = V_0;
int32_t L_57 = ___right2;
if ((((int32_t)L_56) >= ((int32_t)L_57)))
{
goto IL_0087;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_58 = ___map0;
int32_t L_59 = V_0;
int32_t L_60 = ___right2;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_58, (int32_t)L_59, (int32_t)L_60, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0087:
{
int32_t L_61 = V_1;
___right2 = (int32_t)L_61;
}
IL_008a:
{
int32_t L_62 = ___left1;
int32_t L_63 = ___right2;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void System.Linq.EnumerableSorter`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1__ctor_m8B7642821019E1270D6C5708C7AF8E80D570630A_gshared (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32[] System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::Sort(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* EnumerableSorter_1_Sort_m1D573138B1C706F1186203126BABA1324532298C_gshared (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * __this, IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL;
int32_t V_1 = 0;
{
IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440* L_0 = ___elements0;
int32_t L_1 = ___count1;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
VirtActionInvoker2< IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440*)L_0, (int32_t)L_1);
int32_t L_2 = ___count1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_3;
V_1 = (int32_t)0;
goto IL_001b;
}
IL_0013:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = V_0;
int32_t L_5 = V_1;
int32_t L_6 = V_1;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (int32_t)L_6);
int32_t L_7 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_001b:
{
int32_t L_8 = V_1;
int32_t L_9 = ___count1;
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0013;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = V_0;
int32_t L_11 = ___count1;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
(( void (*) (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_10, (int32_t)0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = V_0;
return (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_12;
}
}
// System.Void System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::QuickSort(System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1_QuickSort_m48B3C4AFB6540C41A73203CA42453C04B9E3BC01_gshared (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___map0, int32_t ___left1, int32_t ___right2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
IL_0000:
{
int32_t L_0 = ___left1;
V_0 = (int32_t)L_0;
int32_t L_1 = ___right2;
V_1 = (int32_t)L_1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___map0;
int32_t L_3 = V_0;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
NullCheck(L_2);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)L_5))>>(int32_t)1))));
int32_t L_7 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_2 = (int32_t)L_7;
goto IL_0014;
}
IL_0010:
{
int32_t L_8 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0014:
{
int32_t L_9 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ___map0;
NullCheck(L_10);
if ((((int32_t)L_9) >= ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length))))))
{
goto IL_002d;
}
}
{
int32_t L_11 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = ___map0;
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = L_13;
int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
int32_t L_16;
L_16 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (int32_t)L_11, (int32_t)L_15);
if ((((int32_t)L_16) > ((int32_t)0)))
{
goto IL_0010;
}
}
{
goto IL_002d;
}
IL_0029:
{
int32_t L_17 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1));
}
IL_002d:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
int32_t L_19 = V_2;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_20 = ___map0;
int32_t L_21 = V_1;
NullCheck(L_20);
int32_t L_22 = L_21;
int32_t L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
int32_t L_24;
L_24 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (int32_t)L_19, (int32_t)L_23);
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_0029;
}
}
IL_003e:
{
int32_t L_25 = V_0;
int32_t L_26 = V_1;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_0060;
}
}
{
int32_t L_27 = V_0;
int32_t L_28 = V_1;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_0054;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = ___map0;
int32_t L_30 = V_0;
NullCheck(L_29);
int32_t L_31 = L_30;
int32_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_3 = (int32_t)L_32;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_33 = ___map0;
int32_t L_34 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = ___map0;
int32_t L_36 = V_1;
NullCheck(L_35);
int32_t L_37 = L_36;
int32_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(L_34), (int32_t)L_38);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_39 = ___map0;
int32_t L_40 = V_1;
int32_t L_41 = V_3;
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
}
IL_0054:
{
int32_t L_42 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1));
int32_t L_43 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_0;
int32_t L_45 = V_1;
if ((((int32_t)L_44) <= ((int32_t)L_45)))
{
goto IL_0014;
}
}
IL_0060:
{
int32_t L_46 = V_1;
int32_t L_47 = ___left1;
int32_t L_48 = ___right2;
int32_t L_49 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47))) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)L_49)))))
{
goto IL_007a;
}
}
{
int32_t L_50 = ___left1;
int32_t L_51 = V_1;
if ((((int32_t)L_50) >= ((int32_t)L_51)))
{
goto IL_0075;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_52 = ___map0;
int32_t L_53 = ___left1;
int32_t L_54 = V_1;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
(( void (*) (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_52, (int32_t)L_53, (int32_t)L_54, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0075:
{
int32_t L_55 = V_0;
___left1 = (int32_t)L_55;
goto IL_008a;
}
IL_007a:
{
int32_t L_56 = V_0;
int32_t L_57 = ___right2;
if ((((int32_t)L_56) >= ((int32_t)L_57)))
{
goto IL_0087;
}
}
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_58 = ___map0;
int32_t L_59 = V_0;
int32_t L_60 = ___right2;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
(( void (*) (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1)->methodPointer)((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_58, (int32_t)L_59, (int32_t)L_60, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 1));
}
IL_0087:
{
int32_t L_61 = V_1;
___right2 = (int32_t)L_61;
}
IL_008a:
{
int32_t L_62 = ___left1;
int32_t L_63 = ___right2;
if ((((int32_t)L_62) < ((int32_t)L_63)))
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_1__ctor_m88E593F56044967B0D22CBC2B8E6A6EE2DC0D292_gshared (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * __this, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_m9FD9F5A250075EE38C8645194E16313C83E8CD77_gshared (EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150 * __this, Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this);
(( void (*) (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_mBF452823AB0445DFA4A8AF3F170F20C76C39EBC5_gshared (EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150 * __this, KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_1 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_2 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 * L_4 = (Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 *)__this->get_keySelector_0();
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_5 = ___elements0;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_8 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 *)L_4);
int64_t L_9;
L_9 = (( int64_t (*) (Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 *, KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t44B8B366970A2BC82CA1AA3E09DA1788AAD160B1 *)L_4, (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int64_t)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * L_13 = (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * L_14 = (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this->get_next_3();
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)L_14);
VirtActionInvoker2< KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)L_14, (KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>,System.Int64>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_mF6BD3B22977BE67ABEE0B999E61060400FAE3DEE_gshared (EnumerableSorter_2_t8690F3885DAE8E9FED88C674ADEE0B01994C3150 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_1 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
int64_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_5 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
int64_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, int64_t, int64_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int64>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (int64_t)L_4, (int64_t)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * L_11 = (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 * L_14 = (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_t1D99927876EF7898E4171E04A74D802999F91949 *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Int32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_m7120C24E3F5257C00198873796EF9911AA5FD8AB_gshared (EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B * __this, Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Int32>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_m2757546A848A3755A78E4AE35E095FF44CADA507_gshared (EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * L_4 = (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)__this->get_keySelector_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___elements0;
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((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_4);
int32_t L_9;
L_9 = (( int32_t (*) (Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_13 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
VirtActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Int32>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_m835CC7B8446F9BAFC5ECF0980060D533C3CF6F34_gshared (EnumerableSorter_2_tE3C65DA9FF76AAA73903EC8AAF3739D2F56CA31B * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (int32_t)L_4, (int32_t)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_11 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Object>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_m3D0D8270577DB23D783153DB9915AE6CDDB91FDB_gshared (EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 * __this, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Object>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_m5A1A779CC05F138BED056FF1EE076439AD3EFE0A_gshared (EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_4 = (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)__this->get_keySelector_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___elements0;
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((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_4);
RuntimeObject * L_9;
L_9 = (( RuntimeObject * (*) (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_13 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
VirtActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Object>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_mBA826761865339A4BF940ACCD37E62C2917DAA17_gshared (EnumerableSorter_2_tB0216593C320E087D2AE98DC89E58FB10410F227 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
RuntimeObject * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Object>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (RuntimeObject *)L_4, (RuntimeObject *)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_11 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Single>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_mB5D9D7536886059911D07CF547125FE70485E9E8_gshared (EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2 * __this, Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.Single>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_mD7A135BA36EB15C89EFFB3E9F1EFD1AFD2DBEA53_gshared (EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_1 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_2 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 * L_4 = (Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 *)__this->get_keySelector_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___elements0;
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((Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 *)L_4);
float L_9;
L_9 = (( float (*) (Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t78F21BB7B6C7D754A8C4D71ACB39668A8F967BA1 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (float)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_13 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
VirtActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.Single>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_m95313121537370CBB5BA91518272012C132628A6_gshared (EnumerableSorter_2_t354923855ADDEDB65A0DC04AB0BC07B40C1B26A2 * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_1 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
float L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_5 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
float L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, float, float >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Single>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (float)L_4, (float)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_11 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.UInt32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_m63EB69E15A50C37DF52612EBB51FACDE0A67CD09_gshared (EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE * __this, Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this);
(( void (*) (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<System.Object,System.UInt32>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_m98F48B6C2747E76BD9773354D78C72B9F12ED7C9_gshared (EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_1 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_2 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 * L_4 = (Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 *)__this->get_keySelector_0();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___elements0;
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((Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 *)L_4);
uint32_t L_9;
L_9 = (( uint32_t (*) (Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_tC3246CBAFBB962E2C6075141A9B6BFC365266428 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (uint32_t)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_13 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
VirtActionInvoker2< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<System.Object>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<System.Object,System.UInt32>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_mFEB3860E43D98EC0305A8093527F3A81803BD867_gshared (EnumerableSorter_2_t755EE6A150A4FAA4580749CB3F7489B5FFCE5DEE * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_1 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
uint32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_5 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
uint32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, uint32_t, uint32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.UInt32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (uint32_t)L_4, (uint32_t)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_11 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A * L_14 = (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<System.Object>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tC3AC7E5617DBA7BCD8F0F45DCD90A6382B11DC6A *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Linq.EnumerableSorter`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>::.ctor(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean,System.Linq.EnumerableSorter`1<TElement>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2__ctor_mF1FB9BD33608B9033CBAA43737CE1FB5EDD3AF88_gshared (EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B * __this, Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * ___next3, const RuntimeMethod* method)
{
{
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this);
(( void (*) (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0)->methodPointer)((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 0));
Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * L_0 = ___keySelector0;
__this->set_keySelector_0(L_0);
RuntimeObject* L_1 = ___comparer1;
__this->set_comparer_1(L_1);
bool L_2 = ___descending2;
__this->set_descending_2(L_2);
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * L_3 = ___next3;
__this->set_next_3(L_3);
return;
}
}
// System.Void System.Linq.EnumerableSorter`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>::ComputeKeys(TElement[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EnumerableSorter_2_ComputeKeys_m245A28F5F2A1BDA91D0DCDE17076FDD35C99E11E_gshared (EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B * __this, IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440* ___elements0, int32_t ___count1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = ___count1;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 2), (uint32_t)L_0);
__this->set_keys_4(L_1);
V_0 = (int32_t)0;
goto IL_0032;
}
IL_0010:
{
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_3 = V_0;
Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 * L_4 = (Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 *)__this->get_keySelector_0();
IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440* L_5 = ___elements0;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 *)L_4);
int32_t L_9;
L_9 = (( int32_t (*) (Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 *, IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3)->methodPointer)((Func_2_t375D799929FD4EBAA5078DC404683CA2BF96BDB7 *)L_4, (IndexedColumn_t1749C4B3B871D7C73AB81DA47BF5A739F5DA0616 )L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->klass->rgctx_data, 3));
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_9);
int32_t L_10 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0032:
{
int32_t L_11 = V_0;
int32_t L_12 = ___count1;
if ((((int32_t)L_11) < ((int32_t)L_12)))
{
goto IL_0010;
}
}
{
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * L_13 = (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this->get_next_3();
if (!L_13)
{
goto IL_004b;
}
}
{
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * L_14 = (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this->get_next_3();
IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440* L_15 = ___elements0;
int32_t L_16 = ___count1;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)L_14);
VirtActionInvoker2< IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440*, int32_t >::Invoke(4 /* System.Void System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::ComputeKeys(TElement[],System.Int32) */, (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)L_14, (IndexedColumnU5BU5D_t65A549C3C7808AA750DF19079C2F223E3F0EB440*)L_15, (int32_t)L_16);
}
IL_004b:
{
return;
}
}
// System.Int32 System.Linq.EnumerableSorter`2<SQLite4Unity3d.SQLiteConnection/IndexedColumn,System.Int32>::CompareKeys(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EnumerableSorter_2_CompareKeys_m8AD44D99D28EE55707BCD2B15B674911DAB9A8EF_gshared (EnumerableSorter_2_t04E46516E5FE7ED0442FAD5589406BA0883B7C1B * __this, int32_t ___index10, int32_t ___index21, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_comparer_1();
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_2 = ___index10;
NullCheck(L_1);
int32_t L_3 = L_2;
int32_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)__this->get_keys_4();
int32_t L_6 = ___index21;
NullCheck(L_5);
int32_t L_7 = L_6;
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((RuntimeObject*)L_0);
int32_t L_9;
L_9 = InterfaceFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.IComparer`1<System.Int32>::Compare(!0,!0) */, IL2CPP_RGCTX_DATA(method->klass->rgctx_data, 5), (RuntimeObject*)L_0, (int32_t)L_4, (int32_t)L_8);
V_0 = (int32_t)L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_0041;
}
}
{
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * L_11 = (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this->get_next_3();
if (L_11)
{
goto IL_0033;
}
}
{
int32_t L_12 = ___index10;
int32_t L_13 = ___index21;
return (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13));
}
IL_0033:
{
EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 * L_14 = (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)__this->get_next_3();
int32_t L_15 = ___index10;
int32_t L_16 = ___index21;
NullCheck((EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)L_14);
int32_t L_17;
L_17 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Linq.EnumerableSorter`1<SQLite4Unity3d.SQLiteConnection/IndexedColumn>::CompareKeys(System.Int32,System.Int32) */, (EnumerableSorter_1_tAEB0CBFE52A43D7912DF5F2A78E4BDFAAD72D1C1 *)L_14, (int32_t)L_15, (int32_t)L_16);
return (int32_t)L_17;
}
IL_0041:
{
bool L_18 = (bool)__this->get_descending_2();
if (L_18)
{
goto IL_004b;
}
}
{
int32_t L_19 = V_0;
return (int32_t)L_19;
}
IL_004b:
{
int32_t L_20 = V_0;
return (int32_t)((-L_20));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * ___list0, const RuntimeMethod* method)
{
{
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * L_3 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34_AdjustorThunk (RuntimeObject * __this, List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
Enumerator__ctor_mA42081AB225A62A9C9233C7CDCEE81F702DA8C34(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
Enumerator_Dispose_m4668E9CE29ED86A6DED4322C91CF77E8F30AC213(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * V_0 = NULL;
{
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_0 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)__this->get_list_0();
V_0 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_7 = V_0;
NullCheck(L_7);
KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D* L_8 = (KeyValuePair_2U5BU5D_t7A55D2FEB3F9BBFE7CC9322E7E8F00A4D1C77D4D*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_11 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853((Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *)(Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m5E6654DC3A94FDA0FE8CA54FCFBBB648B2EA31B0(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_1 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_3 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * L_5 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mBB22B3A1774FF6786AE56BD8BCB1AAB48038C853(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_0 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )__this->get_current_3();
return (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 _returnValue;
_returnValue = Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_2 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_4;
L_4 = Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_inline((Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *)(Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_5 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m680C88796E8D9BC4CF2A9EB68BA8344E7EBA9077(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F_gshared (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 * L_1 = (List_1_t9AAD8217D3BF8F2B4750AD496F9C87CFC41876B7 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 * L_3 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * _thisAdjusted = reinterpret_cast<Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m3AFF74B90810B346AF53D8D8B36969439CA8533F(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___list0, const RuntimeMethod* method)
{
{
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_3 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F_AdjustorThunk (RuntimeObject * __this, List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
Enumerator__ctor_mBBB62017F66E8F04522FBD610C9D6F8D0B042C3F(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
Enumerator_Dispose_m31EA10E718E7A5D809B5F566D61447BCC8BCDEFB(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * V_0 = NULL;
{
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_0 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)__this->get_list_0();
V_0 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_7 = V_0;
NullCheck(L_7);
KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C* L_8 = (KeyValuePair_2U5BU5D_tA780E964000F617CC6335A0DEC92B09FE0085E1C*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_11 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD((Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *)(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mC851DE6441AF295DB85CFCE9C6F9242152172F67(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_1 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_3 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m53608330214D9EF91DE664BC8E372FD53E44BFDD(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3();
return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
}
}
IL2CPP_EXTERN_C KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 _returnValue;
_returnValue = Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_2 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_4;
L_4 = Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_inline((Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *)(Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_5 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA119E96E9390C0B45F4DC1E8830D38E27187725A(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9_gshared (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E * L_1 = (List_1_tFBF6A022293416BA5AD7B89F3A150C81EF05606E *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * L_3 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * _thisAdjusted = reinterpret_cast<Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m091FAFF04557FE70F6D9F4389299A2D664D672C9(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * ___list0, const RuntimeMethod* method)
{
{
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * L_3 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1_AdjustorThunk (RuntimeObject * __this, List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
Enumerator__ctor_mDD6EA72FEDF77733287A7D657612F4A0924CE9F1(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
Enumerator_Dispose_mE9DA700BBD3E50386AD1B4BB499D953ACAFA1B22(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * V_0 = NULL;
{
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_0 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)__this->get_list_0();
V_0 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_7 = V_0;
NullCheck(L_7);
NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D* L_8 = (NativeArray_1U5BU5D_t2C2E3589AE9F08D75814FD7388254BA90223FB2D*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_11 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8((Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *)(Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mB29E9C50D8AA72D8EF0EBC025F44FF42517CB660(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_1 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_3 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * L_5 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m4C87C4A7F44AF8DCDFA756C3DC8B7A769950A0F8(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_0 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )__this->get_current_3();
return (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )L_0;
}
}
IL2CPP_EXTERN_C NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB _returnValue;
_returnValue = Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_2 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_4;
L_4 = Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_inline((Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *)(Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_5 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m9E75C051BEDB1A11C3295AEAD924B57C57AAA864(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Unity.Collections.NativeArray`1<UnityEngine.XR.ARSubsystems.XRRaycastHit>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179_gshared (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 * L_1 = (List_1_tAF78E49171E2C987480BE2F36E1E73CEFDA37469 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB * L_3 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * _thisAdjusted = reinterpret_cast<Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mCAD5F051258BA935418937E05599715D16012179(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * ___list0, const RuntimeMethod* method)
{
{
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * L_3 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379_AdjustorThunk (RuntimeObject * __this, List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
Enumerator__ctor_m2E0927522D34DC6C4F99D7D43B8EBEB8B6EC5379(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
Enumerator_Dispose_m751C47E36654EF6E697AC29CE44559CDDB2C7C80(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * V_0 = NULL;
{
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_0 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)__this->get_list_0();
V_0 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_7 = V_0;
NullCheck(L_7);
Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25* L_8 = (Point2d_1U5BU5D_t75F1BB355DEE45EE77CF23151A0BCE4D21834D25*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_11 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6((Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *)(Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m8A28F9FDFF47680AB6F0E39C7A6439B20BF1DCF5(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_1 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_3 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * L_5 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mFB593034BF17917C1A94961ADB37186E1E930EC6(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_0 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )__this->get_current_3();
return (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )L_0;
}
}
IL2CPP_EXTERN_C Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB _returnValue;
_returnValue = Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_2 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_4;
L_4 = Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_inline((Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *)(Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_5 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m3B8BCACCC407D48B855BCB9F7046E97D9171031B(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Int64>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093_gshared (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 * L_1 = (List_1_tF118F9F646E86BDFEA01788320EF2D9B7FAA74C5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB * L_3 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * _thisAdjusted = reinterpret_cast<Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m8C5B7B97C833B81473C66BDF9FF09106D7ED0093(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * ___list0, const RuntimeMethod* method)
{
{
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * L_3 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A_AdjustorThunk (RuntimeObject * __this, List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
Enumerator__ctor_mFE4D540BA10256DD70FA2A00A7B31FAEC949E97A(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
Enumerator_Dispose_m22DED8119284F075ED5F4A09912C91B3A90469DA(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * V_0 = NULL;
{
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_0 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)__this->get_list_0();
V_0 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_7 = V_0;
NullCheck(L_7);
Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454* L_8 = (Point2d_1U5BU5D_t6C551130E18C1F0230443D087145B1B758215454*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_11 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70((Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *)(Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m7AB99D21EB29CB8D7CE7D3D8B5F97BC1898DFD4A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_1 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_3 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * L_5 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mCE5EF78B9228962DBFA1D2DA7776E82FCBD6CE70(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_0 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )__this->get_current_3();
return (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )L_0;
}
}
IL2CPP_EXTERN_C Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC _returnValue;
_returnValue = Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_2 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_4;
L_4 = Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_inline((Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *)(Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_5 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m3FE403DB6F4265AB47DFB34CDA82710F58DAC6D9(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27_gshared (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 * L_1 = (List_1_t2CBF46814680A631292F3FF5228C5DC22B0A1132 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC * L_3 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * _thisAdjusted = reinterpret_cast<Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m4B1F537E6EA6FB55D42BFDCF41F9C9356D2D0F27(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * ___list0, const RuntimeMethod* method)
{
{
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * L_3 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77_AdjustorThunk (RuntimeObject * __this, List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
Enumerator__ctor_m3588657FB0C8AF82E41E0FFAE60B816772F2DC77(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
Enumerator_Dispose_mCA028102A774340D05F3E68AFF4113CB4E353C39(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * V_0 = NULL;
{
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_0 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)__this->get_list_0();
V_0 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_7 = V_0;
NullCheck(L_7);
Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D* L_8 = (Point2d_1U5BU5D_t7D8D38A5D6EAF0A9F082CA62E1EF6B0BAF40034D*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_11 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A((Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *)(Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mD39917121FFE45A6B94687F3F450EB0CF42333F4(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_1 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_3 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * L_5 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mF8BADD98780F1D9C171460517BC3A260F517DE3A(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_0 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )__this->get_current_3();
return (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )L_0;
}
}
IL2CPP_EXTERN_C Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE _returnValue;
_returnValue = Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_2 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_4;
L_4 = Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_inline((Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *)(Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_5 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m047826D25B1820349B6AB9B3A60F2AB478D35A28(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.Point2d`1<System.Single>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C_gshared (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB * L_1 = (List_1_tECF0ED634BCE63A4E7289A936C8F226202E23FFB *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE * L_3 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * _thisAdjusted = reinterpret_cast<Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m10895080D0BA46E29B4310FE7E26CC9B90A4996C(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * L_0 = ___array0;
NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 L_1 = (*(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC_AdjustorThunk (RuntimeObject * __this, NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
Enumerator__ctor_m1EB8E2132B34315333ABC6BE4CA5AFA4696B5FDC(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
Enumerator_Dispose_mD13D82822A8927B1BEE3EDCA3B7440206136A18F(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * L_2 = (NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m3C88DE96B76782F4C594C67473408D43E14069EF(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
Enumerator_Reset_m26925468D3139464882014C78C3A1B2573B835AB(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 * L_0 = (NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 , ((NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)(NativeArray_1_tB2162F030BB826AFBDA58ACC4DBEA9B1E8B13438 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 )L_2;
}
}
IL2CPP_EXTERN_C Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 _returnValue;
_returnValue = Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.Int32>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4_gshared (Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * __this, const RuntimeMethod* method)
{
{
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 L_0;
L_0 = Enumerator_get_Current_m0F12A34F5C0634FB61DD23AF873C7E7D9375DDDC((Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *)(Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 L_1 = (Triangle_1_tF59DD21220C6706AF60763C43076B2F88FC71E25 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 * _thisAdjusted = reinterpret_cast<Enumerator_tC6861702C66EB6A449802AA7CCC5C737FD5FDCB5 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m2833A0EBA2A0D587A881D21631400697AE690DC4(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * L_0 = ___array0;
NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 L_1 = (*(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
Enumerator__ctor_mE4080E1BCD40DD706618FBF72E3F663E2451A439(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
Enumerator_Dispose_m907A88D4C95CC1CC592CCA1E5E5324FDE2C230A1(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * L_2 = (NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m410BC0803D6F68715E098AD977D7D9C9238DB787(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
Enumerator_Reset_m88E5AEBEE188A126D8B2F2EC1BBDB328F35883D5(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 * L_0 = (NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F , ((NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)(NativeArray_1_t3702A7E7C386B5BA9D224D756BE66A26A0CA0982 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F )L_2;
}
}
IL2CPP_EXTERN_C Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F _returnValue;
_returnValue = Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceSubsystem/ARCoreProvider/Triangle`1<System.UInt16>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED_gshared (Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * __this, const RuntimeMethod* method)
{
{
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F L_0;
L_0 = Enumerator_get_Current_m16DB3BA125E2EE894A190B326A052CDB957C5F32((Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *)(Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F L_1 = (Triangle_1_tAE93B8B09849BB4C394BEF18E1378235F210025F )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 * _thisAdjusted = reinterpret_cast<Enumerator_tE8A407D5A7CC53BDF39BAD3F5122B9DB004B36A4 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF52CF4E091E2091A4A520C34C20B160D6F6CAEED(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ___list0, const RuntimeMethod* method)
{
{
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_0 = ___list0;
__this->set__list_0(L_0);
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
__this->set__version_2(L_2);
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_3 = ___list0;
NullCheck(L_3);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_4 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_3->get_head_0();
__this->set__node_1(L_4);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * L_5 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_5, sizeof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ));
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932_AdjustorThunk (RuntimeObject * __this, LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator__ctor_mC02B3C84F8A4385DF26795DB9DFEE69BDA90A932(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator__ctor_m2F4435D5D4422AC6732E87ABF6418158F45335A2(_thisAdjusted, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )__this->get__current_3();
return (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_0;
}
}
IL2CPP_EXTERN_C ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 _returnValue;
_returnValue = Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_4();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_4();
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_2 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck((LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)L_2);
int32_t L_3;
L_3 = (( int32_t (*) (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_RuntimeMethod_var)));
}
IL_0028:
{
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_5 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )__this->get__current_3();
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_6 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mEFF7CDC66108CB9FEC7B2AE0C361110BD3587571(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_1 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_RuntimeMethod_var)));
}
IL_001e:
{
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_4 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)__this->get__node_1();
if (L_4)
{
goto IL_003b;
}
}
{
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_5 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck((LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)L_5);
int32_t L_6;
L_6 = (( int32_t (*) (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
return (bool)0;
}
IL_003b:
{
int32_t L_7 = (int32_t)__this->get__index_4();
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_8 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)__this->get__node_1();
NullCheck(L_8);
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_9 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_8->get_item_3();
__this->set__current_3(L_9);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_10 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)__this->get__node_1();
NullCheck(L_10);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_11 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_10->get_next_1();
__this->set__node_1(L_11);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_12 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)__this->get__node_1();
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_13 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck(L_13);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_14 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_13->get_head_0();
if ((!(((RuntimeObject*)(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_12) == ((RuntimeObject*)(LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_14))))
{
goto IL_0085;
}
}
{
__this->set__node_1((LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)NULL);
}
IL_0085:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m8590BE3701FC7A687D1F2BF895B510A74F85726B(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_1 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_RuntimeMethod_var)));
}
IL_001e:
{
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * L_4 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ));
LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B * L_5 = (LinkedList_1_t76233C48F0195F5B42DA63B18E0708EE70F38E2B *)__this->get__list_0();
NullCheck(L_5);
LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 * L_6 = (LinkedListNode_1_t512E8A7F19EB37831A4900D36ACB30AF677EAA10 *)L_5->get_head_0();
__this->set__node_1(L_6);
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m388F7F271CD64FD9DE3E9C29F965F4287CB4335C(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator_Dispose_m03059ADFAC381FAE77DFECB6E82F3399D28A3258(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mC33C84D8714E76AE7567F5B63D2302BBAE4397D0(_thisAdjusted, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`2<System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_gshared (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * _thisAdjusted = reinterpret_cast<Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE *>(__this + _offset);
Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m54F78FA82E2F14757F690110360F764DD305300F(_thisAdjusted, ___sender0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ___list0, const RuntimeMethod* method)
{
{
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_0 = ___list0;
__this->set__list_0(L_0);
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
__this->set__version_2(L_2);
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_3 = ___list0;
NullCheck(L_3);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_4 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_3->get_head_0();
__this->set__node_1(L_4);
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * L_5 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_5, sizeof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ));
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5_AdjustorThunk (RuntimeObject * __this, LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator__ctor_m74DFEAE074D10436A81BD37AFF28AB6CBBB187A5(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator__ctor_mE8147CBAC560BCDE3784E6355053BE50CC8F86F4(_thisAdjusted, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_0 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )__this->get__current_3();
return (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )L_0;
}
}
IL2CPP_EXTERN_C ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D _returnValue;
_returnValue = Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_4();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_4();
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_2 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck((LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)L_2);
int32_t L_3;
L_3 = (( int32_t (*) (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_RuntimeMethod_var)));
}
IL_0028:
{
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_5 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )__this->get__current_3();
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_6 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m936C31AB10D718195DE736B1E96AD49F85AF2780(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_1 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_RuntimeMethod_var)));
}
IL_001e:
{
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_4 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)__this->get__node_1();
if (L_4)
{
goto IL_003b;
}
}
{
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_5 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck((LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)L_5);
int32_t L_6;
L_6 = (( int32_t (*) (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
return (bool)0;
}
IL_003b:
{
int32_t L_7 = (int32_t)__this->get__index_4();
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_8 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)__this->get__node_1();
NullCheck(L_8);
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_9 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )L_8->get_item_3();
__this->set__current_3(L_9);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_10 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)__this->get__node_1();
NullCheck(L_10);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_11 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_10->get_next_1();
__this->set__node_1(L_11);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_12 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)__this->get__node_1();
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_13 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck(L_13);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_14 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_13->get_head_0();
if ((!(((RuntimeObject*)(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_12) == ((RuntimeObject*)(LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_14))))
{
goto IL_0085;
}
}
{
__this->set__node_1((LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)NULL);
}
IL_0085:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m82C97384FDF2A820B1F6041EF9A79BCCC41843A4(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_1 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_RuntimeMethod_var)));
}
IL_001e:
{
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D * L_4 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D ));
LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 * L_5 = (LinkedList_1_t555E05F2E497A99E81B02BC6149DEFDB20186689 *)__this->get__list_0();
NullCheck(L_5);
LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC * L_6 = (LinkedListNode_1_t31224B82477217EC2257F5D5D3CD9B16431A66EC *)L_5->get_head_0();
__this->set__node_1(L_6);
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mF01E6570DC84897AF2D0BE459D2C0FB0F9D556B9(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator_Dispose_m9491A5ED5F6EAB6B804F00F916547557980455B9(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_mF1837F2969B0CEA4E946E44335763EF6828B0CE3(_thisAdjusted, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.ValueTuple`3<System.Object,System.Object,System.Object>>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_gshared (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * _thisAdjusted = reinterpret_cast<Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 *>(__this + _offset);
Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m4BD600D2AB919F8549987160CD07BC2921FD6B8B(_thisAdjusted, ___sender0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * L_0 = ___array0;
NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 L_1 = (*(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
Enumerator__ctor_m1CC53923E524460790A97DA46D0F0022C3E38160(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
Enumerator_Dispose_mB32C5B3B35888B51BDAE7548FE8EBD8AB429E386(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * L_2 = (NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m32A953820FBBD988D53BAF308044A148AFD0C46B(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
Enumerator_Reset_mD4D8B932D1A762F2134515AF5898630441C808AD(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 * L_0 = (NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 , ((NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)(NativeArray_1_t7C16D8B5807471D80F6ABE7E7A5DFEB24018C757 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 )L_2;
}
}
IL2CPP_EXTERN_C ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 _returnValue;
_returnValue = Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ARCoreFaceRegionData>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6_gshared (Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * __this, const RuntimeMethod* method)
{
{
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 L_0;
L_0 = Enumerator_get_Current_m00D29101FA023ED89D427F26E5E2E9AF17F10D2F((Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *)(Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 L_1 = (ARCoreFaceRegionData_t1421C6E0659D64370707015040C75159F658EFD6 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 * _thisAdjusted = reinterpret_cast<Enumerator_tB6094B2C89C299084D38A4660C1D62F17FBE0E45 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mABF25DA32D11990DD74661C6C6C511620DD5FEE6(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * ___list0, const RuntimeMethod* method)
{
{
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * L_3 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3_AdjustorThunk (RuntimeObject * __this, List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
Enumerator__ctor_mD9BB3F55A88F7CB7AB90004FAC4FDD3F1E355BA3(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
Enumerator_Dispose_mB920DD0AA04344C88A61D5C289FED5B5EA0A9EE7(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * V_0 = NULL;
{
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_0 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)__this->get_list_0();
V_0 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_7 = V_0;
NullCheck(L_7);
ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA* L_8 = (ARRaycastHitU5BU5D_t8F4AFCC32363485FEBCE484011A5C258676441CA*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC((Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *)(Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m62CAEC03A9BD6119A2CCABC69555F0F0A02C8534(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_1 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_3 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * L_5 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m5A825083ECB37BFB5FA81B495B73793EE98C45DC(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_0 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )__this->get_current_3();
return (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )L_0;
}
}
IL2CPP_EXTERN_C ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E _returnValue;
_returnValue = Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_2 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_4;
L_4 = Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_inline((Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *)(Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_5 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mCE0512CEC5573B6556268223A228C0CFD5748265(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARRaycastHit>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757_gshared (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D * L_1 = (List_1_tDA68EC1B5CE9809C8709C1E58A7D0F4ACBB1252D *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E * L_3 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * _thisAdjusted = reinterpret_cast<Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m0E6161928B87633AD96710999E3605C03B394757(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * ___list0, const RuntimeMethod* method)
{
{
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * L_3 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89_AdjustorThunk (RuntimeObject * __this, List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
Enumerator__ctor_m248A5F1EB22481D17FDF8B07DD7D440726C0DD89(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
Enumerator_Dispose_mD8CAFD2E7016D86FEC71F3B4B58E5849A4E2B8CB(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * V_0 = NULL;
{
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_0 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)__this->get_list_0();
V_0 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_7 = V_0;
NullCheck(L_7);
ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F* L_8 = (ARTextureInfoU5BU5D_tA674B4CD292FDEEB2A3EB311EF4A40EC1DD3683F*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4((Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *)(Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m027E48DBBD3D2541625E6C28F85BF9D9C6E8BAB5(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_1 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_3 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * L_5 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m849955EFA3B4A0C0E6B1A1804D06C17F30B048F4(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_0 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )__this->get_current_3();
return (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )L_0;
}
}
IL2CPP_EXTERN_C ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 _returnValue;
_returnValue = Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_2 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_4;
L_4 = Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_inline((Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *)(Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_5 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m5030C10F2D9225CD3023288552209F3DACA63741(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.ARFoundation.ARTextureInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3_gshared (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A * L_1 = (List_1_t737CDD0B911D91DA30FC544763F10FFC47C3C74A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 * L_3 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * _thisAdjusted = reinterpret_cast<Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mC042526ED8768487D2B66B785CB7C56D6A5547B3(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * L_0 = ___array0;
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA L_1 = (*(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
Enumerator__ctor_m2FFF4D437F99F3E345FCABC5014050DF90922838(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
Enumerator_Dispose_mB7B4F880EED95304D26C4E0E3FA11DBA5053CFAF(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * L_2 = (NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m0F96E60156FC8ED41F04DD0428BC099867441C8D(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
Enumerator_Reset_m930BB9B4D46B60A9395DE3752FE3CA3A4858EFEC(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA * L_0 = (NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE , ((NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)(NativeArray_1_t18D233A2E30E28048C1252473AFD0799557294DA *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE )L_2;
}
}
IL2CPP_EXTERN_C BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE _returnValue;
_returnValue = Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F_gshared (Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * __this, const RuntimeMethod* method)
{
{
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE L_0;
L_0 = Enumerator_get_Current_mFD2F777D1876CD434F4490451643F7587BC39E7B((Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *)(Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE L_1 = (BatchVisibility_tFA63D052426424FBD58F78E973AAAC52A67B5AFE )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A * _thisAdjusted = reinterpret_cast<Enumerator_t9ACA79DAE23778953BC12EFC8750E8A6B556103A *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m98DA6F722E6F0A5D2D7A751B60B89CCF6134F79F(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * ___list0, const RuntimeMethod* method)
{
{
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * L_3 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281_AdjustorThunk (RuntimeObject * __this, List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
Enumerator__ctor_mC5618AF51FB3FC8FDE29BD1245B2A374FBD38281(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
Enumerator_Dispose_m14EDEE044A6FA1100C908E21E93F92A993A88EEB(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * V_0 = NULL;
{
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_0 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)__this->get_list_0();
V_0 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_7 = V_0;
NullCheck(L_7);
BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF* L_8 = (BearingFilterU5BU5D_t591EF39E645BB1B30566772492EDDE71E06A56CF*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F((Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *)(Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m49A3BA95CBAEE1B4721F75343089FEFB15C531DC(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_1 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_3 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * L_5 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m5207935178F21DA58668E696F6142013CA225A7F(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_0 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )__this->get_current_3();
return (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )L_0;
}
}
IL2CPP_EXTERN_C BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 _returnValue;
_returnValue = Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_2 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_4;
L_4 = Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_inline((Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *)(Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_5 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m05BCBDA4FEED442F877E6A5BC000790275FD10EB(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Utils.BearingFilter>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483_gshared (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 * L_1 = (List_1_t943DDB8C64C1219EE5C4427F2AC52A98347556A5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 * L_3 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * _thisAdjusted = reinterpret_cast<Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m91932B630FBC9BC95FA967B5D79090D7CB70D483(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * ___list0, const RuntimeMethod* method)
{
{
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
bool* L_3 = (bool*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(bool));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB_AdjustorThunk (RuntimeObject * __this, List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
Enumerator__ctor_m3CCCF7C6782F00886895442E099CC7AF2CFED0AB(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
Enumerator_Dispose_m83B22A5FE2BA8CBE96D30E2163229470D90E9EBD(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * V_0 = NULL;
{
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_0 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)__this->get_list_0();
V_0 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_7 = V_0;
NullCheck(L_7);
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_8 = (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
bool L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D((Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *)(Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m829A3B1476C9E85C909907D33E9A81B4CFD5728F(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Boolean>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_1 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_3 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
bool* L_5 = (bool*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(bool));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mAC7764FBC74426ECE881009A61863FC35157337D(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Boolean>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_current_3();
return (bool)L_0;
}
}
IL2CPP_EXTERN_C bool Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_2 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
bool L_4;
L_4 = Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_inline((Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *)(Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
bool L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m07609BC80666C3FE08FC66608442AD2E739ECB98(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Boolean>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A_gshared (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 * L_1 = (List_1_tD4D2BACE5281B6C85799892C1F12F5F2F81A2DF3 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
bool* L_3 = (bool*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(bool));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * _thisAdjusted = reinterpret_cast<Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mC1E9D61ACC7364602BF30197A7195DE86FF2D11A(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_0 = ___array0;
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 L_1 = (*(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
Enumerator__ctor_mEA073421E47C0F838F7A2B957E96A92F0EF8D199(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
Enumerator_Dispose_m4F575238C03A7868718AB72B7105ED4DC76FA85C(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_2 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mDD9990EB7363BBF8D5FFD08085B17CE8B98CF8FF(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
Enumerator_Reset_m97028786079E28A37EAEA444CBDB0B39A57A29BC(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 * L_0 = (NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 , ((NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)(NativeArray_1_t056649BD2D6D7DDC87945B1C2AEE66C39F4667B3 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_2;
}
}
IL2CPP_EXTERN_C BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 _returnValue;
_returnValue = Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.BoundedPlane>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640_gshared (Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * __this, const RuntimeMethod* method)
{
{
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_0;
L_0 = Enumerator_get_Current_m9C1CDB26150352AF72D943791BC76390FF883787((Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)(Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 L_1 = (BoundedPlane_t9001963C43ACDF4CDEA8BBF97CD783B7969B79C5 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 * _thisAdjusted = reinterpret_cast<Enumerator_t0C640C8D9F5F6B6C91FCB034B5C1A931D6592B72 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m6C709E86D1609A58D43A8474048FE89612884640(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___list0, const RuntimeMethod* method)
{
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
uint8_t* L_3 = (uint8_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(uint8_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8_AdjustorThunk (RuntimeObject * __this, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
Enumerator__ctor_mB6A023A7BEA78E97E853225E52914934EE1289D8(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
Enumerator_Dispose_mCE2CC91B42E380D7E2999C5AAD95388A79B301FC(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * V_0 = NULL;
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_0 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)__this->get_list_0();
V_0 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_7 = V_0;
NullCheck(L_7);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
uint8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1((Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *)(Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m8AD7612CD13206AF84EA29A3917A272D3694DF63(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Byte>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_1 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_3 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
uint8_t* L_5 = (uint8_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(uint8_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mC40AFB9BA43E2F6F03ADF409E088B22C32A7C3A1(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = (uint8_t)__this->get_current_3();
return (uint8_t)L_0;
}
}
IL2CPP_EXTERN_C uint8_t Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
uint8_t _returnValue;
_returnValue = Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_2 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
uint8_t L_4;
L_4 = Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_inline((Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *)(Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
uint8_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m00DCC6A810E96D628C5FA6788E264CDEDBFCA460(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Byte>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45_gshared (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_1 = (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
uint8_t* L_3 = (uint8_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(uint8_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * _thisAdjusted = reinterpret_cast<Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m441203636F0C49E33A1642A6FB9DEE08B9EE6D45(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = ___array0;
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_1 = (*(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C_AdjustorThunk (RuntimeObject * __this, NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
Enumerator__ctor_m53409F2247BD781C9D08C5237F791A1C2625315C(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
Enumerator_Dispose_mFB3C179FF8085EF87AD65685FB2BDD962D372610(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_2 = (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m7633C529A8F5F25D9E85A1FE24201696A7032BE9(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Byte>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
Enumerator_Reset_m76C39C2166396100A7DA152370EF55A2CA639B86(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
uint8_t L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(uint8_t, ((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (uint8_t)L_2;
}
}
IL2CPP_EXTERN_C uint8_t Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
uint8_t _returnValue;
_returnValue = Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12_gshared (Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * __this, const RuntimeMethod* method)
{
{
uint8_t L_0;
L_0 = Enumerator_get_Current_mE4951D406EBA5487E5578A127E5D988B30BC1803((Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *)(Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 * _thisAdjusted = reinterpret_cast<Enumerator_t4598CC28363D6DDE3D1D3E171057D16A80313847 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8427E8E359D81A437EA0DBF12D12CB1D6EE25A12(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::.ctor(Unity.Collections.NativeSlice`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * ___array0, const RuntimeMethod* method)
{
{
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * L_0 = ___array0;
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B L_1 = (*(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E_AdjustorThunk (RuntimeObject * __this, NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
Enumerator__ctor_m07E43CF89C1D130DD8E51F00472244D3EF40FE2E(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
Enumerator_Dispose_m9172BB7DFB3B1BD900F852765725B3928A1E1D05(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * L_2 = (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = NativeSlice_1_get_Length_mC04A811824226BCE2D1DEA9D8434BD1DA0E34B25((NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m5A2588352A4A35A0D525FB4CE402CC3CF9010ABB(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
Enumerator_Reset_m453F3E9EAC1336AF70D6CD791C2D79534775D24C(_thisAdjusted, method);
}
// T Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
{
NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B * L_0 = (NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
uint8_t L_2;
L_2 = NativeSlice_1_get_Item_m4AC98A809EE7A68F9711C6ECE90E0D18E99CB024((NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)(NativeSlice_1_tA05D3BC7EB042685CBFD3369ECB6140D114C911B *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (uint8_t)L_2;
}
}
IL2CPP_EXTERN_C uint8_t Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
uint8_t _returnValue;
_returnValue = Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeSlice`1/Enumerator<System.Byte>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0_gshared (Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * __this, const RuntimeMethod* method)
{
{
uint8_t L_0;
L_0 = Enumerator_get_Current_m41ABAFCEDA01719A1E51BC8C20BE7DB9E2C9BD91((Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *)(Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
uint8_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B * _thisAdjusted = reinterpret_cast<Enumerator_tFAFA76147DC5E4C30CD94AA8DEC8FE5E10DBFB4B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m78A8D805B9736A1FDF67B3C3AB4BD4E7AEF134B0(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * ___set0, const RuntimeMethod* method)
{
{
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_0 = ___set0;
__this->set__set_0(L_0);
__this->set__index_1(0);
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_1 = ___set0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
__this->set__version_2(L_2);
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 * L_3 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F_AdjustorThunk (RuntimeObject * __this, HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * ___set0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
Enumerator__ctor_m8F45BFD0D1C98ECA7A3CAE3A34BE9220FAD28D7F(_thisAdjusted, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
Enumerator_Dispose_m26BF07D9179E1E7919F3B2C424D18BC6FFCFEED2(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_1 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_RuntimeMethod_var)));
}
IL_001e:
{
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_4 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_4);
SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8* L_5 = (SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8*)L_4->get__slots_8();
int32_t L_6 = (int32_t)__this->get__index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_8 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_8);
SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8* L_9 = (SlotU5BU5D_tDD8D0221C25009C10816DDE5D9301DAE8DEB51E8*)L_8->get__slots_8();
int32_t L_10 = (int32_t)__this->get__index_1();
NullCheck(L_9);
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_11 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_2();
__this->set__current_3(L_11);
int32_t L_12 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get__index_1();
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_15 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get__lastIndex_10();
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001e;
}
}
{
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_17 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get__lastIndex_10();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 * L_19 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_19, sizeof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m9622E693D6A7E0C8EFDE59AA1B99080EBF38127F(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_0 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )__this->get__current_3();
return (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )L_0;
}
}
IL2CPP_EXTERN_C CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 _returnValue;
_returnValue = Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_1();
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_2 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__lastIndex_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_RuntimeMethod_var)));
}
IL_0028:
{
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_5;
L_5 = Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_inline((Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *)(Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_6 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD64941077557776EDE3CFCF8146348A4F91CE393(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Mapbox.Map.CanonicalTileId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_gshared (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F * L_1 = (HashSet_1_t84201D813DA3E4CF1E8E38C67F9883C82BDEED1F *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_1(0);
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 * L_4 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * _thisAdjusted = reinterpret_cast<Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m1475BDF72087D8F10097A1E30BB0D9BC44DB1EEA(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * ___list0, const RuntimeMethod* method)
{
{
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B_AdjustorThunk (RuntimeObject * __this, List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
Enumerator__ctor_m8FB487CB79666336960ADB888A144935E2BB333B(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
Enumerator_Dispose_mD39A22F4FCC99D1D8EFA252C56A27D5BCF471B02(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * V_0 = NULL;
{
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_0 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)__this->get_list_0();
V_0 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_7 = V_0;
NullCheck(L_7);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_8 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Il2CppChar L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248((Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *)(Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m0AA15D29D509CAD91436A961E5D89B05F2EC97BA(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Char>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_1 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_3 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Il2CppChar* L_5 = (Il2CppChar*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Il2CppChar));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m8B91F0B4E0A7D574BC7B818F134A1368FD308248(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Char>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get_current_3();
return (Il2CppChar)L_0;
}
}
IL2CPP_EXTERN_C Il2CppChar Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
Il2CppChar _returnValue;
_returnValue = Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_2 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Il2CppChar L_4;
L_4 = Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_inline((Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *)(Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Il2CppChar L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m207E77E21FA19AAD0A36F1D33E3E04B5F3DB006F(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Char>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2_gshared (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE * L_1 = (List_1_tC466EC97F6208520EFC214F520D3CB9E72FD1EAE *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Il2CppChar* L_3 = (Il2CppChar*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Il2CppChar));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * _thisAdjusted = reinterpret_cast<Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mC10838392BC1DFDEB8B2BE07857FAE03880C8ED2(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___list0, const RuntimeMethod* method)
{
{
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_3 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4_AdjustorThunk (RuntimeObject * __this, List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
Enumerator__ctor_m5D840542D46C37B72E73EF144357856394B650C4(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
Enumerator_Dispose_m46835E64B90ABBB61BBA75832428202BB951E908(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * V_0 = NULL;
{
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_0 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)__this->get_list_0();
V_0 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_7 = V_0;
NullCheck(L_7);
Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_8 = (Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74((Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *)(Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mD9003E2D8A632C0B4337D50454E2E1751CC72A68(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_1 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_3 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_5 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mE4CA890D6D5DAA57CDA71C9E70C924EB2AEE2A74(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )__this->get_current_3();
return (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_0;
}
}
IL2CPP_EXTERN_C Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D _returnValue;
_returnValue = Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_2 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_4;
L_4 = Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_inline((Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *)(Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_5 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mCECC8818E4CFDD98F93F0896A77F16D95E293ED0(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4_gshared (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 * L_1 = (List_1_tE21C42BE31D35DD3ECF3322C6CA057E27A81B4D5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * L_3 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * _thisAdjusted = reinterpret_cast<Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mEA8E81B962C91238D960A35235DBB5F5E62E6EA4(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * L_0 = ___array0;
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA L_1 = (*(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081_AdjustorThunk (RuntimeObject * __this, NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
Enumerator__ctor_mAFEE8BD0FC750AB829BE01D5856C4C5DA12FB081(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
Enumerator_Dispose_mF7E7045C175B4894C162B34742751A00EA7BD7B5(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * L_2 = (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mC4AF20486CC89BCED035FECCB5D3901A75F254B5(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
Enumerator_Reset_m0347C768F2B7447E12CA994A9D2DE0FDE9B13CCE(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA * L_0 = (NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 , ((NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)(NativeArray_1_tC9A9DFD8C5E8BBF71F83CBC0CCF7C4BC38E3A4CA *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 )L_2;
}
}
IL2CPP_EXTERN_C ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 _returnValue;
_returnValue = Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46_gshared (Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * __this, const RuntimeMethod* method)
{
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0;
L_0 = Enumerator_get_Current_m4507AB111FA73EA0B56E5ED1B1BC0CA92483C508((Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *)(Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_1 = (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 * _thisAdjusted = reinterpret_cast<Enumerator_t9F14F06221076C34F871B91ED19B4722CA3E7E64 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m09BE5193675DA768DD3D3D73BD23860EC6A02D46(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::.ctor(Unity.Collections.NativeSlice`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * ___array0, const RuntimeMethod* method)
{
{
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * L_0 = ___array0;
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 L_1 = (*(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338_AdjustorThunk (RuntimeObject * __this, NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
Enumerator__ctor_m3A625FA0FDA981859F3CC4CF4F200CE5EAE66338(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
Enumerator_Dispose_m79BB9557BF615D18A63059DCFFA3FD69F020132A(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * L_2 = (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = NativeSlice_1_get_Length_m7D873C4D8E53FE893929EDA4D6CA223F64A86759((NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m61D27731413ABDD017C4CEF8CEDC048933342572(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
Enumerator_Reset_m9D61CD2C5D985316037648AEB35B1A63000E6F1B(_thisAdjusted, method);
}
// T Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
{
NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 * L_0 = (NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_2;
L_2 = NativeSlice_1_get_Item_m28D63F9C1D7AFE7CA3583E2C494BD42B156BBCE6((NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)(NativeSlice_1_tEFBDB61DC6CB8E764B0E92727E8B9EA61662F8F2 *)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 )L_2;
}
}
IL2CPP_EXTERN_C ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 _returnValue;
_returnValue = Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeSlice`1/Enumerator<UnityEngine.XR.ARSubsystems.ConfigurationDescriptor>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF_gshared (Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * __this, const RuntimeMethod* method)
{
{
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_0;
L_0 = Enumerator_get_Current_m4CD0550BFF20A3E94F01B40D2E6CAAF314CC263F((Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *)(Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 L_1 = (ConfigurationDescriptor_t5CD12F017FCCF861DC33D7C0D6F0121015DEEA78 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 * _thisAdjusted = reinterpret_cast<Enumerator_t4FA921251B8D2F59E29728BD1E99A05D23C68573 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mFFF2A2060EA7D0B345D18239385392BE37DDE6EF(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * ___list0, const RuntimeMethod* method)
{
{
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_3 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4_AdjustorThunk (RuntimeObject * __this, List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
Enumerator__ctor_mE4784DCFE5F97603A6407018E567FFC235A2E0B4(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
Enumerator_Dispose_m88FB0FBF642787796EE3560F463B490EFA73A381(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * V_0 = NULL;
{
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_0 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)__this->get_list_0();
V_0 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_7 = V_0;
NullCheck(L_7);
DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1* L_8 = (DateTimeU5BU5D_t43291D587229E4ED44A327CC74DC7771EF2EBBC1*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7((Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *)(Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mFE97E61632CE61091A0747CF7AA04199FACC6D39(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTime>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_1 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_3 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_5 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m6E1F30EE1169EB268B53824581FE8DC507F5E2E7(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.DateTime>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )__this->get_current_3();
return (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )L_0;
}
}
IL2CPP_EXTERN_C DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 _returnValue;
_returnValue = Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_2 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_4;
L_4 = Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_inline((Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *)(Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_5 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m03D88A20A66B645711AC6432FA35EAD199A6E041(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTime>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66_gshared (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC * L_1 = (List_1_t7240E3382CB212F4FEB22D7A3E93EE9152E03CBC *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_3 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * _thisAdjusted = reinterpret_cast<Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mE1498E26A55258B78C9D505DD647C6AA99360E66(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * ___list0, const RuntimeMethod* method)
{
{
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * L_3 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529_AdjustorThunk (RuntimeObject * __this, List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
Enumerator__ctor_m6748A7B1202914C9DE428573B24023A211A0F529(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
Enumerator_Dispose_mCDBB3E9963671FF6FEEB8D18E53571C6BD0332B0(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * V_0 = NULL;
{
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_0 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)__this->get_list_0();
V_0 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_7 = V_0;
NullCheck(L_7);
DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826* L_8 = (DateTimeOffsetU5BU5D_t81746224316E5FC7189685EFB35488C8CED41826*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473((Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *)(Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m06ECE1FFDF86F50CF8955E7CCC2C73A25E13B772(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_1 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_3 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * L_5 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mAF3BA899B2E2F13A83ED693203AA03BA82CB9473(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_0 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )__this->get_current_3();
return (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )L_0;
}
}
IL2CPP_EXTERN_C DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 _returnValue;
_returnValue = Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_2 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_4;
L_4 = Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_inline((Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *)(Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_5 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mEC71B929A9B82531F06C26B7C19C525F8497F0A0(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.DateTimeOffset>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251_gshared (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t6A1295D69B538887EB0A62B321F30014A5691173 * L_1 = (List_1_t6A1295D69B538887EB0A62B321F30014A5691173 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 * L_3 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * _thisAdjusted = reinterpret_cast<Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m80961411596739EC29C85B5827BD68250C5A8251(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * ___list0, const RuntimeMethod* method)
{
{
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * L_3 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2_AdjustorThunk (RuntimeObject * __this, List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
Enumerator__ctor_m8C603346C1B5CA4995F6B611BD20BC6E286775A2(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
Enumerator_Dispose_m23D0DF175706CA38B9BA3A2656F33EB1C934A880(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * V_0 = NULL;
{
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_0 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)__this->get_list_0();
V_0 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_7 = V_0;
NullCheck(L_7);
DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* L_8 = (DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50((Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *)(Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m94DEBE5F36416BB0664E8C3F1E0C3E3E03DBFA8F(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Decimal>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_1 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_3 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * L_5 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m8A0DAE5E227122965B7D2618BB10D288A6CC1D50(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Decimal>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )__this->get_current_3();
return (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )L_0;
}
}
IL2CPP_EXTERN_C Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 _returnValue;
_returnValue = Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_2 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_4;
L_4 = Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_inline((Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *)(Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_5 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m169FD40C6BDB26E491719EE9A8252A69C97FC1B1(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Decimal>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87_gshared (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t137B540BF717527106254AA05BE36A51A068C8F5 * L_1 = (List_1_t137B540BF717527106254AA05BE36A51A068C8F5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * L_3 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * _thisAdjusted = reinterpret_cast<Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m0880F8A610580819075FCE44E6B0F4960BC35B87(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * ___list0, const RuntimeMethod* method)
{
{
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
double* L_3 = (double*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(double));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8_AdjustorThunk (RuntimeObject * __this, List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
Enumerator__ctor_m42788E7D5DC69BA37E87CF8B3EB17EB53F17F2C8(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
Enumerator_Dispose_m6DFB3982F8EAF54AF713FC7E5C426711006C84F9(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * V_0 = NULL;
{
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_0 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)__this->get_list_0();
V_0 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_7 = V_0;
NullCheck(L_7);
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_8 = (DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
double L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26((Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *)(Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m3F9800297946765598836D838E09AE04C76A3322(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Double>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_1 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_3 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
double* L_5 = (double*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(double));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m046B66F60526771F1D3E8147DE8446FF3523AE26(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Double>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
double L_0 = (double)__this->get_current_3();
return (double)L_0;
}
}
IL2CPP_EXTERN_C double Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
double _returnValue;
_returnValue = Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_2 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
double L_4;
L_4 = Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_inline((Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *)(Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
double L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD9076663800659A8D3697623315DEFC934BD3A95(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Double>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE_gshared (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC * L_1 = (List_1_t760D7EED86247E3493CD5F22F0E822BF6AE1C2BC *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
double* L_3 = (double*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(double));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * _thisAdjusted = reinterpret_cast<Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m291364633C2AC5235E67B60DFA9A985114DB6ABE(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___list0, const RuntimeMethod* method)
{
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * L_3 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F_AdjustorThunk (RuntimeObject * __this, List_1_tE870449A6BC21548542BC92F18B284004FA8668A * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
Enumerator__ctor_m82A884A57DF927D707B2BBA6C0CD6E3BC1931D2F(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
Enumerator_Dispose_mA4D8CC85895E748C120503A06F06CAFF21372779(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * V_0 = NULL;
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_0 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)__this->get_list_0();
V_0 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_7 = V_0;
NullCheck(L_7);
GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA* L_8 = (GlyphRectU5BU5D_tD5D74BCDBD33C0E1CF2D67D5419C526C807D3BDA*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0((Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *)(Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m86234ED2DFB5883B63AE7FEDDEA6FAE7437972AF(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_1 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_3 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * L_5 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mF55E26A2FB578833156F823C2D33B4E32112C7E0(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )__this->get_current_3();
return (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_0;
}
}
IL2CPP_EXTERN_C GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D _returnValue;
_returnValue = Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_2 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_4;
L_4 = Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_inline((Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *)(Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_5 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC865DE2A5D559E37927E2A63F60203AB6B56828B(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.TextCore.GlyphRect>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493_gshared (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE870449A6BC21548542BC92F18B284004FA8668A * L_1 = (List_1_tE870449A6BC21548542BC92F18B284004FA8668A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D * L_3 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * _thisAdjusted = reinterpret_cast<Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m0F8EDDFADA514AC59C4B4C82295FD47940EFD493(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * ___list0, const RuntimeMethod* method)
{
{
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * L_3 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56_AdjustorThunk (RuntimeObject * __this, List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
Enumerator__ctor_mE90C882E7B5BBAF6282D3698F559D471DD372C56(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
Enumerator_Dispose_m11F64ED5C59482D991DECEB78DB84602AE632F92(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * V_0 = NULL;
{
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_0 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)__this->get_list_0();
V_0 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_7 = V_0;
NullCheck(L_7);
InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE* L_8 = (InputDeviceU5BU5D_t1D4B7FC58B0B757E4DFEC85259EF3FDE297ECACE*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806((Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *)(Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m23702EF6B11A2136B37C92CFEFEB678510A98A69(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_1 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_3 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * L_5 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m21F5AEF2843D37E4303208946CC277BCABA79806(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_0 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )__this->get_current_3();
return (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )L_0;
}
}
IL2CPP_EXTERN_C InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E _returnValue;
_returnValue = Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_2 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_4;
L_4 = Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_inline((Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *)(Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_5 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m7CE96A7FA596DC07F80A3355C5C73482444513F3(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.InputDevice>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74_gshared (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F * L_1 = (List_1_t476C8CC2E74FC5F7DE5B5CFE6830822665402F1F *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E * L_3 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * _thisAdjusted = reinterpret_cast<Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mDD45FDB3D1F8998282E7CD06A10AA5BBE8F37F74(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, List_1_t985353431229C8151763A38589D03FBD829D85E5 * ___list0, const RuntimeMethod* method)
{
{
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
int16_t* L_3 = (int16_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int16_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF_AdjustorThunk (RuntimeObject * __this, List_1_t985353431229C8151763A38589D03FBD829D85E5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
Enumerator__ctor_m29E4FC41179B01F00974746361A265876AE20EFF(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
Enumerator_Dispose_m503C1ABC285B3D0FAA39522FA557453D04CFFFD5(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
List_1_t985353431229C8151763A38589D03FBD829D85E5 * V_0 = NULL;
{
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_0 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)__this->get_list_0();
V_0 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_7 = V_0;
NullCheck(L_7);
Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_8 = (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
int16_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306((Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *)(Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m9CEA6A4E0A1CC86075937DCECD5E148265615A5A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int16>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_1 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_3 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int16_t* L_5 = (int16_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(int16_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m85314001D39996427C16ECF435AE3F9975F1D306(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Int16>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
int16_t L_0 = (int16_t)__this->get_current_3();
return (int16_t)L_0;
}
}
IL2CPP_EXTERN_C int16_t Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
int16_t _returnValue;
_returnValue = Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_2 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
int16_t L_4;
L_4 = Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_inline((Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *)(Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
int16_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA4424D65DC28519287D44865978729B963CBD291(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int16>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D_gshared (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t985353431229C8151763A38589D03FBD829D85E5 * L_1 = (List_1_t985353431229C8151763A38589D03FBD829D85E5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
int16_t* L_3 = (int16_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int16_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * _thisAdjusted = reinterpret_cast<Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mFB77A8C920DA75F0CDB655C95B7B2D94255ABE4D(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * ___set0, const RuntimeMethod* method)
{
{
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_0 = ___set0;
__this->set__set_0(L_0);
__this->set__index_1(0);
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_1 = ___set0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
__this->set__version_2(L_2);
int32_t* L_3 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B_AdjustorThunk (RuntimeObject * __this, HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * ___set0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
Enumerator__ctor_m5123DE740D5D1C78DDD42EA8125DA3BAF7D5212B(_thisAdjusted, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
Enumerator_Dispose_m86028022BCE0C92C1E9C8FD152409BB4C6AF9B17(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_1 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_RuntimeMethod_var)));
}
IL_001e:
{
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_4 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_4);
SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975* L_5 = (SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975*)L_4->get__slots_8();
int32_t L_6 = (int32_t)__this->get__index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_8 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_8);
SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975* L_9 = (SlotU5BU5D_t464AE2F4120A3C0E4A56A29ED1393EC87FBAA975*)L_8->get__slots_8();
int32_t L_10 = (int32_t)__this->get__index_1();
NullCheck(L_9);
int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_2();
__this->set__current_3(L_11);
int32_t L_12 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get__index_1();
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_15 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get__lastIndex_10();
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001e;
}
}
{
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_17 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get__lastIndex_10();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t* L_19 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_19, sizeof(int32_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m93D1C61EE8D6E991B692413D36046DCF5AE0C404(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__current_3();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_1();
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_2 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__lastIndex_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_RuntimeMethod_var)));
}
IL_0028:
{
int32_t L_5;
L_5 = Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_inline((Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *)(Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF16CAE5CD118B039160A1D7B76FA01E5AA055C48(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_gshared (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 * L_1 = (HashSet_1_tF187707BD5564B6808CE30721FBC083F00B385E5 *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_1(0);
int32_t* L_4 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * _thisAdjusted = reinterpret_cast<Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mD4603EA0638AD88B03619D94BFF10663AC4EC0F5(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___list0, const RuntimeMethod* method)
{
{
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
int32_t* L_3 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77_AdjustorThunk (RuntimeObject * __this, List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
Enumerator__ctor_mD4695CEC1F6028F2AD8B60F1AC999ABF5E496D77(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
Enumerator_Dispose_m0F4FCA57A586D78D592E624FE089FC61DF99EF86(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * V_0 = NULL;
{
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_0 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)__this->get_list_0();
V_0 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_7 = V_0;
NullCheck(L_7);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270((Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *)(Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m40FD166B6757334A2BBCF67238EFDF70D727A4A6(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_1 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_3 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t* L_5 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(int32_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m752C6FE16BEACFCD54DCAC9B921DCAC9A6B4B270(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_current_3();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_2 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
int32_t L_4;
L_4 = Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_inline((Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *)(Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mC1A0056FBFA9C4FD9AED7D8BC89E5C7FA8823F5F(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760_gshared (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 * L_1 = (List_1_t260B41F956D673396C33A4CF94E8D6C4389EACB7 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
int32_t* L_3 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * _thisAdjusted = reinterpret_cast<Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m88B7D5512E84FBD0028966C49316FE82AA6AF760(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_0 = ___array0;
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 L_1 = (*(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2_AdjustorThunk (RuntimeObject * __this, NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
Enumerator__ctor_m787F89525B0801031067D60FFFABF12B10BA9CB2(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
Enumerator_Dispose_m1BA5A217EE1F04EC997FF95CA595646E06C1B52B(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<System.Int32>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_2 = (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m740CBDF222F51FFDE7E86716999541DE775F5801(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<System.Int32>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
Enumerator_Reset_m884C677021D35F03D1923DD1E65CBEA69319F016(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<System.Int32>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 * L_0 = (NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
int32_t L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(int32_t, ((NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)(NativeArray_1_tD60079F06B473C85CF6C2BB4F2D203F38191AE99 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (int32_t)L_2;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<System.Int32>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120_gshared (Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * __this, const RuntimeMethod* method)
{
{
int32_t L_0;
L_0 = Enumerator_get_Current_m9CDCED7DEC6E463491CBAF504C60F72A2108D9D9((Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *)(Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 * _thisAdjusted = reinterpret_cast<Enumerator_tEE96FCD9D1EF14200B36BEAB6F34FA5FAFC27544 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m251843EAECB4CA9A6778103BD8CE009BA6BDF120(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * ___set0, const RuntimeMethod* method)
{
{
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_0 = ___set0;
__this->set__set_0(L_0);
__this->set__index_1(0);
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_1 = ___set0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
__this->set__version_2(L_2);
int32_t* L_3 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D_AdjustorThunk (RuntimeObject * __this, HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * ___set0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
Enumerator__ctor_m0E2DD294C88C1B8972F20730B71AD17E07D7F26D(_thisAdjusted, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
Enumerator_Dispose_m00BF9010B797D94B3BF897BF24F7AABAA7989B38(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_1 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_RuntimeMethod_var)));
}
IL_001e:
{
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_4 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_4);
SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62* L_5 = (SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62*)L_4->get__slots_8();
int32_t L_6 = (int32_t)__this->get__index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_8 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_8);
SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62* L_9 = (SlotU5BU5D_t78A561CFCB50C1A17300E6F4FD4A3FC892DDAB62*)L_8->get__slots_8();
int32_t L_10 = (int32_t)__this->get__index_1();
NullCheck(L_9);
int32_t L_11 = (int32_t)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_2();
__this->set__current_3(L_11);
int32_t L_12 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get__index_1();
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_15 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get__lastIndex_10();
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001e;
}
}
{
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_17 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get__lastIndex_10();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t* L_19 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_19, sizeof(int32_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mEAEC648B067BCDE9E97BBC955ECC2709D08466C6(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__current_3();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_1();
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_2 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__lastIndex_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_RuntimeMethod_var)));
}
IL_0028:
{
int32_t L_5;
L_5 = Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_inline((Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *)(Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
int32_t L_6 = (int32_t)L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mA4A6293D32D6BDF79FE41F6D078AC6AE9CBBFD76(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_gshared (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC * L_1 = (HashSet_1_tC7075903B74F058503994CAB008D196EF7AFB4AC *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_1(0);
int32_t* L_4 = (int32_t*)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * _thisAdjusted = reinterpret_cast<Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m8D28F3EB92EF3318E0F3F375B897A9B9F5C26AF3(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * ___list0, const RuntimeMethod* method)
{
{
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
int32_t* L_3 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8_AdjustorThunk (RuntimeObject * __this, List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
Enumerator__ctor_m70A815605798A350CCB1B211B365D707DFFE3DC8(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
Enumerator_Dispose_m9905093718C2F34CB58BC1D8E16860E029C08456(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * V_0 = NULL;
{
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_0 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)__this->get_list_0();
V_0 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_7 = V_0;
NullCheck(L_7);
Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_8 = (Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E((Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *)(Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mDECBD2FBFA44578D8E050CECB33BF350152E111A(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_1 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_3 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t* L_5 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(int32_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m612AB2E04C59C34F3D8BA2BD925C41288442D11E(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_current_3();
return (int32_t)L_0;
}
}
IL2CPP_EXTERN_C int32_t Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
int32_t _returnValue;
_returnValue = Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_2 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
int32_t L_4;
L_4 = Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_inline((Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *)(Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
int32_t L_5 = (int32_t)L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m7CC7D63B16C8A0136458D6C2BF3BC2B61128AEF5(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int32Enum>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091_gshared (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * L_1 = (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
int32_t* L_3 = (int32_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int32_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * _thisAdjusted = reinterpret_cast<Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m1D79FA65EB687AE9602C3A7BED608BFFC5359091(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * ___list0, const RuntimeMethod* method)
{
{
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
int64_t* L_3 = (int64_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int64_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D_AdjustorThunk (RuntimeObject * __this, List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
Enumerator__ctor_mE89FAAE2239CC3AB9ADB004B0902E79B427FFC9D(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
Enumerator_Dispose_m267EB0178CA404F0723760F960C91C1309D4416F(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * V_0 = NULL;
{
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_0 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)__this->get_list_0();
V_0 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_7 = V_0;
NullCheck(L_7);
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_8 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
int64_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D((Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *)(Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m25DAE3260BFED34CE518F60AF8D6768AF47A2DF2(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Int64>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_1 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_3 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int64_t* L_5 = (int64_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(int64_t));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m24945AC740BC8CD61EA602EC5B45184A09D81E7D(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Int64>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = (int64_t)__this->get_current_3();
return (int64_t)L_0;
}
}
IL2CPP_EXTERN_C int64_t Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
int64_t _returnValue;
_returnValue = Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_2 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
int64_t L_4;
L_4 = Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_inline((Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *)(Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
int64_t L_5 = L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m0058A7752D23313A80358F7BEDDD2E71CC9032D1(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Int64>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F_gshared (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 * L_1 = (List_1_tC465E4AAC82F54C0A79B2CE3B797531B10B9ACE4 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
int64_t* L_3 = (int64_t*)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(int64_t));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * _thisAdjusted = reinterpret_cast<Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m165D87E34459E864D13554C6F7C08521689A5D5F(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * ___list0, const RuntimeMethod* method)
{
{
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * L_3 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E_AdjustorThunk (RuntimeObject * __this, List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
Enumerator__ctor_m94029C20D004B6603841EA0A912FD1EE761DDC8E(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
Enumerator_Dispose_mF9591CA5FEBE0E73EC97D00AD524F026B71D7BE2(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * V_0 = NULL;
{
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_0 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)__this->get_list_0();
V_0 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_7 = V_0;
NullCheck(L_7);
JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3* L_8 = (JsonPositionU5BU5D_tFBDDA0A840401375DD5F172E417AB6CAC4AC75E3*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D((Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *)(Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m1AB3AB977EC2BD5386DB322750A2D1F1F851E4A5(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_1 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_3 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * L_5 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m04EE30AFBEB0423ADEE64D685BC126CE61C5668D(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_0 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )__this->get_current_3();
return (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )L_0;
}
}
IL2CPP_EXTERN_C JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 _returnValue;
_returnValue = Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_2 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_4;
L_4 = Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_inline((Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *)(Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_5 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF7B2B846A25910FA469D9ABC7F8C44EBA6D1E664(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.Json.JsonPosition>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199_gshared (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 * L_1 = (List_1_tE160C98C4F4B8B294705C472AC8935FF8C2D3A15 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 * L_3 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * _thisAdjusted = reinterpret_cast<Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mA0C2524438E92430D3EF1F8BF2BBE7D39DDAF199(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * ___list0, const RuntimeMethod* method)
{
{
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * L_3 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F_AdjustorThunk (RuntimeObject * __this, List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
Enumerator__ctor_m0C02C2A9945FF22FFC721DF4038FD2244A692D5F(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
Enumerator_Dispose_m22F195232D250C1C83FA3F2858D894659B2EEA68(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * V_0 = NULL;
{
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_0 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)__this->get_list_0();
V_0 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_7 = V_0;
NullCheck(L_7);
LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6* L_8 = (LatLngU5BU5D_tAE2C2C8483158201EE0180EB3B14F4691EC7ACA6*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909((Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *)(Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m9730B5E2C1F3892CEF69D07CF816AFD220476E91(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_1 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_3 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * L_5 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m49F1451893DC127A3537BBCA9C411D50A8723909(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_0 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )__this->get_current_3();
return (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )L_0;
}
}
IL2CPP_EXTERN_C LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 _returnValue;
_returnValue = Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_2 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_4;
L_4 = Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_inline((Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *)(Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_5 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m1DFA902BF9A08E69AB90450C92B02FBF745885EF(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<Mapbox.VectorTile.Geometry.LatLng>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981_gshared (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 * L_1 = (List_1_t90DFBC1B25ADB979E569FDCC39AAF79E14210CC9 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 * L_3 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * _thisAdjusted = reinterpret_cast<Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mAAE1CAD4885A61D51E7A3479BE32D12B9EA36981(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * L_0 = ___array0;
NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 L_1 = (*(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25_AdjustorThunk (RuntimeObject * __this, NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
Enumerator__ctor_m0763F432142EAAF708B1DA47C78A50FC93130A25(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
Enumerator_Dispose_mE818A3AA997CF08912F157EB62EA48163011DF75(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * L_2 = (NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m13EBCAF6FE3692CC0BEDA9EFF470B972CB325ECA(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
Enumerator_Reset_m3B107215361930D8C67535ED92487BF0B48613C0(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 * L_0 = (NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 , ((NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)(NativeArray_1_tF6A10DD2511425342F2B1B19CF0EA313D4F300D2 *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 )L_2;
}
}
IL2CPP_EXTERN_C LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 _returnValue;
_returnValue = Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C_gshared (Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * __this, const RuntimeMethod* method)
{
{
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 L_0;
L_0 = Enumerator_get_Current_m1245C7418FB3AB200879624993295A3E3B9342BC((Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *)(Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 L_1 = (LightDataGI_t0C34AB69E4E96717FD276B35116C798A641D44F2 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 * _thisAdjusted = reinterpret_cast<Enumerator_t24051330D57A5E892A07EE3D6F68F63244771858 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mAF8346C40CDC4DBF5860AFBBBFAA23F24209145C(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::.ctor(Unity.Collections.NativeArray`1<T>&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * ___array0, const RuntimeMethod* method)
{
{
NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * L_0 = ___array0;
NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C L_1 = (*(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)L_0);
__this->set_m_Array_0(L_1);
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D_AdjustorThunk (RuntimeObject * __this, NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * ___array0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
Enumerator__ctor_m6D85273C13F674D91FB0A35A73B718330EB4141D(_thisAdjusted, ___array0, method);
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
Enumerator_Dispose_mD1FDEBF6A3FD7943CC9B87D7E5D49BBF016D1888(_thisAdjusted, method);
}
// System.Boolean Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = (int32_t)__this->get_m_Index_1();
__this->set_m_Index_1(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = (int32_t)__this->get_m_Index_1();
NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * L_2 = (NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)__this->get_address_of_m_Array_0();
int32_t L_3;
L_3 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)L_2)->___m_Length_1);
V_0 = (bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0);
goto IL_0025;
}
IL_0025:
{
bool L_4 = V_0;
return (bool)L_4;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m5A30AFB1C36311195D3040DA1939A88148BCB44E(_thisAdjusted, method);
return _returnValue;
}
// System.Void Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
{
__this->set_m_Index_1((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
Enumerator_Reset_mE7D8AF7E38DE2E11993C44C9F7DAA2D005C17721(_thisAdjusted, method);
}
// T Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C * L_0 = (NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)__this->get_address_of_m_Array_0();
int32_t L_1 = (int32_t)__this->get_m_Index_1();
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 L_2;
L_2 = IL2CPP_NATIVEARRAY_GET_ITEM(ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 , ((NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)(NativeArray_1_tEB4E03A9BCDF6762EECA23C2C3D6D00495CDD69C *)L_0)->___m_Buffer_0, (int32_t)L_1);
return (ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 )L_2;
}
}
IL2CPP_EXTERN_C ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 _returnValue;
_returnValue = Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E(_thisAdjusted, method);
return _returnValue;
}
// System.Object Unity.Collections.NativeArray`1/Enumerator<UnityEngine.XR.ARCore.ManagedReferenceImage>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D_gshared (Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * __this, const RuntimeMethod* method)
{
{
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 L_0;
L_0 = Enumerator_get_Current_mD139CAED3AC7969B62308C59C83A38944CFC119E((Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *)(Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 L_1 = (ManagedReferenceImage_tEA3FEA09D58B38947EE89CFFF857F50EC7309B10 )L_0;
RuntimeObject * L_2 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 3), &L_1);
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 * _thisAdjusted = reinterpret_cast<Enumerator_t4409337AE3227DBEDB1C7A9202DD83519E759555 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m0690CE35A3021517F8B9358F95EB7C1B33954D1D(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * ___set0, const RuntimeMethod* method)
{
{
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_0 = ___set0;
__this->set__set_0(L_0);
__this->set__index_1(0);
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_1 = ___set0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
__this->set__version_2(L_2);
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * L_3 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833_AdjustorThunk (RuntimeObject * __this, HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * ___set0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
Enumerator__ctor_mDB10B157CF11B20FC4B332C3CC37D36344CA9833(_thisAdjusted, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
Enumerator_Dispose_mD2252500E0BB1D6799D55C9A80C476F57FC1143D(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_1 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_RuntimeMethod_var)));
}
IL_001e:
{
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_4 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_4);
SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC* L_5 = (SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC*)L_4->get__slots_8();
int32_t L_6 = (int32_t)__this->get__index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_8 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_8);
SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC* L_9 = (SlotU5BU5D_tCA81E26C4978FDDDD662A4DBA6DE2999A76DC4CC*)L_8->get__slots_8();
int32_t L_10 = (int32_t)__this->get__index_1();
NullCheck(L_9);
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_11 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_2();
__this->set__current_3(L_11);
int32_t L_12 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get__index_1();
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_15 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get__lastIndex_10();
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001e;
}
}
{
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_17 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get__lastIndex_10();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * L_19 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_19, sizeof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mE17B179DC19983C9B938787061D6BAD469B1D602(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_0 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )__this->get__current_3();
return (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )L_0;
}
}
IL2CPP_EXTERN_C MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 _returnValue;
_returnValue = Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_1();
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_2 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__lastIndex_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_RuntimeMethod_var)));
}
IL_0028:
{
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_5;
L_5 = Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_inline((Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *)(Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_6 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 1), &L_6);
return (RuntimeObject *)L_7;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m07F55735F27A04084E7191470A841F062D681EBB(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.XR.MeshId>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_gshared (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 * L_1 = (HashSet_1_t29A592C8ABBCEE0A2BA44DCF2FD08F9075AED2D9 *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_1(0);
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 * L_4 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 *)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * _thisAdjusted = reinterpret_cast<Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m322191893E6E44BAA0152C4F456C9BE77AF944BD(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * ___list0, const RuntimeMethod* method)
{
{
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * L_3 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096_AdjustorThunk (RuntimeObject * __this, List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
Enumerator__ctor_m2EAF03BA434E00426D1A0D695B8467BBB8058096(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
Enumerator_Dispose_m31D29771A1518E44E9584A35C92E450C395754B9(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * V_0 = NULL;
{
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_0 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)__this->get_list_0();
V_0 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_7 = V_0;
NullCheck(L_7);
MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40* L_8 = (MeshInfoU5BU5D_t3724FDAD33EFBB657082C34C82147656E7840A40*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763((Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *)(Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m501246F7F719871584E20FA4930077EFE4071A06(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_1 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_3 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * L_5 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_m4D8B9517D9EBD5294B6AB80081F7BABEA1727763(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_0 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )__this->get_current_3();
return (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )L_0;
}
}
IL2CPP_EXTERN_C MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 _returnValue;
_returnValue = Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_2 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_4;
L_4 = Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_inline((Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *)(Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_5 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )L_4;
RuntimeObject * L_6 = Box(IL2CPP_RGCTX_DATA(InitializedTypeInfo(method->klass)->rgctx_data, 2), &L_5);
return (RuntimeObject *)L_6;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mD355BD0626383ACCEDE08C1875EE2E15DC6A3F62(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.XR.MeshInfo>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413_gshared (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D * L_1 = (List_1_t053E82C4FE1FEB4EF0149CCADF601193CE96CB4D *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 * L_3 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 *)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 ));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * _thisAdjusted = reinterpret_cast<Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mA7C8560FCECBE08C75AA94CDCB21AE9C918E8413(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.HashSet`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___set0, const RuntimeMethod* method)
{
{
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_0 = ___set0;
__this->set__set_0(L_0);
__this->set__index_1(0);
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_1 = ___set0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
__this->set__version_2(L_2);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660_AdjustorThunk (RuntimeObject * __this, HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * ___set0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
Enumerator__ctor_mAE938D95F2DC42DB92496F70C58F3518340D0660(_thisAdjusted, ___set0, method);
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
Enumerator_Dispose_m8A225BA705CC2D5BA0A22FF58381EA1FDB37ED20(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_1 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_007b;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_RuntimeMethod_var)));
}
IL_001e:
{
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_4 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_4);
SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* L_5 = (SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494*)L_4->get__slots_8();
int32_t L_6 = (int32_t)__this->get__index_1();
NullCheck(L_5);
int32_t L_7 = (int32_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->get_hashCode_0();
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_006d;
}
}
{
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_8 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_8);
SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494* L_9 = (SlotU5BU5D_tA2C59549601B8D4FF421D3FE4AE207703AADA494*)L_8->get__slots_8();
int32_t L_10 = (int32_t)__this->get__index_1();
NullCheck(L_9);
RuntimeObject * L_11 = (RuntimeObject *)((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->get_value_2();
__this->set__current_3(L_11);
int32_t L_12 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_006d:
{
int32_t L_13 = (int32_t)__this->get__index_1();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
}
IL_007b:
{
int32_t L_14 = (int32_t)__this->get__index_1();
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_15 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_15);
int32_t L_16 = (int32_t)L_15->get__lastIndex_10();
if ((((int32_t)L_14) < ((int32_t)L_16)))
{
goto IL_001e;
}
}
{
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_17 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_17);
int32_t L_18 = (int32_t)L_17->get__lastIndex_10();
__this->set__index_1(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
RuntimeObject ** L_19 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_19, sizeof(RuntimeObject *));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mD87CDEF3F60C047F21B9E6A48590E59D9D6621C9(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.HashSet`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_1();
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_2 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__lastIndex_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_RuntimeMethod_var)));
}
IL_0028:
{
RuntimeObject * L_5;
L_5 = Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_inline((Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *)(Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (RuntimeObject *)L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m8D33FC873BC08E921D63DA6244A8437103E30398(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.HashSet`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_gshared (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * L_1 = (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B *)__this->get__set_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_13();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_1(0);
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * _thisAdjusted = reinterpret_cast<Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m9A840F0263DFC3FD5F6DADBEC9ED39587E6BB7C6(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.LinkedList`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ___list0, const RuntimeMethod* method)
{
{
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_0 = ___list0;
__this->set__list_0(L_0);
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
__this->set__version_2(L_2);
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_3 = ___list0;
NullCheck(L_3);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_4 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_3->get_head_0();
__this->set__node_1(L_4);
RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_5, sizeof(RuntimeObject *));
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9_AdjustorThunk (RuntimeObject * __this, LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator__ctor_mCB31A16070975CD57B995D6D4DADC61E2B6BD0C9(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator__ctor_mA63613346FD245B2A95411B1B28FBA55FAC9F523(_thisAdjusted, ___info0, ___context1, method);
}
// T System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_4();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_4();
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_2 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck((LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)L_2);
int32_t L_3;
L_3 = (( int32_t (*) (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0028;
}
}
IL_001d:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_4 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_4, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_RuntimeMethod_var)));
}
IL_0028:
{
RuntimeObject * L_5 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mE4989A81BC84865D1126696ABC1BA3C5CF40615D(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_1 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_RuntimeMethod_var)));
}
IL_001e:
{
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_4 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)__this->get__node_1();
if (L_4)
{
goto IL_003b;
}
}
{
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_5 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck((LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)L_5);
int32_t L_6;
L_6 = (( int32_t (*) (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)L_5, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)));
return (bool)0;
}
IL_003b:
{
int32_t L_7 = (int32_t)__this->get__index_4();
__this->set__index_4(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)));
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_8 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)__this->get__node_1();
NullCheck(L_8);
RuntimeObject * L_9 = (RuntimeObject *)L_8->get_item_3();
__this->set__current_3(L_9);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_10 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)__this->get__node_1();
NullCheck(L_10);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_11 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_10->get_next_1();
__this->set__node_1(L_11);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_12 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)__this->get__node_1();
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_13 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck(L_13);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_14 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_13->get_head_0();
if ((!(((RuntimeObject*)(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_12) == ((RuntimeObject*)(LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_14))))
{
goto IL_0085;
}
}
{
__this->set__node_1((LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)NULL);
}
IL_0085:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m8C0026B8E1A6150866B1D0100A28B12A672875BB(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_2();
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_1 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get_version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_RuntimeMethod_var)));
}
IL_001e:
{
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B * L_5 = (LinkedList_1_tF98410EEA26883FF7ECC1DFD10068A4CC744550B *)__this->get__list_0();
NullCheck(L_5);
LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F * L_6 = (LinkedListNode_1_tE9D663EA27667E3E9F8E311FC56B32F3E3D9B07F *)L_5->get_head_0();
__this->set__node_1(L_6);
__this->set__index_4(0);
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_m567913121BE34DE6AA6FBC2E68008704056F321D(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator_Dispose_m5259FBF9B6A888C745BA8877D281B992C503520D(_thisAdjusted, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511_AdjustorThunk (RuntimeObject * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator_System_Runtime_Serialization_ISerializable_GetObjectData_m393CBD9CC0ACFCEF6AE57375C20F2AC2D785A511(_thisAdjusted, ___info0, ___context1, method);
}
// System.Void System.Collections.Generic.LinkedList`1/Enumerator<System.Object>::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_gshared (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
{
PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var)));
PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * _thisAdjusted = reinterpret_cast<Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B *>(__this + _offset);
Enumerator_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m33389B4CF0CB6CB4DF327C6A3952B6D92146082B(_thisAdjusted, ___sender0, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list0, const RuntimeMethod* method)
{
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = ___list0;
__this->set_list_0(L_0);
__this->set_index_1(0);
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_1 = ___list0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
__this->set_version_2(L_2);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1_AdjustorThunk (RuntimeObject * __this, List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
Enumerator__ctor_mB1C32B2BA04F8CCE43082D2DBA7DB78DA7C3ABF1(_thisAdjusted, ___list0, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * V_0 = NULL;
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_list_0();
V_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)L_0;
int32_t L_1 = (int32_t)__this->get_version_2();
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__version_3();
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_004a;
}
}
{
int32_t L_4 = (int32_t)__this->get_index_1();
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_2();
if ((!(((uint32_t)L_4) < ((uint32_t)L_6))))
{
goto IL_004a;
}
}
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_7 = V_0;
NullCheck(L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_7->get__items_1();
int32_t L_9 = (int32_t)__this->get_index_1();
NullCheck(L_8);
int32_t L_10 = L_9;
RuntimeObject * L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->set_current_3(L_11);
int32_t L_12 = (int32_t)__this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
return (bool)1;
}
IL_004a:
{
bool L_13;
L_13 = Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268((Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
return (bool)L_13;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNextRare()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_1 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_3 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_list_0();
NullCheck(L_3);
int32_t L_4 = (int32_t)L_3->get__size_2();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
RuntimeObject ** L_5 = (RuntimeObject **)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_5, sizeof(RuntimeObject *));
return (bool)0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNextRare_mD43434277E8BF30018D7A80732186B53AAD38268(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_inline(_thisAdjusted, method);
return _returnValue;
}
// System.Object System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_index_1();
if (!L_0)
{
goto IL_001d;
}
}
{
int32_t L_1 = (int32_t)__this->get_index_1();
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_2 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_list_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_2();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))))))
{
goto IL_0024;
}
}
IL_001d:
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)31), /*hidden argument*/NULL);
}
IL_0024:
{
RuntimeObject * L_4;
L_4 = Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_inline((Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (RuntimeObject *)L_4;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_m7939AC7FEC260A4997C1F5DB1CBE5DED21C786E9(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_version_2();
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_1 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)__this->get_list_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_3();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
ThrowHelper_ThrowInvalidOperationException_m156AE0DA5EAFFC8F478E29F74A24674C55C40A24((int32_t)((int32_t)32), /*hidden argument*/NULL);
}
IL_001a:
{
__this->set_index_1(0);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of_current_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * _thisAdjusted = reinterpret_cast<Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mD6836DE00F3F176ECAA3ABC4E64421B010E8F32B(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Queue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method)
{
{
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_0 = ___q0;
__this->set__q_0(L_0);
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_1 = ___q0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_4();
__this->set__version_1(L_2);
__this->set__index_2((-1));
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8_AdjustorThunk (RuntimeObject * __this, Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * ___q0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
Enumerator__ctor_m54C0E2BFC625D1F20B0732D51974B7B0FCA8EFA8(_thisAdjusted, ___q0, method);
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
{
__this->set__index_2(((int32_t)-2));
RuntimeObject ** L_0 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_0, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
Enumerator_Dispose_mAC863B8783E18A16FEAE03EF6B53E216A0D8A154(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Queue`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = (int32_t)__this->get__version_1();
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_1 = (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this->get__q_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_4();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_RuntimeMethod_var)));
}
IL_001e:
{
int32_t L_4 = (int32_t)__this->get__index_2();
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)-2)))))
{
goto IL_002a;
}
}
{
return (bool)0;
}
IL_002a:
{
int32_t L_5 = (int32_t)__this->get__index_2();
__this->set__index_2(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)));
int32_t L_6 = (int32_t)__this->get__index_2();
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_7 = (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this->get__q_0();
NullCheck(L_7);
int32_t L_8 = (int32_t)L_7->get__size_3();
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
{
goto IL_0061;
}
}
{
__this->set__index_2(((int32_t)-2));
RuntimeObject ** L_9 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_9, sizeof(RuntimeObject *));
return (bool)0;
}
IL_0061:
{
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_10 = (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this->get__q_0();
NullCheck(L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_10->get__array_0();
V_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_11;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = V_0;
NullCheck(L_12);
V_1 = (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)));
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_13 = (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this->get__q_0();
NullCheck(L_13);
int32_t L_14 = (int32_t)L_13->get__head_1();
int32_t L_15 = (int32_t)__this->get__index_2();
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
int32_t L_16 = V_2;
int32_t L_17 = V_1;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_008c;
}
}
{
int32_t L_18 = V_2;
int32_t L_19 = V_1;
V_2 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19));
}
IL_008c:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = V_0;
int32_t L_21 = V_2;
NullCheck(L_20);
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
__this->set__currentElement_3(L_23);
return (bool)1;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m021EA477154DFEF16C293069BAA564C75FE058BA(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.Queue`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_2();
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0((Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *)(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
}
IL_000f:
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get__currentElement_3();
return (RuntimeObject *)L_1;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
String_t* G_B3_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__index_2();
if ((((int32_t)L_0) == ((int32_t)(-1))))
{
goto IL_0010;
}
}
{
G_B3_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9));
goto IL_0015;
}
IL_0010:
{
G_B3_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633));
}
IL_0015:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)G_B3_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
Enumerator_ThrowEnumerationNotStartedOrEnded_mE44BF9FEB0D8FECFCAB2D3313950BF7E786004D0(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0;
L_0 = Enumerator_get_Current_m7EA5377B341C9268EB0F0885F8CFC2073E53717D((Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *)(Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mEB9C5B37AC20A3349A879E7303801A8D2EB90C64(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.Queue`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_gshared (Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_1();
Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 * L_1 = (Queue_1_t65333FCCA10D8CE1B441D400B6B94140BCB8BF64 *)__this->get__q_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_4();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_2((-1));
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C * _thisAdjusted = reinterpret_cast<Enumerator_t7AA6AE94A0D53334AA15EFC74FE63FF525189B8C *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mD2487144ED0DFF713FDF306D5010A84F9854DC11(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::.ctor(System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mC6EFC7C8194844FA6BD7C3FD3A2030E43005749E_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * ___builder0, const RuntimeMethod* method)
{
{
NullCheck((RuntimeObject *)__this);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405((RuntimeObject *)__this, /*hidden argument*/NULL);
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_0 = ___builder0;
__this->set__builder_0(L_0);
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_1 = ___builder0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
__this->set__version_1(L_2);
__this->set__index_2(0);
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
// T System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m24A20413F305CA97351A03E2845CE809B268FDC7_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_0;
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m58C8BC32D409A647AEB1AF991F5084A31BFA4482_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Object System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_m071F286459C33D0B11CDDC07839CFC4CBE6270C0_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_2();
if (!L_0)
{
goto IL_001b;
}
}
{
int32_t L_1 = (int32_t)__this->get__index_2();
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_2 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_2);
int32_t L_3 = (int32_t)L_2->get__size_1();
if ((((int32_t)L_1) <= ((int32_t)L_3)))
{
goto IL_0021;
}
}
IL_001b:
{
Exception_t * L_4;
L_4 = Error_EnumerationIsDone_m30904B8D40E60A4DE33200FB2BB6D4F54E45856C(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_get_Current_m071F286459C33D0B11CDDC07839CFC4CBE6270C0_RuntimeMethod_var)));
}
IL_0021:
{
RuntimeObject * L_5 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_5;
}
}
// System.Boolean System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m5C8A39AE5A262E2EE1388825F81E48A3902385DE_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)__this->get__version_1();
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_1 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
if ((!(((uint32_t)L_0) == ((uint32_t)L_2))))
{
goto IL_0070;
}
}
{
int32_t L_3 = (int32_t)__this->get__index_2();
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_4 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_4);
int32_t L_5 = (int32_t)L_4->get__size_1();
if ((((int32_t)L_3) >= ((int32_t)L_5)))
{
goto IL_004f;
}
}
{
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_6 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_6->get__items_0();
int32_t L_8 = (int32_t)__this->get__index_2();
V_0 = (int32_t)L_8;
int32_t L_9 = V_0;
__this->set__index_2(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)));
int32_t L_10 = V_0;
NullCheck(L_7);
int32_t L_11 = L_10;
RuntimeObject * L_12 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
__this->set__current_3(L_12);
return (bool)1;
}
IL_004f:
{
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_13 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_13);
int32_t L_14 = (int32_t)L_13->get__size_1();
__this->set__index_2(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)));
RuntimeObject ** L_15 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_15, sizeof(RuntimeObject *));
return (bool)0;
}
IL_0070:
{
Exception_t * L_16;
L_16 = Error_CollectionModifiedWhileEnumerating_mBF1C79EAB68E816E513F2627BE74569B1A0FF60C(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_m5C8A39AE5A262E2EE1388825F81E48A3902385DE_RuntimeMethod_var)));
}
}
// System.Void System.Runtime.CompilerServices.ReadOnlyCollectionBuilder`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_m00AEF0D41C1EB6A913A8991F68CFC1D34ABA6DA4_gshared (Enumerator_tBEEED13454B4BE8307F2419DA934A6893E2E783B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_1();
ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F * L_1 = (ReadOnlyCollectionBuilder_1_t1705BD741C77CFFA3C925AEDEEC430A60482DD1F *)__this->get__builder_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_0019;
}
}
{
Exception_t * L_3;
L_3 = Error_CollectionModifiedWhileEnumerating_mBF1C79EAB68E816E513F2627BE74569B1A0FF60C(/*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_m00AEF0D41C1EB6A913A8991F68CFC1D34ABA6DA4_RuntimeMethod_var)));
}
IL_0019:
{
__this->set__index_2(0);
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__current_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Stack`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___stack0, const RuntimeMethod* method)
{
{
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_0 = ___stack0;
__this->set__stack_0(L_0);
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_1 = ___stack0;
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
__this->set__version_1(L_2);
__this->set__index_2(((int32_t)-2));
RuntimeObject ** L_3 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_3, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA_AdjustorThunk (RuntimeObject * __this, Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * ___stack0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
Enumerator__ctor_m8C52CE78B51AC011ED78B313F665A80E7A6011DA(_thisAdjusted, ___stack0, method);
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
{
__this->set__index_2((-1));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
Enumerator_Dispose_mE091BA5830D82B8726C4141D15FE8F716E5FA7A9(_thisAdjusted, method);
}
// System.Boolean System.Collections.Generic.Stack`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B10_0 = 0;
int32_t G_B9_0 = 0;
{
int32_t L_0 = (int32_t)__this->get__version_1();
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_1 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get__stack_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_RuntimeMethod_var)));
}
IL_001e:
{
int32_t L_4 = (int32_t)__this->get__index_2();
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)-2)))))
{
goto IL_0067;
}
}
{
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_5 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get__stack_0();
NullCheck(L_5);
int32_t L_6 = (int32_t)L_5->get__size_1();
__this->set__index_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)));
int32_t L_7 = (int32_t)__this->get__index_2();
int32_t L_8 = (int32_t)((((int32_t)((((int32_t)L_7) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
G_B4_0 = L_8;
if (!L_8)
{
G_B5_0 = L_8;
goto IL_0066;
}
}
{
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_9 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get__stack_0();
NullCheck(L_9);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_9->get__array_0();
int32_t L_11 = (int32_t)__this->get__index_2();
NullCheck(L_10);
int32_t L_12 = L_11;
RuntimeObject * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
__this->set__currentElement_3(L_13);
G_B5_0 = G_B4_0;
}
IL_0066:
{
return (bool)G_B5_0;
}
IL_0067:
{
int32_t L_14 = (int32_t)__this->get__index_2();
if ((!(((uint32_t)L_14) == ((uint32_t)(-1)))))
{
goto IL_0072;
}
}
{
return (bool)0;
}
IL_0072:
{
int32_t L_15 = (int32_t)__this->get__index_2();
V_0 = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1));
int32_t L_16 = V_0;
__this->set__index_2(L_16);
int32_t L_17 = V_0;
int32_t L_18 = (int32_t)((((int32_t)((((int32_t)L_17) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
G_B9_0 = L_18;
if (!L_18)
{
G_B10_0 = L_18;
goto IL_00a9;
}
}
{
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_19 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get__stack_0();
NullCheck(L_19);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_19->get__array_0();
int32_t L_21 = (int32_t)__this->get__index_2();
NullCheck(L_20);
int32_t L_22 = L_21;
RuntimeObject * L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
__this->set__currentElement_3(L_23);
return (bool)G_B9_0;
}
IL_00a9:
{
RuntimeObject ** L_24 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_24, sizeof(RuntimeObject *));
return (bool)G_B10_0;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_mB9EE0FB05AC610C559C9E0C0A9DB6B665817F364(_thisAdjusted, method);
return _returnValue;
}
// T System.Collections.Generic.Stack`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__index_2();
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_000f;
}
}
{
Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F((Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *)(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
}
IL_000f:
{
RuntimeObject * L_1 = (RuntimeObject *)__this->get__currentElement_3();
return (RuntimeObject *)L_1;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::ThrowEnumerationNotStartedOrEnded()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
String_t* G_B3_0 = NULL;
{
int32_t L_0 = (int32_t)__this->get__index_2();
if ((((int32_t)L_0) == ((int32_t)((int32_t)-2))))
{
goto IL_0011;
}
}
{
G_B3_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9));
goto IL_0016;
}
IL_0011:
{
G_B3_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633));
}
IL_0016:
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_1 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_1, (String_t*)G_B3_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_RuntimeMethod_var)));
}
}
IL2CPP_EXTERN_C void Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
Enumerator_ThrowEnumerationNotStartedOrEnded_mF723809F4090AD662FAC3C99432F8240E8183B6F(_thisAdjusted, method);
}
// System.Object System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0;
L_0 = Enumerator_get_Current_m68B7C2A1DD4BB2F486E536F45C1DAD433BCD379D((Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *)(Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *)__this, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (RuntimeObject *)L_0;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_System_Collections_IEnumerator_get_Current_mF20D8F2D587D8EF405C470C2ACCE5C37865E7C51(_thisAdjusted, method);
return _returnValue;
}
// System.Void System.Collections.Generic.Stack`1/Enumerator<System.Object>::System.Collections.IEnumerator.Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_gshared (Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__version_1();
Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 * L_1 = (Stack_1_t92AC5F573A3C00899B24B775A71B4327D588E981 *)__this->get__stack_0();
NullCheck(L_1);
int32_t L_2 = (int32_t)L_1->get__version_2();
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001e;
}
}
{
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_3 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_3, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_RuntimeMethod_var)));
}
IL_001e:
{
__this->set__index_2(((int32_t)-2));
RuntimeObject ** L_4 = (RuntimeObject **)__this->get_address_of__currentElement_3();
il2cpp_codegen_initobj(L_4, sizeof(RuntimeObject *));
return;
}
}
IL2CPP_EXTERN_C void Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 * _thisAdjusted = reinterpret_cast<Enumerator_tF6E3A9686966EF18B6DFA3748229B35E666CE514 *>(__this + _offset);
Enumerator_System_Collections_IEnumerator_Reset_mEB7AAB4B06CCFBDFD704D179D83CC86BA16D61B4(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::.ctor(System.Collections.Generic.Dictionary`2<UnityEngine.XR.ARSubsystems.TrackableId,TTrackable>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method)
{
{
// if (trackables == null)
Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_0 = ___trackables0;
if (L_0)
{
goto IL_000e;
}
}
{
// throw new ArgumentNullException("trackables");
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var)));
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral336703A716E6AABC0F3D29AA7F207E54FF0E7ACC)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_RuntimeMethod_var)));
}
IL_000e:
{
// m_Enumerator = trackables.GetEnumerator();
Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * L_2 = ___trackables0;
NullCheck((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2);
Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 L_3;
L_3 = (( Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 (*) (Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0)->methodPointer)((Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 *)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 0));
__this->set_m_Enumerator_0(L_3);
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED_AdjustorThunk (RuntimeObject * __this, Dictionary_2_t0A52DB56FD1E7867C489BCD59361434AD1DACF83 * ___trackables0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * _thisAdjusted = reinterpret_cast<Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *>(__this + _offset);
Enumerator__ctor_mA7B2ABFB9289BBCB62B1C25572AB953B60514CED(_thisAdjusted, ___trackables0, method);
}
// System.Boolean UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
{
// return m_Enumerator.MoveNext();
Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * L_0 = (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)__this->get_address_of_m_Enumerator_0();
bool L_1;
L_1 = Enumerator_MoveNext_m3B6FDA9BA3DA9D8E19341C3FE4E6FD2864AD97F8((Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 1));
return (bool)L_1;
}
}
IL2CPP_EXTERN_C bool Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * _thisAdjusted = reinterpret_cast<Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *>(__this + _offset);
bool _returnValue;
_returnValue = Enumerator_MoveNext_m7C26F98E01304EA7C8F0B6E4FEF7E9787915AB1D(_thisAdjusted, method);
return _returnValue;
}
// TTrackable UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D V_0;
memset((&V_0), 0, sizeof(V_0));
{
// return m_Enumerator.Current.Value;
Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * L_0 = (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)__this->get_address_of_m_Enumerator_0();
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_1;
L_1 = Enumerator_get_Current_mEBA22AF0232F6C2FE3C86424A5DA3D719A6F477A_inline((Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 2));
V_0 = (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_1;
RuntimeObject * L_2;
L_2 = KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_inline((KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D *)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
return (RuntimeObject *)L_2;
}
}
IL2CPP_EXTERN_C RuntimeObject * Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * _thisAdjusted = reinterpret_cast<Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *>(__this + _offset);
RuntimeObject * _returnValue;
_returnValue = Enumerator_get_Current_m39A0AD5C1E46A028907AE6D774752B6F22946EF3(_thisAdjusted, method);
return _returnValue;
}
// System.Void UnityEngine.XR.ARFoundation.TrackableCollection`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047_gshared (Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * __this, const RuntimeMethod* method)
{
{
// m_Enumerator.Dispose();
Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * L_0 = (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)__this->get_address_of_m_Enumerator_0();
Enumerator_Dispose_m831305B9708FFE22AF328227EAF1EA27C8296C9B((Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)(Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 4));
// }
return;
}
}
IL2CPP_EXTERN_C void Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 * _thisAdjusted = reinterpret_cast<Enumerator_t2E1E8D9B1C4E269F7D1A8823FA9D39B68490DB07 *>(__this + _offset);
Enumerator_Dispose_m1658569957B36D6CE94D9779E1B1E97BBB33F047(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 Enumerator_get_Current_m8B002E1E6D2178076DCFB0EA9CEC589D8F9D804C_gshared_inline (Enumerator_tE036E4FD1082339F5FB8546407ABF40ACBC97375 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 L_0 = (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )__this->get_current_3();
return (KeyValuePair_2_tB6ECB423D6D4B3D2F916E061DDF9A7C3F0958D57 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m36A49F353C175C557E3490621F4489D7D95A646B_gshared_inline (Enumerator_tA73714A95511E4A3614246077E7C1FDAD5447D04 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3();
return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB Enumerator_get_Current_mA08CB0F0DE5EE5292029F99FC461B795951C0703_gshared_inline (Enumerator_t069CA6E9C917139EFEC98D22E51283D066A02A69 * __this, const RuntimeMethod* method)
{
{
NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB L_0 = (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )__this->get_current_3();
return (NativeArray_1_t35F2E89DF840C06C68595E9289A07A26CBB07FCB )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB Enumerator_get_Current_mA89931B5CA4A1E5927467E8A5CB6C06C5757AF2F_gshared_inline (Enumerator_t347B362129E8D7DC50AC90E3817B989EBD0C3AAA * __this, const RuntimeMethod* method)
{
{
Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB L_0 = (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )__this->get_current_3();
return (Point2d_1_tEDB76CC2BA96FAE46E880F49331A50773E619DCB )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC Enumerator_get_Current_m5DBEF9E946C304FBE7A6794A08ECB327E6C098DD_gshared_inline (Enumerator_t86CECE1D5739065750077AF165FC2D5655AD13D6 * __this, const RuntimeMethod* method)
{
{
Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC L_0 = (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )__this->get_current_3();
return (Point2d_1_tBAA56A399A40ADC4DA226314E4EEC503D2597ABC )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE Enumerator_get_Current_m1205EBC2FB511214B2CC471C046897AEA935D22D_gshared_inline (Enumerator_tF8A3E726B919E8EF12DF48BE0D62396F471D7EA4 * __this, const RuntimeMethod* method)
{
{
Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE L_0 = (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )__this->get_current_3();
return (Point2d_1_t9774A725E757B7822A9A49940B698700FEFE1AEE )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Enumerator_get_Current_m2470FD9757694298B793C69B42086AE789B9FA90_gshared_inline (Enumerator_tF446EB22E67DFA6D7041536AE9DC9C87AF3A5ADE * __this, const RuntimeMethod* method)
{
{
ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 L_0 = (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )__this->get__current_3();
return (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D Enumerator_get_Current_m219A61A853F50E6015B3FE63741CFDF398F8A52F_gshared_inline (Enumerator_tDC59471D5148D9341C44E818E45BF04091D98514 * __this, const RuntimeMethod* method)
{
{
ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D L_0 = (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )__this->get__current_3();
return (ValueTuple_3_tEF9008762923C50FBA1F5E13EFAE26235274202D )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E Enumerator_get_Current_mE97D25CDD8C94C91DECE8E08EF96012B97C8C974_gshared_inline (Enumerator_t5D1F86C1B5EB46F511F8ED1D18AB5962233ADDD1 * __this, const RuntimeMethod* method)
{
{
ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E L_0 = (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )__this->get_current_3();
return (ARRaycastHit_t2B16118C3B5F17B237335D69B1CA9C27474B621E )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 Enumerator_get_Current_mD70E977405C84760D6DBFF5955B61932E5282714_gshared_inline (Enumerator_tF3272442A4F43429B9887A8A89ED8D51DF7FA24D * __this, const RuntimeMethod* method)
{
{
ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 L_0 = (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )__this->get_current_3();
return (ARTextureInfo_t081B3396E755CC95C37B7BA68075F5DBEF36B355 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 Enumerator_get_Current_mC3F154211E11D4794B2EEEE3134CA6D7FEA2EEFF_gshared_inline (Enumerator_t72B9F0BF768503FCB4AE33D484FBE76228BA71DE * __this, const RuntimeMethod* method)
{
{
BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 L_0 = (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )__this->get_current_3();
return (BearingFilter_t1C7E2699CCF4FC1BABFF664A1F4537D04E894F25 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Enumerator_get_Current_m19632EFFAA50F452EA487CBA0F1781963A3B5396_gshared_inline (Enumerator_t3F9663F5F32B0D733380A76CCEAA3ADFA3AE34A9 * __this, const RuntimeMethod* method)
{
{
bool L_0 = (bool)__this->get_current_3();
return (bool)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t Enumerator_get_Current_m946A5CE0B601908DD35DEA70798E35D21104C637_gshared_inline (Enumerator_t6120EE33D7530B898BEB03947154EB230A6DA254 * __this, const RuntimeMethod* method)
{
{
uint8_t L_0 = (uint8_t)__this->get_current_3();
return (uint8_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 Enumerator_get_Current_m03E8729C701E1C66CE31D87E9FAE8E2C8DDA1056_gshared_inline (Enumerator_tBAAF78079AF48EFBE159F355F3BBE3E870E82C6B * __this, const RuntimeMethod* method)
{
{
CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 L_0 = (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )__this->get__current_3();
return (CanonicalTileId_tA3437165BB7245137449A8127107B8C4D861D398 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar Enumerator_get_Current_mBEE48434132CD10DC7A6BD2C69B50B69206DF14C_gshared_inline (Enumerator_tA84BA090971D432C9648ACA7F1744157466B5A4F * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = (Il2CppChar)__this->get_current_3();
return (Il2CppChar)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D Enumerator_get_Current_m97706C1EFCF7F028E196386BA105B4AE9CE3FF92_gshared_inline (Enumerator_t713BDEFD82F6E3867E3E6785BDC4E5D7BE071753 * __this, const RuntimeMethod* method)
{
{
Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D L_0 = (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )__this->get_current_3();
return (Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Enumerator_get_Current_m8B759CCDF89A724CA5B98BB3F685756EB8379304_gshared_inline (Enumerator_tFB9C1D594FDD783DAAFD379FF8CFD025E9389C9B * __this, const RuntimeMethod* method)
{
{
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )__this->get_current_3();
return (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 Enumerator_get_Current_m96249A2AAD9C45CD2B3E7A084D17D817F0BCBFB1_gshared_inline (Enumerator_t31C646ADDAA79A7C51CBE4384A7E4A78FC77B0C3 * __this, const RuntimeMethod* method)
{
{
DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 L_0 = (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )__this->get_current_3();
return (DateTimeOffset_t205B59B1EFB6646DCE3CC50553377BF6023615B5 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Enumerator_get_Current_m463788CB5D0E8998F983E802C69ABFD0DF8F10DF_gshared_inline (Enumerator_t97AF9DDC8F349478939A4899D22F6CC1A2FA7021 * __this, const RuntimeMethod* method)
{
{
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_0 = (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )__this->get_current_3();
return (Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR double Enumerator_get_Current_m14C2F2917DC59AB94B8E9875EEF5E57AB7DE82B8_gshared_inline (Enumerator_tDB7E887EC564EBF2D244915021ED0896BFD7A8A2 * __this, const RuntimeMethod* method)
{
{
double L_0 = (double)__this->get_current_3();
return (double)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D Enumerator_get_Current_mEA09946B0FC40A1FB4F1F13906E4FDBF0C010AF1_gshared_inline (Enumerator_t60E904AEE37E2688632D36FADDC618A6F615F7D9 * __this, const RuntimeMethod* method)
{
{
GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D L_0 = (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )__this->get_current_3();
return (GlyphRect_t4F6A791326A28C2CEC6B13B0BD50A4F78280289D )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E Enumerator_get_Current_mC70E3278A727B2503C0497F3FE0869E1897413BB_gshared_inline (Enumerator_t7D3E7B9290B1570845D7CD3C90B3E057E0C6A51D * __this, const RuntimeMethod* method)
{
{
InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E L_0 = (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )__this->get_current_3();
return (InputDevice_t69B790C68145C769BA3819DE33AA94155C77207E )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int16_t Enumerator_get_Current_mAE16C5472096C2336079B2487034152D64054833_gshared_inline (Enumerator_t14A4ACD2915B999F3B3D70AD01356996BC636813 * __this, const RuntimeMethod* method)
{
{
int16_t L_0 = (int16_t)__this->get_current_3();
return (int16_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m2BC76D47360AACAFBF4B4F259776067C29341148_gshared_inline (Enumerator_t3AF9DCB6AF10CD5F92BF8F52325AB3C373F37844 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__current_3();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m6BBD624C51F7E20D347FE5894A6ECA94B8011181_gshared_inline (Enumerator_t7BA00929E14A2F2A62CE085585044A3FEB2C5F3C * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_current_3();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_m95D4088E3E504114DEAA7CE57C32285A43059197_gshared_inline (Enumerator_t174934A25D0E66C6E9C4E51B0DA854E733B17937 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__current_3();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Enumerator_get_Current_mDD503AFD786235D3B40842B0872AC17DC86EB040_gshared_inline (Enumerator_t3A873D53A96DA0AC1C030CB5A0BF2D0F57FCC984 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_current_3();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Enumerator_get_Current_m9EBEA7E72E64499B4BED94F77DF82E7B8C3F1CE0_gshared_inline (Enumerator_t1C02C38119DFDA075166A979AE2B70CCA911ED37 * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = (int64_t)__this->get_current_3();
return (int64_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 Enumerator_get_Current_mCD242D4562D71C02D635FAB42C6CD3DDFAA30350_gshared_inline (Enumerator_tED8C3898747C9382181EA7C908287C78DB257A18 * __this, const RuntimeMethod* method)
{
{
JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 L_0 = (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )__this->get_current_3();
return (JsonPosition_tD7A6EC0FFE31B11FEBD64187C9587702BC1C6748 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 Enumerator_get_Current_mB860C12A45F07708BE195F5E61D86B78779EC70F_gshared_inline (Enumerator_t2D8ECB60BB186B425EB2FB0DF6BAB44717DA8F7B * __this, const RuntimeMethod* method)
{
{
LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 L_0 = (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )__this->get_current_3();
return (LatLng_t87CC943B9B0AE32CC3E6A2B52CB03516F6752221 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 Enumerator_get_Current_m6B5B0543EB1F766B11F9CAA0A5CE7F872EF7F427_gshared_inline (Enumerator_t0D41433B840FC0DD4F41C6C52972BD47C1977207 * __this, const RuntimeMethod* method)
{
{
MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 L_0 = (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )__this->get__current_3();
return (MeshId_t583996FC9E6BA652AA2C6B0D0F60D88E4498D767 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 Enumerator_get_Current_m550FE8F77A8FB74BDCA13AF7C11A20C754629E6E_gshared_inline (Enumerator_t45E0DE7084A5ADA467E093A52AD8EACE7BB281B9 * __this, const RuntimeMethod* method)
{
{
MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 L_0 = (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )__this->get_current_3();
return (MeshInfo_tD0E09CA3A2260A509C063BF0C8FDAC8D138FC611 )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_mC55AF9E2F45639649E40AF5919D6169FD9543E01_gshared_inline (Enumerator_t2430E2854B4328060EB6096AD1E4851E8DC45C3A * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m00F853664AF9867C2E1CEDD6AA8AD3F41CDF1E86_gshared_inline (Enumerator_tA78524CF62808F0D1DD3A7AD17E0E8BBE0166A4B * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get__current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D Enumerator_get_Current_mEBA22AF0232F6C2FE3C86424A5DA3D719A6F477A_gshared_inline (Enumerator_tBDE39976A6EDE25239B2A4BB32B174C88FEE9921 * __this, const RuntimeMethod* method)
{
{
KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D L_0 = (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )__this->get_current_3();
return (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D )L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m1A36F6B7368C4B473582ADA59CAB565A64B742EC_gshared_inline (KeyValuePair_2_t98F89C24FA7D45751355C66B2E2DE9584D1F5C3D * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
return (RuntimeObject *)L_0;
}
}
| [
"[email protected]"
]
| |
68320fda98335d4f53f909c3e3246d411c711dcc | 76f092d8b21c9296b40a8994590e8815a7e8d95c | /Labs/lab08/include/geometries/geometry.hpp | b9acc7e5ae01e34a949a2deacb09ea1e98f3ff5e | []
| no_license | rossoliny/Computer-Graphics | b9be39757df892b0ae11ce827ea2995ba3b2e9d9 | dafa0f514fdc1a1773b6a0f0e299380475797882 | refs/heads/master | 2022-09-18T20:27:30.933067 | 2020-05-29T08:03:09 | 2020-05-29T08:03:09 | 263,123,618 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,052 | hpp | #ifndef GEOMETRY_HPP
#define GEOMETRY_HPP
#include "materials/material.hpp"
#include "geometries/vertex.hpp"
#include <vector>
#include <utility>
#include <glm/glm.hpp>
namespace aur
{
class Geometry
{
public:
enum Type
{
Points,
Lines,
LineLoop,
LineStrip,
Triangles,
TriangleFan,
TriangleStrip
};
enum UsageStrategy
{
StaticStrategy,
DynamicStrategy,
StreamStrategy
};
explicit Geometry(std::vector<unsigned int> indices, std::vector<Vertex> vertices)
: _indices(std::move(indices)), _vertices(std::move(vertices))
{}
virtual ~Geometry() = default;
[[nodiscard]] Type get_type() const
{
return _type;
}
void set_type(Type type)
{
_type = type;
}
[[nodiscard]] const std::vector<unsigned int> &get_indices() const
{
return _indices;
}
[[nodiscard]] const std::vector<Vertex> &get_vertices() const
{
return _vertices;
}
[[nodiscard]] UsageStrategy get_vertices_usage_strategy() const
{
return _vertices_usage_strategy;
}
void set_vertices_usage_strategy(UsageStrategy vertices_usage_strategy)
{
if (_vertices_usage_strategy != vertices_usage_strategy) {
_vertices_usage_strategy = vertices_usage_strategy;
_requires_vertices_update = true;
}
}
[[nodiscard]] UsageStrategy get_indices_usage_strategy() const
{
return _indices_usage_strategy;
}
void set_indices_usage_strategy(UsageStrategy indices_usage_strategy)
{
if (_indices_usage_strategy != indices_usage_strategy) {
_indices_usage_strategy = indices_usage_strategy;
_requires_indices_update = true;
}
}
[[nodiscard]] float get_line_width() const
{
return _line_width;
}
void set_line_width(float lineWidth)
{
_line_width = lineWidth;
}
void transform(glm::mat4 transformation_matrix)
{
for (auto &vertex : _vertices) {
vertex.position = glm::vec3(transformation_matrix * glm::vec4(vertex.position, 1.0f));
}
_requires_vertices_update = true;
}
virtual void update(const Material &material) = 0;
virtual void use() = 0;
protected:
Type _type{Triangles};
std::vector<unsigned int> _indices;
std::vector<Vertex> _vertices;
bool _requires_indices_update{true};
bool _requires_vertices_update{true};
UsageStrategy _vertices_usage_strategy{StaticStrategy};
UsageStrategy _indices_usage_strategy{StaticStrategy};
float _line_width{1.0f};
};
}
#endif
| [
"[email protected]"
]
| |
b37c1562dfde97f20348991b1ab76925fdc9bf34 | fb15b85e5bbc4896705fa87a41fdaef6130e7108 | /All Online Judge Problem/Codeforces/A - Broken Keyboard.cpp | d180654acc7964da0399edde4a3e8dc12f3fa975 | []
| no_license | PaponAhasan/Competitive-Programming | 19baff3233356370d1baf74e6fd1a1ac5410213e | 99697523aaf1c8955995c59173462ecc8c61c893 | refs/heads/main | 2023-06-25T18:01:27.357352 | 2023-06-12T20:46:08 | 2023-06-12T20:46:08 | 349,866,510 | 7 | 1 | null | 2022-03-03T14:45:56 | 2021-03-21T00:38:00 | C++ | UTF-8 | C++ | false | false | 2,755 | cpp | /***
** Author: Rakibul Ahasan Papon
** Bangladesh University of Business and Technology,
** Dept. of CSE.
***/
#include <bits/stdc++.h>
#include <iostream>
#include <cstdio>
#include <string>
#include <ctype.h>
#include <conio.h>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <bitset>
#include <math.h>
#include <sstream>
#include <limits.h>
#include <stdlib.h>
#include <iostream>
#include <algorithm>
#include <string>
#define pb push_back
#define Sort(v) sort(v.begin(),v.end())
#define Fin freopen("input.txt","r",stdin)
#define Fout freopen("output.txt","w",stdout)
#define precision(a) cout << fixed << setprecision(a)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) (a*b)/gcd(a,b)
#define MAX_SIZE 100100
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const double pi = acos(-1.0);
char uplowch(char ch)
{
if(ch >= 'A' && ch <= 'Z')
ch += 32;
return ch;
}
char lowupch(char ch)
{
if(ch >= 'a' && ch <= 'z')
ch -= 32;
return ch;
}
bool isalpha(char ch)
{
if((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'))
return true;
return false;
}
void sortString(string &str)
{
sort(str.begin(), str.end());
cout << str;
}
int main()
{
ll t;
cin>>t;
while(t--)
{
char input[501], output[501];
int no[26] = {0}, n, c, t, x;
string res;
char str[501];
char ch;
int cnt=1,j=0;
cin>>res;
for(int i=0; i<res.length();)
{
if(res[i]==res[i+1])
{
i=i+2;
cnt=0;
}
else
{
ch=res[i];
str[j]=ch;
j++;
i++;
}
}
str[j]='\0';
n = strlen(str);
for (int c = 0; c < n; c++)
{
ch = str[c] - 'a';
no[ch]++;
}
t = 0;
for (int ch = 'a'; ch <= 'z'; ch++)
{
x = ch - 'a';
for (c = 0; c < no[x]; c++)
{
output[t] = ch;
t++;
}
}
output[t] = '\0';
int k;
for (int i=0; i<j; i++)
{
int j;
for ( k=0; k<i; k++)
if (output[i] == output[k])
break;
if (i == k)
cout << output[i];
// printf("%s", output);
}
cout<<endl;
}
return 0;
}
| [
"[email protected]"
]
| |
e1f768570be30079ae62a6d63e1a126a9f830fa6 | 9a2d6d19a98b4bd5e2017de04b63eb754c80b922 | /src/libtsduck/tsTargetIPv6SlashDescriptor.h | 931fab57b905f72c7560683a7f5ae33659d4ed89 | [
"WTFPL",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
]
| permissive | jco1904/tsduck | dcc81083ae9362cbe2310451b41e4368eb51d197 | cbd8859e71c93e809b2a8e1b52e07f8be1f8f78e | refs/heads/master | 2020-05-15T18:42:33.421803 | 2019-04-20T16:28:18 | 2019-04-20T16:28:18 | 182,436,399 | 1 | 0 | NOASSERTION | 2019-04-20T17:40:29 | 2019-04-20T17:40:29 | null | UTF-8 | C++ | false | false | 3,779 | h | //----------------------------------------------------------------------------
//
// TSDuck - The MPEG Transport Stream Toolkit
// Copyright (c) 2005-2019, Thierry Lelegard
// 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 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.
//
//----------------------------------------------------------------------------
//!
//! @file
//! Representation of a target_IPv6_slash_descriptor (INT specific).
//!
//----------------------------------------------------------------------------
#pragma once
#include "tsAbstractDescriptor.h"
#include "tsIPv6Address.h"
#include "tsIPUtils.h"
namespace ts {
//!
//! Representation of a target_IPv6_slash_descriptor (INT specific).
//!
//! This descriptor cannot be present in other tables than an INT
//! because its tag reuses an MPEG-defined one.
//!
//! @see ETSI EN 301 192, 8.4.5.12
//! @ingroup descriptor
//!
class TSDUCKDLL TargetIPv6SlashDescriptor : public AbstractDescriptor
{
public:
//!
//! Structure of an address entry in the descriptor.
//!
class Address
{
public:
IPv6Address IPv6_addr; //!< IPv6 address.
uint8_t IPv6_slash_mask; //!< Number of bits in network mask.
//!
//! Constructor
//! @param [in] addr IPv6 address.
//! @param [in] mask Number of bits in network mask.
//!
Address(const IPv6Address& addr = IPv6Address(), uint8_t mask = 0);
};
// TargetIPv6SlashDescriptor public members:
std::vector<Address> addresses; //!< IPv6 addresses
//!
//! Maximum number of entries to fit in 255 bytes.
//!
static const size_t MAX_ENTRIES = 15;
//!
//! Default constructor.
//!
TargetIPv6SlashDescriptor();
//!
//! Constructor from a binary descriptor.
//! @param [in,out] duck TSDuck execution context.
//! @param [in] bin A binary descriptor to deserialize.
//!
TargetIPv6SlashDescriptor(DuckContext& duck, const Descriptor& bin);
// Inherited methods
virtual void serialize(DuckContext&, Descriptor&) const override;
virtual void deserialize(DuckContext&, const Descriptor&) override;
virtual void buildXML(DuckContext&, xml::Element*) const override;
virtual void fromXML(DuckContext&, const xml::Element*) override;
DeclareDisplayDescriptor();
};
}
| [
"[email protected]"
]
| |
c3c062312ae167ad93b791e777f8b4abee8fca3c | d04a458574b2673694a5767ab076c992c5556fe1 | /SimpleRayTracer/hittables/hittable.h | dd3147bb9d5875b4889107d55c63c39317158145 | []
| no_license | andreskballero/SimpleRayTracer | 9fea6d43558984efee0f152a5e20a6a8dde88fd9 | d600f3b47cdcdf6eaa30c65b09dca707ac3458b9 | refs/heads/master | 2022-11-06T17:57:28.732704 | 2020-06-30T10:50:25 | 2020-06-30T10:50:25 | 271,871,155 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | h | //
// hittable.h
// SimpleRayTracer
//
// Created by Andrés Caballero Toledo on 12/06/2020.
// Copyright © 2020 act. All rights reserved.
//
#ifndef HITTABLE_H
#define HITTABLE_H
#include "ray.h"
class material;
struct hit_record {
point3 point;
vec3 normal;
shared_ptr<material> mat;
float t;
bool front_face;
inline void setFaceNormal(const ray& rayo, const vec3& outward_normal) {
front_face = dot(rayo.getDirection(), outward_normal) < 0;
normal = front_face ? outward_normal :-outward_normal;
}
};
class hittable {
public:
virtual bool hit(const ray& rayo, float t_min, float t_max, hit_record& rec) const = 0;
};
#endif
| [
"[email protected]"
]
| |
6a3415db0bffa8aea7bb706ea59e3812aebd432c | cb1253a944d694f3439d3bd5cb977df7eb0d183d | /AtCoder/BeginnerContest/136/D.cpp | 5a41332cda9379156284ed4665577bb1f9374412 | []
| no_license | RIckyBan/competitive-programming | 91701550a76b54d2ab76d6e23e4c0cc64b975709 | f1592de21d06ff54b81cec5c8477300fae443700 | refs/heads/master | 2022-05-03T06:38:37.141758 | 2022-04-12T14:52:25 | 2022-04-12T14:52:25 | 243,915,283 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,821 | cpp | #include <iostream>
#include <cmath>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
#define INF 1e9
#define MAXN 100005
#define MAXM 100005
#define ll long long
#define vi vector<int>
#define vll vector<long long>
#define rep(i,n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define pii pair<int, int>
int numR = 1, numL = 0, tmp;
string S;
char pre = 'R';
vi vec;
bool ans[MAXN] = {};
void solve(){
for(int i = 1; i < S.size(); ++i){
// cout << pre << " " << S[i] << endl;
if(S[i] == 'R') {
if(pre != S[i]){
vec.push_back(numL);
numR = 1;
} else {
numR++;
}
} else {
if(pre != S[i]){
vec.push_back(numR);
numL = 1;
ans[i-1] = true;
ans[i] = true;
} else {
numL++;
}
}
pre = S[i];
}
vec.push_back(numL);
rep(i, vec.size()/2){
tmp = vec[i*2] + vec[i*2+1];
if(tmp % 2 == 0){
vec[i*2] = tmp/2;
vec[i*2+1] = tmp/2;
} else {
if(max(vec[i*2]-1, vec[i*2+1]-1) % 2 != 0){
swap(vec[i*2], vec[i*2+1]);
}
if(vec[i*2] > vec[i*2+1]){
vec[i*2] = (tmp+1)/2;
vec[i*2+1] = (tmp-1)/2;
} else {
vec[i*2+1] = (tmp+1)/2;
vec[i*2] = (tmp-1)/2;
}
}
}
int cur = 0;
rep(i, S.size()){
if(ans[i]){
cout << vec[cur];
cur++;
} else
cout << 0;
if(i == S.size()-1) cout << endl;
else cout << " ";
}
}
int main(){
cin >> S;
solve();
}
| [
"[email protected]"
]
| |
bc3529e546a20ffe124b014d16db8deb9e55bfdb | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /hackathon/hanchuan/sscope/FlyCapture2/src/FlyCapture2GUI/RegisterPage.h | a65647c2a84025c7eef6781201d3212c9c488be7 | [
"MIT"
]
| permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 5,257 | h | //=============================================================================
// Copyright © 2008 Point Grey Research, Inc. All Rights Reserved.
//
// This software is the confidential and proprietary information of Point
// Grey Research, Inc. ("Confidential Information"). You shall not
// disclose such Confidential Information and shall use it only in
// accordance with the terms of the license agreement you entered into
// with PGR.
//
// PGR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
// SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE, OR NON-INFRINGEMENT. PGR SHALL NOT BE LIABLE FOR ANY DAMAGES
// SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
// THIS SOFTWARE OR ITS DERIVATIVES.
//=============================================================================
//=============================================================================
// $Id: RegisterPage.h,v 1.17 2009/04/21 22:34:18 soowei Exp $
//=============================================================================
#ifndef _REGISTERPAGE_H_
#define _REGISTERPAGE_H_
#include "BasePage.h"
namespace FlyCapture2
{
class RegisterBlockColumns : public Gtk::TreeModelColumnRecord
{
public:
Gtk::TreeModelColumn<Glib::ustring> m_colRegOffset;
Gtk::TreeModelColumn<Glib::ustring> m_colRegValue;
Gtk::TreeModelColumn<Glib::ustring> m_colRegName;
RegisterBlockColumns()
{
add( m_colRegOffset );
add( m_colRegValue );
add( m_colRegName );
}
};
class RegisterPage : public BasePage
{
public:
RegisterPage( CameraBase* pCamera, Glib::RefPtr<Gnome::Glade::Xml> refXml );
~RegisterPage();
void UpdateWidgets();
protected:
void GetWidgets();
void AttachSignals();
private:
struct RegBit
{
Gtk::EventBox* pEventBox;
Gtk::Label* pLabel;
};
enum RegisterSet
{
REGISTER_SET_IIDC,
REGISTER_SET_GEV
};
static const unsigned int sk_numBits = 32;
static const char* sk_blankRegOffset;
static const char* sk_blankRegVal;
static const char* sk_blankIEEEVal;
static const char* sk_vboxRegisterSet;
static const char* sk_radioRegisterSetIIDC;
static const char* sk_radioRegisterSetGEV;
static const char* sk_entryRegister;
static const char* sk_entryIEEE754;
static const char* sk_labelRegisterName;
static const char* sk_entry0To7;
static const char* sk_entry8To15;
static const char* sk_entry16To23;
static const char* sk_entry24To31;
static const char* sk_btnSetRegister;
static const char* sk_btnGetRegister;
static const char* sk_entryRegisterBlock;
static const char* sk_spinbuttonNumQuadlets;
static const char* sk_btnWriteRegisterBlock;
static const char* sk_btnReadRegisterBlock;
static const char* sk_treeviewRegisterBlock;
Gtk::VBox* m_pVboxRegisterSet;
Gtk::RadioButton* m_pRadioRegisterSetIIDC;
Gtk::RadioButton* m_pRadioRegisterSetGEV;
Gtk::Entry* m_pEntryRegister;
Gtk::Entry* m_pEntryIEEE754;
Gtk::Label* m_pLabelRegisterName;
Gtk::Entry* m_pEntry0To7;
Gtk::Entry* m_pEntry8To15;
Gtk::Entry* m_pEntry16To23;
Gtk::Entry* m_pEntry24To31;
Gtk::Button* m_pBtnWriteRegister;
Gtk::Button* m_pBtnReadRegister;
RegBit m_arRegBit[sk_numBits];
Gtk::Entry* m_pEntryRegisterBlock;
Gtk::SpinButton* m_pSpinbuttonNumQuadlets;
Gtk::Adjustment* m_pAdjustmentNumQuadlets;
Gtk::Button* m_pBtnReadRegisterBlock;
Gtk::Button* m_pBtnWriteRegisterBlock;
Gtk::TreeView* m_pTreeviewRegisterBlock;
Glib::RefPtr<Gtk::ListStore> m_refListStoreRegBlock;
RegisterBlockColumns m_regBlockColumns;
unsigned int m_lastRegBlockOffset;
RegisterSet m_registerSet;
RegisterPage();
RegisterPage( const RegisterPage& );
RegisterPage& operator=( const RegisterPage& );
unsigned int GetRegisterOffsetFromPage();
unsigned int GetRegisterValueFromPage();
unsigned int GetRegisterBlockOffsetFromPage();
void SetRegisterValueToPage( unsigned int value );
void CreateTreeViewColumnHeaders();
void ZeroRegBitValues();
void UpdateRegBitValues( unsigned int regVal );
unsigned int GetRegBitValues();
void OnRegisterSetChange(RegisterSet selectedSet, Gtk::RadioButton* pRadioButton);
void OnWriteRegister();
void OnReadRegister();
void OnEntryRegisterChange();
bool OnEntryIEEE754Change(GdkEventFocus* focus);
void OnEntryRegValChange();
bool OnRegBitClicked( GdkEventButton* event, unsigned int bit );
void OnEntryRegisterBlockChange();
void OnReadRegisterBlock();
void OnWriteRegisterBlock();
};
}
#endif // _REGISTERPAGE_H_
| [
"[email protected]"
]
| |
d7e05fca4fad8dbbca9c4b9b608cfa3f044893de | 08c8932e1627a893b19c0c1fbd87f3a7c7e6ecaa | /test/interfaces_test.cpp | 06539d906d96f1ae44361ddbc3f193082d002a75 | [
"MIT"
]
| permissive | threeal/tosshin | 5059b73325fcd56e410a2c7310568cbd7f6f337b | 47675ff3af1a400d6216c45fa9d44f75a1b5584f | refs/heads/main | 2023-06-07T01:50:15.600936 | 2021-06-28T08:13:15 | 2021-06-28T08:13:15 | 347,848,307 | 0 | 0 | MIT | 2021-06-28T08:13:16 | 2021-03-15T05:31:12 | C++ | UTF-8 | C++ | false | false | 3,647 | cpp | // Copyright (c) 2021 Alfi Maulana
//
// 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 <gtest/gtest.h>
#include <tosshin/tosshin.hpp>
TEST(InterfacesTest, Odometry)
{
tosshin::msg::Odometry odometry;
{
odometry.header.stamp.sec = 0;
odometry.header.stamp.nanosec = 0;
odometry.header.frame_id = "odom";
odometry.child_frame_id = "base_footprint";
tosshin::msg::PoseWithCovariance pose_with_covariance;
{
tosshin::msg::Pose pose;
{
tosshin::msg::Point position;
{
position.x = 0.0;
position.y = 0.0;
position.z = 0.0;
}
tosshin::msg::Quaternion orientation;
{
orientation.x = 0.0;
orientation.y = 0.0;
orientation.z = 0.0;
orientation.w = 0.0;
}
pose.position = position;
pose.orientation = orientation;
}
pose_with_covariance.pose = pose;
for (size_t i = 0; i < 36; ++i) {
pose_with_covariance.covariance[i] = 0.0;
}
}
tosshin::msg::TwistWithCovariance twist_with_covariance;
{
tosshin::msg::Twist twist;
{
tosshin::msg::Vector3 linear;
{
linear.x = 0.0;
linear.y = 0.0;
linear.z = 0.0;
}
tosshin::msg::Vector3 angular;
{
angular.x = 0.0;
angular.y = 0.0;
angular.z = 0.0;
}
twist.linear = linear;
twist.angular = angular;
}
twist_with_covariance.twist = twist;
for (size_t i = 0; i < 36; ++i) {
twist_with_covariance.covariance[i] = 0.0;
}
}
odometry.pose = pose_with_covariance;
odometry.twist = twist_with_covariance;
}
}
TEST(InterfacesTest, TFMessage)
{
tosshin::msg::TFMessage tf_message;
{
tosshin::msg::TransformStamped transform_stamped;
{
transform_stamped.header.stamp.sec = 0;
transform_stamped.header.stamp.nanosec = 0;
transform_stamped.header.frame_id = "odom";
transform_stamped.child_frame_id = "base_footprint";
tosshin::msg::Transform transform;
{
tosshin::msg::Vector3 translation;
{
translation.x = 0.0;
translation.y = 0.0;
translation.z = 0.0;
}
tosshin::msg::Quaternion rotation;
{
rotation.x = 0.0;
rotation.y = 0.0;
rotation.z = 0.0;
rotation.w = 0.0;
}
transform.translation = translation;
transform.rotation = rotation;
}
transform_stamped.transform = transform;
}
}
}
| [
"[email protected]"
]
| |
76f94fd08eb2f57d649858dee674c43ca7bb4daa | f62dd59bccadd57b05a15e22ad1e6f2e382d04d0 | /include/hscpp/cmd-shell/CmdShell_win32.h | 3896b57ca9235d0906f35ee422fa5c27ffe29a66 | [
"MIT"
]
| permissive | lijiansong/hscpp | e018add1f961743b4c4903174e8611f44b248a84 | 74175b028bf5dd0aa0dc8450f5251e6dfdf0e380 | refs/heads/master | 2023-05-28T23:02:19.171518 | 2021-06-16T13:42:27 | 2021-06-16T13:42:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,026 | h | #pragma once
#include <Windows.h>
#include <string>
#include <array>
#include <vector>
#include "hscpp/cmd-shell/ICmdShell.h"
namespace hscpp
{
class CmdShell : public ICmdShell
{
public:
~CmdShell();
bool CreateCmdProcess() override;
void StartTask(const std::string& command, int taskId) override;
void CancelTask() override;
void Clear() override;
TaskState Update(int& taskId) override;
const std::vector<std::string>& PeekTaskOutput() override;
private:
HANDLE m_hProcess = INVALID_HANDLE_VALUE;
HANDLE m_hStdoutRead = INVALID_HANDLE_VALUE;
HANDLE m_hStdinWrite = INVALID_HANDLE_VALUE;
std::array<char, 512> m_ReadBuffer = { 0 };
std::string m_LeftoverCmdOutput;
TaskState m_TaskState = TaskState::Idle;
int m_TaskId = -1;
std::vector<std::string> m_TaskOutput;
bool SendCommand(const std::string& command);
bool ReadOutputLine(std::string& output);
};
} | [
"[email protected]"
]
| |
b127ace3f5fc2244177831dd225909ab7b2898bf | 475ba40c67982ada1bd868495a8981c045c88b5f | /automotive/can/1.0/default/libnl++/protocols/structs.h | 44c17b84b9e18b4d79b3c2b9b6ca35b8c8c6bcfa | [
"Apache-2.0"
]
| permissive | Havoc-OS/android_hardware_interfaces | 0413cf038de9fda2bf24543331d7b4a4362044d3 | af931d09d0e22313feccde3c40bf6e79638fe5f6 | refs/heads/twelve | 2023-09-01T03:05:24.226891 | 2022-04-27T05:47:59 | 2022-07-07T20:00:45 | 132,510,918 | 0 | 20 | null | 2023-08-21T14:35:35 | 2018-05-07T20:05:50 | C++ | UTF-8 | C++ | false | false | 977 | h | /*
* Copyright (C) 2020 The Android Open Source Project
*
* 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
#include <sstream>
namespace android::nl::protocols {
template <typename T>
void arrayToStream(std::stringstream& ss, const Buffer<nlattr> attr) {
ss << '{';
for (const auto it : attr.data<T>().getRaw()) {
ss << it << ',';
}
ss.seekp(-1, std::ios_base::cur);
ss << '}';
}
} // namespace android::nl::protocols
| [
"[email protected]"
]
| |
a50f90087e959bf01bc20ab816c1338bb176e233 | 1de5113a7d1884ed3bee862133c59fd3c1e95402 | /src/qt/paymentserver.h | 1ef9a6c2fbc5d843cb18082610130308dd2b7702 | [
"MIT"
]
| permissive | CPTSCoin/wallet-init | 8d8f2c5795bda179d6f3396e61608b3638f85918 | b4c12bee1c09c8a559cd95e6e63afbb125813346 | refs/heads/master | 2020-06-04T08:58:13.793270 | 2019-08-06T23:40:43 | 2019-08-06T23:40:43 | 191,953,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,583 | h | // Copyright (c) 2011-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_PAYMENTSERVER_H
#define BITCOIN_QT_PAYMENTSERVER_H
// This class handles payment requests from clicking on
// cpts: URIs
//
// This is somewhat tricky, because we have to deal with
// the situation where the user clicks on a link during
// startup/initialization, when the splash-screen is up
// but the main window (and the Send Coins tab) is not.
//
// So, the strategy is:
//
// Create the server, and register the event handler,
// when the application is created. Save any URIs
// received at or during startup in a list.
//
// When startup is finished and the main window is
// shown, a signal is sent to slot uiReady(), which
// emits a receivedURL() signal for any payment
// requests that happened during startup.
//
// After startup, receivedURL() happens as usual.
//
// This class has one more feature: a static
// method that finds URIs passed in the command line
// and, if a server is running in another process,
// sends them to the server.
//
#include "paymentrequestplus.h"
#include "walletmodel.h"
#include <QObject>
#include <QString>
class OptionsModel;
class CWallet;
QT_BEGIN_NAMESPACE
class QApplication;
class QByteArray;
class QLocalServer;
class QNetworkAccessManager;
class QNetworkReply;
class QSslError;
class QUrl;
QT_END_NAMESPACE
// BIP70 max payment request size in bytes (DoS protection)
extern const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE;
class PaymentServer : public QObject
{
Q_OBJECT
public:
// Parse URIs on command line
// Returns false on error
static void ipcParseCommandLine(int argc, char* argv[]);
// Returns true if there were URIs on the command line
// which were successfully sent to an already-running
// process.
// Note: if a payment request is given, SelectParams(MAIN/TESTNET)
// will be called so we startup in the right mode.
static bool ipcSendCommandLine();
// parent should be QApplication object
PaymentServer(QObject* parent, bool startLocalServer = true);
~PaymentServer();
// Load root certificate authorities. Pass NULL (default)
// to read from the file specified in the -rootcertificates setting,
// or, if that's not set, to use the system default root certificates.
// If you pass in a store, you should not X509_STORE_free it: it will be
// freed either at exit or when another set of CAs are loaded.
static void LoadRootCAs(X509_STORE* store = NULL);
// Return certificate store
static X509_STORE* getCertStore();
// OptionsModel is used for getting proxy settings and display unit
void setOptionsModel(OptionsModel* optionsModel);
// This is now public, because we use it in paymentservertests.cpp
static bool readPaymentRequestFromFile(const QString& filename, PaymentRequestPlus& request);
signals:
// Fired when a valid payment request is received
void receivedPaymentRequest(SendCoinsRecipient);
// Fired when a valid PaymentACK is received
void receivedPaymentACK(const QString& paymentACKMsg);
// Fired when a message should be reported to the user
void message(const QString& title, const QString& message, unsigned int style);
public slots:
// Signal this when the main window's UI is ready
// to display payment requests to the user
void uiReady();
// Submit Payment message to a merchant, get back PaymentACK:
void fetchPaymentACK(CWallet* wallet, SendCoinsRecipient recipient, QByteArray transaction);
// Handle an incoming URI, URI with local file scheme or file
void handleURIOrFile(const QString& s);
private slots:
void handleURIConnection();
void netRequestFinished(QNetworkReply*);
void reportSslErrors(QNetworkReply*, const QList<QSslError>&);
void handlePaymentACK(const QString& paymentACKMsg);
protected:
// Constructor registers this on the parent QApplication to
// receive QEvent::FileOpen and QEvent:Drop events
bool eventFilter(QObject* object, QEvent* event);
private:
bool processPaymentRequest(PaymentRequestPlus& request, SendCoinsRecipient& recipient);
void fetchRequest(const QUrl& url);
// Setup networking
void initNetManager();
bool saveURIs; // true during startup
QLocalServer* uriServer;
QNetworkAccessManager* netManager; // Used to fetch payment requests
OptionsModel* optionsModel;
};
#endif // BITCOIN_QT_PAYMENTSERVER_H
| [
"[email protected]"
]
| |
097bf0d2bac2426ba1f47fd94e36e2e21bf40811 | 077d8d3ec3906370580a4b4d57150eb676563a50 | /洛谷/数的划分/main.cpp | 069349e39933f0704bbd57c210f270412acf96c9 | []
| no_license | byx2000/OJ | 8955053987ccd9eb8bb0e575269082d9114764ab | ec1c9b1ac6a6982f099481364761ea01a82c7db0 | refs/heads/master | 2023-03-07T18:03:49.294014 | 2021-02-19T13:59:07 | 2021-02-19T13:59:07 | 287,937,848 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,100 | cpp | // https://www.luogu.com.cn/problem/P1025
#include <iostream>
#include <vector>
using namespace std;
// 解法1:DFS
class Solution1
{
public:
Solution1(int n, int k)
: n(n), k(k), count(0) {}
int solve()
{
count = 0;
dfs(1, 0, 0);
return count;
}
private:
int n, k;
int count;
void dfs(int last, int sum, int step)
{
if (step == k)
{
if (sum == n)
{
count++;
}
return;
}
for (int i = last; sum + (k - step) * i <= n; ++i)
{
dfs(i, sum + i, step + 1);
}
}
};
// 解法2:动态规划
class Solution2
{
public:
Solution2(int n, int k) : n(n), k(k) {}
int solve()
{
cache = vector<vector<int>>(n + 1, vector<int>(k + 1, -1));
return dp(n, k);
}
private:
int n, k;
vector<vector<int>> cache;
int dp(int n, int k)
{
if (k == 1)
{
return 1;
}
if (n < k)
{
return 0;
}
if (cache[n][k] != -1)
{
return cache[n][k];
}
return cache[n][k] = dp(n - 1, k - 1) + dp(n - k, k);
}
};
int main()
{
int n, k;
cin >> n >> k;
//cout << Solution1(n, k).solve();
cout << Solution2(n, k).solve();
return 0;
} | [
"[email protected]"
]
| |
b290c28f12b242366a705217cd41523e1651837f | b8e70c6156a1434040daa724e9d69c87a75e6c08 | /ovve_remote/ovve_remote.ino | 7c9ee32419922e36be8fe7bd3f9fbdbc1a05de51 | [
"MIT"
]
| permissive | sperly/ovve | 9aa46547c1ed903ebe22923c629c344537c6410d | f837c57f696462f59a6dc6874271f59108169270 | refs/heads/master | 2020-04-06T03:43:59.391649 | 2013-10-18T22:58:59 | 2013-10-18T22:58:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,591 | ino | /* Copyright (c) 2013 Eric Lind
*
* 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.
*/
#include <i2c_t3.h>
#include <TCS34725_T3.h>
#include <NRF24.h>
#include <SPI.h>
#include <Bounce.h>
#include <DogLcd.h>
#include <Encoder.h>
#include <EEPROM.h>
#include <MenuSystem.h>
#include "globals.h"
void tcsInit(){
lcd.setCursor(0, 1);
lcd.print("Color sensor...");
if (tcs.begin()) {
lcd.setCursor(0, 2);
lcd.print("Found!");
Serial.println("Found sensor");
} else {
Serial.println("No TCS34725 found ... check your connections");
lcd.setCursor(0, 2);
lcd.print("Failed! Halting!");
while (1); // halt!
}
tcs.setInterrupt(true);
delay(100);
}
void lcdInit(){
//Start 3-line, normal contrast, 3.3v
if(lcd.begin(DOG_LCD_M163, config_data.lcdContrast, DOG_LCD_VCC_3V3) == 0){
Serial.println("Found LCD");
}
LCDOn();
lcd.noCursor();
lcd.noBlink();
lcd.setCursor(0, 0);
lcd.print("Init Ovve...");
lcd.setCursor(0, 1);
lcd.print("LCD...");
lcd.setCursor(0,2);
lcd.print("Initialized!");
delay(INIT_DELAY);
}
void setup() {
Serial.begin(9600);
delay(5000);
defaultConfig();
//writeConfig();
//Read configuration from eeprom
//readConfig();
//Initialize LCD first
lcdInit();
#ifdef TCS_ENABLED
//If TCS is installed, initialize it
tcsInit();
#endif
#ifdef NRF_ENABLED
//If NRF is installed, initialize it.
nrfInit();
#endif
//Initialize menus
menuInit();
Serial.println("Initialised");
//Set up simple gamma correction table
for (uint16_t i=0; i<256; i++) {
float x = i;
x /= 255;
x = pow(x, 2.5);
x *= 255;
gammatable[i] = (uint8_t)x;
}
//Setup bouncer pins
pinMode(PIN_SCAN_BUTTON, INPUT);
pinMode(PIN_ENC_BUTTON, INPUT);
//Reset encoder
enc.write(0);
encPos = 0;
LCDOn();
}
void readConfig(){
int address = 0;
Serial.println("Reading EEPOROM config");
config_data.mode = (uint8_t)EEPROM.read(address++);
config_data.single_color.red = (uint8_t)EEPROM.read(address++);
config_data.single_color.green = (uint8_t)EEPROM.read(address++);
config_data.single_color.blue = (uint8_t)EEPROM.read(address++);
config_data.sparkle.intensity = (uint8_t)EEPROM.read(address++);
config_data.sparkle.color.red = (uint8_t)EEPROM.read(address++);
config_data.sparkle.color.green = (uint8_t)EEPROM.read(address++);
config_data.sparkle.color.blue = (uint8_t)EEPROM.read(address++);
config_data.sparkle.rate = ((uint8_t)EEPROM.read(address++)) << 8;
config_data.sparkle.rate |= (uint8_t)EEPROM.read(address++);
config_data.sparkle.change_rate = ((uint8_t)EEPROM.read(address++)) << 8;
config_data.sparkle.change_rate |= (uint8_t)EEPROM.read(address++);
config_data.colorwheel.intensity = (uint8_t)EEPROM.read(address++);
config_data.colorwheel.change_rate = ((uint8_t)EEPROM.read(address++)) << 8;
config_data.colorwheel.change_rate |= (uint8_t)EEPROM.read(address++);
config_data.colorwheel.step_size = (uint8_t)EEPROM.read(address++);
config_data.lcdBacklight = (uint8_t)EEPROM.read(address++);
config_data.lcdContrast = (uint8_t)EEPROM.read(address++);
config_data.lcdBacklightTime = ((uint8_t)EEPROM.read(address++)) << 8;
config_data.lcdBacklightTime |= (uint8_t)EEPROM.read(address++);
}
void writeConfig(){
int address = 0;
Serial.println("Writing EEPOROM config");
EEPROM.write(address++, (byte)config_data.mode);
EEPROM.write(address++, (byte)config_data.single_color.red);
EEPROM.write(address++, (byte)config_data.single_color.green);
EEPROM.write(address++, (byte)config_data.single_color.blue);
EEPROM.write(address++, (byte)config_data.sparkle.intensity);
EEPROM.write(address++, (byte)config_data.sparkle.color.red);
EEPROM.write(address++, (byte)config_data.sparkle.color.green);
EEPROM.write(address++, (byte)config_data.sparkle.color.blue);
EEPROM.write(address++, (byte)(config_data.sparkle.rate >> 8));
EEPROM.write(address++, (byte)(config_data.sparkle.rate & 0xFF));
EEPROM.write(address++, (byte)(config_data.sparkle.change_rate >> 8));
EEPROM.write(address++, (byte)(config_data.sparkle.change_rate & 0xFF));
EEPROM.write(address++, (byte)config_data.colorwheel.intensity);
EEPROM.write(address++, (byte)(config_data.colorwheel.change_rate >> 8));
EEPROM.write(address++, (byte)(config_data.colorwheel.change_rate & 0xFF));
EEPROM.write(address++, (byte)config_data.colorwheel.step_size);
EEPROM.write(address++, (byte)config_data.lcdBacklight);
EEPROM.write(address++, (byte)(config_data.lcdBacklightTime >> 8));
EEPROM.write(address++, (byte)(config_data.lcdBacklightTime & 0xFF));
EEPROM.write(address++, (byte)config_data.lcdContrast);
}
void defaultConfig(){
config_data.mode = 0;
config_data.single_color.red = 0xAA;
config_data.single_color.green = 0xAA;
config_data.single_color.blue = 0xAA;
config_data.sparkle.intensity = 0xFF;
config_data.sparkle.color.red = 0xFF;
config_data.sparkle.color.green = 0xFF;
config_data.sparkle.color.blue = 0xFF;
config_data.sparkle.rate = 10;
config_data.sparkle.change_rate = 100;
config_data.colorwheel.change_rate = 100;
config_data.colorwheel.step_size = 1;
config_data.colorwheel.intensity = 0xFF;
config_data.lcdBacklight = 0xE0;
config_data.lcdBacklightTime = 3000 ;
config_data.lcdContrast = 0x28;
}
void LCDOn(){
lcdLight = true;
lcd.setBacklight(config_data.lcdBacklight, true);
ClearLCD();
lastAction = 0;
}
void LCDOff(){
lcdLight = false;
lcd.setBacklight(0, true);
}
void ClearLCD(){
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("***** OVVE *****");
}
void loop() {
uint8_t col[3];
if(lastAction > config_data.lcdBacklightTime && lcdLight == true){
ClearLCD();
LCDOff();
}
/*boolean butBounceChanged = butBounce.update();
if(butBounce.read() && butBounceChanged) {
butPressed = true;
LCDOn();
ms.select();
}
if((butBounce.duration() > LONG_PRESS) && (butPressed == true)){
ActivateMenu();
butPressed = false;
ms.select();
}
long newPosition = enc.read();
//Serial.println(newPosition);
if(newPosition != encPos){
Serial.println("GG");
if(newPosition > encPos){
for(int i = 0; i < (newPosition-encPos); i++){
ms.next();
}
}
else {
for(int i = 0; i < (encPos-newPosition); i++){
ms.prev();
}
}
lcd.setCursor(0, 1);
lcd.print(ms.get_current_menu()->get_selected()->get_name());
}*/
CheckColor();
}
void ActivateMenu() {
lcd.setCursor(0, 1);
lcd.print(ms.get_current_menu()->get_selected()->get_name());
Serial.println("MMEEEENNNNNUUUU!!!!!");
}
boolean readingProgress = false;
void CheckColor(){
if(readingProgress == true) return;
uint8_t col[8] = {0,0,0,0,0,0,0,0};
//uint8_t data[8] = {0,0,0,0,0,0,0,0};
boolean scanBounceChanged = scanBounce.update ();
if(scanBounce.read() && scanBounceChanged){
readingProgress = true;
Serial.println("Checking color!");
LCDOn();
lcd.setCursor(0, 1);
lcd.print("Color reading: ");
GetColor(col);
lcd.setCursor(0, 2);
lcd.print(" ");
lcd.setCursor(0, 2);
lcd.print("R:");
lcd.setCursor(2, 2);
lcd.print(col[0], HEX);
lcd.setCursor(5, 2);
lcd.print("G:");
lcd.setCursor(7, 2);
lcd.print(col[1], HEX);
lcd.setCursor(11, 2);
lcd.print("B:");
lcd.setCursor(13, 2);
lcd.print(col[2], HEX);
delay(INIT_DELAY);
//data[1] = col[0];
//data[2] = col[1];
//data[3] = col[2];
//if (!nrf24.setTransmitAddress((uint8_t*)"serv1", 5))
// Serial.println("setTransmitAddress failed");
//if (!nrf24.send((uint8_t*)&col, (3*sizeof(uint8_t))))
// Serial.println("send failed");
// if (!nrf24.waitPacketSent())
// Serial.println("waitPacketSent failed");
// Serial.println("Color Sent");
uint8_t buffer[8];// = {0,0,0,0,0,0,0,0};
genPacket(0x101, col, 3, buffer);//MESS_SET_COL_IN_SINGLE, data, 3, buffer
if(!sendData(buffer, sizeof(buffer))){
ClearLCD();
lcd.setCursor(0, 1);
lcd.print("Error sending");
lcd.setCursor(0, 2);
lcd.print("color data!");
Serial.println("Failed to send data");
}
readingProgress = false;
lastAction = 0;
}
}
void GetColor(uint8_t* color){
uint16_t clear, red, green, blue;
tcs.setInterrupt(false); // turn on LED
delay(100); // takes 50ms to read
tcs.getRawData(&red, &green, &blue, &clear);
tcs.setInterrupt(true); // turn off LED
Serial.println("Read data!");
// Figure out some basic hex code for visualization
float r, g, b;
r = red/84.1;
g = green/84.1;
b = blue/84.1;
Serial.print("\t");
Serial.print((int)r, HEX); Serial.print((int)g, HEX); Serial.print((int)b, HEX);
Serial.println();
color[0] = gammatable[(uint8_t)r];
color[1] = gammatable[(uint8_t)g];
color[2] = gammatable[(uint8_t)b];
}
| [
"[email protected]"
]
| |
1fe8fb7425056fe204b9682d00aef2191a9a0822 | be243c7ceb6be3950edd89963c49a618b6bff2ca | /TcpServer.h | 130d788a5f6ff48beb78853673f57513539ba08f | []
| no_license | SisyphusZ/ThreadpoolNetWork | 4b915512cbda80b2f138dd015176ead1a5aaa95f | b3ef7f7bb215c1e3a1d9bc3a3cb56b6e723476d9 | refs/heads/main | 2023-03-11T20:04:02.500994 | 2021-02-26T09:05:06 | 2021-02-26T09:05:06 | 342,516,698 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | h | ///
/// @file TcpServer.h
/// @author Sisyphus([email protected])
/// @date 2018-03-28 16:19:15
///
#ifndef __TCPSERVER_H__
#define __TCPSERVER_H__
#include "Acceptor.h"
#include "EpollPoller.h"
namespace sp
{
class TcpServer
{
public:
typedef EpollPoller::EpollCallback TcpServerCallback;
TcpServer(const std::string ip,unsigned short port);
void start();
void stop();
void setConnectionCallback(TcpServerCallback cb);
void setMessageCallback(TcpServerCallback cb);
void setCloseCallback(TcpServerCallback cb);
private:
Acceptor acceptor_;
EpollPoller poller_;
TcpServerCallback onConnectionCb_;
TcpServerCallback onMessageCb_;
TcpServerCallback onCloseCb_;
};
}//end of namespace sp
#endif
| [
"[email protected]"
]
| |
9bee302e68b2fd6226396d2674b87b27b1b75ff1 | 57b637fc0c0a47865c6769b81511a603dc7b5e44 | /熱物理工学/4.17/VAF/0.7/1.cpp | 7bff314cea4f947306923fc185aece0658e18af4 | []
| no_license | JieMEI1994/KU_Course_Material | 417853d3feb21387602bf0a51e86eed7087a2bb3 | 554b3dd6b46bae59d8c0deaa78926b246b3ddf93 | refs/heads/master | 2020-04-30T20:47:45.047098 | 2019-03-22T10:47:14 | 2019-03-22T10:47:14 | 177,078,075 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,836 | cpp | // calculate the velocity autocorrelation function of 2-dimensioned brownian motion
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define mass 1.0 // the mass of quantum
#define gamma 1.0 // the coefficient of friction
#define c_rand 1.0 // the random force
#define delta_t 0.7 // the intervals
#define total_step 100000 // the steps of calculation
#define out_step 1000 // the steps of out of calculation
double fr() // the uniform random numbers from 0 to 1
{
double factor;
factor = sqrt((3 * c_rand) / (2 * delta_t));
return (rand() / (double)RAND_MAX * 2 - 1.0) * factor;
}
int main()
{
double x, y;
double u, v;
int step;
FILE *fout;
int i, j;
int count[total_step];
double factor;
double vaf[total_step];
static double velx[total_step], vely[total_step]; //give a static space to the arrays of huge size
x = 0.0; y = 0.0;
u = 0.0; v = 0.0;
for (step = 0; step < total_step; step++)
{
x += delta_t * u;
y += delta_t * v;
u += delta_t / mass * (-gamma * u + fr());
v += delta_t / mass * (-gamma * v + fr());
velx[step] = u; //accumulate the velocity data into array
vely[step] = v;
}
for (step = 0; step < out_step; step++) //initilize counter
{
count[step] = 0;
vaf[step] = 0;
}
for (i = 0; i < total_step; i++) //calcukate the velocity autocorrelation function
{
for (j = i; j < total_step; j++)
{
step = j - i;
count[step]++;
vaf[step] += (velx[i]*velx[j] + vely[i]*vely[j]);
}
}
factor = vaf[0]/count[step];
fout = fopen("vaf.dat", "w");
for (step = 0; step < out_step; step++) //out of the calculation
{
fprintf(fout, "%10.3f %10.3f \n", delta_t * step, vaf[step] / count[step] / factor);
}
fclose(fout);
return 0;
} | [
"[email protected]"
]
| |
e8e1c9a0d14fb5c5a0e166baccc76b9646068ce7 | 989c31de263a91d93f39b6bfc050259367ee0fbb | /psol/include/net/instaweb/spriter/libpng_image_library.h | dcae2ad62bf45492245e2e2b946f3c1b2bac11c3 | [
"Apache-2.0"
]
| permissive | vinothwindows47/ngx_pagespeed | a00f97935721847bdec7278bac37151a98dff70e | 85a36b8133a1dc8fbb24afecacfb0a2c05616605 | refs/heads/master | 2021-01-24T00:08:44.684277 | 2013-04-26T21:39:24 | 2013-04-26T21:39:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,236 | h | /*
* Copyright 2011 Google 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.
*/
// Author: [email protected] (Adam Bliss)
#ifndef NET_INSTAWEB_SPRITER_LIBPNG_IMAGE_LIBRARY_H_
#define NET_INSTAWEB_SPRITER_LIBPNG_IMAGE_LIBRARY_H_
#include <png.h>
#include "net/instaweb/spriter/image_library_interface.h"
#include "net/instaweb/util/public/string.h"
namespace net_instaweb {
namespace spriter {
/**
* An implementation of the ImageLibraryInterface using direct calls to libpng.
* The advantage of this over OpenCV is that it can handle transparency. The
* output of this library is always an RGBA PNG with 8 bits per channel (so
* 16-bit images will be degraded).
*/
class LibpngImageLibrary : public ImageLibraryInterface {
public:
LibpngImageLibrary(const FilePath& base_input_path,
const FilePath& base_output_path,
Delegate* delegate);
virtual ~LibpngImageLibrary() {}
protected:
// Images are immutable rectangular regions of pixels.
class Image : public ImageLibraryInterface::Image {
public:
// Takes ownership of rows.
Image(ImageLibraryInterface* lib,
png_structp png_struct, png_infop png_info, png_bytep* rows);
virtual ~Image();
virtual bool GetDimensions(int* out_width, int* out_height) const;
const png_bytep* Rows() const;
private:
png_structp png_struct_;
png_infop png_info_;
png_bytep* rows_;
DISALLOW_COPY_AND_ASSIGN(Image);
};
// Read an image from disk. Return NULL (after calling delegate
// method) on error. Caller owns the returned pointer.
virtual ImageLibraryInterface::Image* ReadFromFile(const FilePath& path);
// Canvases are mutable rectangles onto which a program may draw.
// For now, we support stamping images into a canvas, and writing
// a canvas to a file.
class Canvas : public ImageLibraryInterface::Canvas {
public:
Canvas(ImageLibraryInterface* lib, const Delegate* d,
const GoogleString& base_out_path,
int width, int height);
virtual ~Canvas();
virtual bool DrawImage(const ImageLibraryInterface::Image* image, int x,
int y);
virtual bool WriteToFile(const FilePath& write_path, ImageFormat format);
private:
const Delegate* delegate_;
const GoogleString base_out_path_;
int width_;
int height_;
png_bytep* rows_;
DISALLOW_COPY_AND_ASSIGN(Canvas);
};
virtual ImageLibraryInterface::Canvas* CreateCanvas(int width, int height);
private:
friend class LibpngImageLibraryTest;
DISALLOW_COPY_AND_ASSIGN(LibpngImageLibrary);
};
} // namespace spriter
} // namespace net_instaweb
#endif // NET_INSTAWEB_SPRITER_LIBPNG_IMAGE_LIBRARY_H_
| [
"[email protected]"
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.