blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
986 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
145 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
122 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
0ba91ce7b2388fbd526b689646ad957c4173e35e
8dfe4bef840a00972ebe18634bbf28636dec9949
/TestFKCW/Classes/SubTestWnd/Test_Base_Localization.h
b91f315eae8ce723ce21625f40632b70878ba11e
[]
no_license
pingfanJerry/FKCocos2dxWrapper_2.x
ba644308746557e99f8fa201a832aafa7e806927
2ff906f10a030d7a2dbe968ba9d17798e2537a37
refs/heads/master
2020-03-10T16:58:40.391923
2017-03-16T06:43:05
2017-03-16T06:43:05
129,487,589
1
0
null
2018-04-14T06:12:13
2018-04-14T06:12:13
null
GB18030
C++
false
false
2,591
h
//************************************************************************* // 创建日期: 2014-12-22 // 文件名称: Test_Base_Localization.h // 创 建 人: 王宏张 FreeKnight // 版权所有: MIT // 说 明: //************************************************************************* #pragma once //------------------------------------------------------------------------- #include "../resource.h" #include "../TestScene.h" #include "../../../FKCWLib/FKCocos2dxWrapper.h" //------------------------------------------------------------------------- class CTest_Base_LocalizationLayer : public CCLayer { public: virtual bool init() { m_bIsEnglish = false; FKCW_Base_Localization* pInstance = FKCW_Base_Localization::GetInstance(); pInstance->AddPlatformString( "en", s_szLocaliztionENFile, false ); pInstance->AddPlatformString( "zh", s_szLocaliztionZHFile, false ); m_pWindow = FKCW_UIWidget_WidgetWindow::create(); m_pWindow->setMultiTouchEnabled(true); addChild(m_pWindow); m_pButtonChangeLan = FKCW_UIWidget_Button::createWith9Sprite(CCSize(250, 50), s_szSprite9Btn1Path, s_szSprite9Btn2Path ); m_pButtonChangeLan->setPosition(SCREEN_CENTER_POS+ccp(0, 100)); m_pButtonChangeLan->setOnClickListener(this, fkcw_uiwidget_click_selector(CTest_Base_LocalizationLayer::onChangeLan)); m_pButtonChangeLan->initText(FKCW_Base_StringConvert::a2u("更换语言").c_str(), "", 30); m_pWindow->addChild(m_pButtonChangeLan); FKCW_UIWidget_Label* pInfoLabel = FKCW_UIWidget_Label::create( FKCW_Base_StringConvert::a2u("按钮文字读自 Resource/strings.xml ").c_str(), "", 30.0f); pInfoLabel->setPosition(SCREEN_CENTER_POS+ccp(0, -100)); m_pWindow->addChild(pInfoLabel); return true; } public: void onChangeLan(CCObject* pSender) { m_bIsEnglish = (!m_bIsEnglish); if( m_bIsEnglish ) { m_pButtonChangeLan->setText( FKCW_Base_StringConvert::a2u( FKCW_Base_Localization::GetInstance()->GetString("ChangeLan", "en").c_str() ).c_str() ); } else { m_pButtonChangeLan->setText( FKCW_Base_StringConvert::a2u( FKCW_LocCharPtr("ChangeLan") ).c_str() ); } } public: CREATE_FUNC( CTest_Base_LocalizationLayer ); private: FKCW_UIWidget_WidgetWindow* m_pWindow; FKCW_UIWidget_Button* m_pButtonChangeLan; bool m_bIsEnglish; }; //------------------------------------------------------------------------- CREATE_TEST_SCENE_CLASS(Base, Localization, 自适应多国语言表) //-------------------------------------------------------------------------
[ "duzhi5368@163.com" ]
duzhi5368@163.com
8e06c880a01d52d69fa99c07ee25fd4ba5f98f9d
50ad95cab73dee05b54d1cfaa926bcef97f89669
/NeoNeuron_Software_Tools/Connectome.cpp
e0846349f24fd0cc5b818463304f9dedb5504a0f
[]
no_license
Acrazt02/NeoNeuron_SoftwareModel_v1
2970fbb41417847af7d8dcc26daf9f24df47f948
21344c529e6c7c7383db1027dd0ac036f13c1226
refs/heads/master
2023-07-30T10:36:35.393228
2021-09-09T03:29:06
2021-09-09T03:29:06
401,512,603
0
0
null
null
null
null
UTF-8
C++
false
false
4,721
cpp
#include "Connectome.h" #include "Handler.h" #include <iostream> #include <math.h> #define PI 3.14159265 using namespace std; vector<vector<int>>& Connectome::getConnections() { static vector<vector<int>> connections; return connections; } void Connectome::addConnection(int axonNeuronId, int synapticNeruonId, int synapseId, int synapseStrength) { vector<vector<int>>& connections = getConnections(); connections.push_back({ axonNeuronId ,synapticNeruonId, synapseId, synapseStrength }); for (int i = 0; i < connections.size(); i++) { cout << "Got: " << connections[i][0] << connections[i][1] << connections[i][2] << connections[i][3] << endl; } } vector<sf::RectangleShape>& Connectome::getGConnections() { static vector<sf::RectangleShape> gConnections; return gConnections; } bool& Connectome::isMakingConnection() { static bool makingStatus; return makingStatus; } /*int& Connectome::currentAxonId() { static int id = tempId; return id; } void Connectome::setCurrentAxonId(int id) { tempId = currentAxonId(); }*/ void Connectome::addGConnection(sf::Vector2f origin, sf::Vector2f end){ vector<sf::RectangleShape>& gConnections = getGConnections(); sf::RectangleShape gConnection; if (origin.x == 0 || origin.y == 0) { return; } sf::Vector2f vectorA = { end.x - origin.x,end.y - origin.y }; float vectorAMagnitude = sqrt(pow(vectorA.x, 2) + pow(vectorA.y, 2)); sf::Vector2f vectorB = { 0, vectorAMagnitude }; float vectorBMagnitude = sqrt(pow(vectorB.x, 2) + pow(vectorB.y, 2)); float h = 5; float dotProduct = vectorA.x * vectorB.x + vectorA.y * vectorB.y; float angle = acos(dotProduct / (vectorAMagnitude * vectorBMagnitude)) * 180.0 / PI; if (vectorA.x > 0) { angle = 360.0f - angle; } gConnection.setFillColor(sf::Color::Black); gConnection.setSize({ h,vectorAMagnitude }); gConnection.setPosition(origin); gConnection.setOrigin({ h / 2,0 }); gConnection.setRotation(angle); gConnections.push_back(gConnection); } float Connectome::getAngle(sf::Vector2f origin, sf::Vector2f end) { if (origin.x == 0 || origin.y == 0) { return -99999; } sf::Vector2f vectorA = { end.x - origin.x,end.y - origin.y }; float vectorAMagnitude = sqrt(pow(vectorA.x, 2) + pow(vectorA.y, 2)); sf::Vector2f vectorB = { 0, vectorAMagnitude }; float vectorBMagnitude = sqrt(pow(vectorB.x, 2) + pow(vectorB.y, 2)); float h = 5; float dotProduct = vectorA.x * vectorB.x + vectorA.y * vectorB.y; float angle = acos(dotProduct / (vectorAMagnitude * vectorBMagnitude)) * 180.0 / PI; if (vectorA.x > 0) { angle = 360.0f - angle; } return angle; } void Connectome::update(sf::Event& event, sf::RenderWindow& window) { } void Connectome::updateGSynapticConnections(int id, vector<sf::Vector2f> connectionsPosition) { vector<vector<int>>& connections = getConnections(); vector<sf::RectangleShape>& gConnections = getGConnections(); int count = 0; for (int i = 0; i < connections.size(); i++) {//{ axonNeuronId ,synapticNeruonId, synapseId, synapseStrength } if (count == connectionsPosition.size() + 1) { return; } if (connections[i][1] == id) { //Synapse Connection of the neuron of id sf::Vector2f currentOriginPosition = gConnections[i].getPosition(); sf::Vector2f newEndPosition = connectionsPosition[connections[i][2]]; float h = 5; sf::Vector2f vectorA = { newEndPosition.x - currentOriginPosition.x,newEndPosition.y - currentOriginPosition.y }; float vectorAMagnitude = sqrt(pow(vectorA.x, 2) + pow(vectorA.y, 2)); gConnections[i].setSize({ h,vectorAMagnitude }); gConnections[i].setRotation(getAngle(currentOriginPosition, newEndPosition)); count++; } } } void Connectome::updateGAxonConnections(int id, sf::Vector2f end) { // end = C vector<vector<int>>& connections = getConnections(); vector<sf::RectangleShape>& gConnections = getGConnections(); for (int i = 0; i < connections.size(); i++) {//{ axonNeuronId ,synapticNeruonId, synapseId, synapseStrength } if (connections[i][0] == id) { //Axon Connection of the neuron of id sf::Vector2f synapsePosition = Handler::gNeurons[connections[i][1]].getSynapses()[connections[i][2]].getPosition(); float h = 5; sf::Vector2f vectorA = { end.x - synapsePosition.x,end.y - synapsePosition.y }; float vectorAMagnitude = sqrt(pow(vectorA.x, 2) + pow(vectorA.y, 2)); gConnections[i].setSize({ h,vectorAMagnitude }); gConnections[i].setRotation(getAngle(end, synapsePosition)); gConnections[i].setPosition(end); } } } void Connectome::drawTo(sf::RenderWindow& window) { vector<sf::RectangleShape>& gConnections = getGConnections(); for (int i = 0; i < gConnections.size(); i++) { window.draw(gConnections[i]); } }
[ "viniciocastillo1956@gmail.com" ]
viniciocastillo1956@gmail.com
0b0b97d1880912e567587b6b8da1e5c287bbd51b
ddd80bc1939f9e51ab1fd0b883767572fbd5d3b4
/Week 3/array_17.cpp
8c875a3e695e96f3c821d12d90d4671e207ccc63
[]
no_license
preksha121/IPMP
e03c75e5a142557fbd4e05eb31fad4c4532f5c5d
1b07371bbc9a15f24f2324b89dca3a40d3e2257b
refs/heads/main
2023-06-05T16:19:05.758340
2021-06-25T18:15:03
2021-06-25T18:15:03
352,301,608
0
0
null
null
null
null
UTF-8
C++
false
false
281
cpp
int minimum_difference(vector<int>a){ // Code here int mina=INT_MAX; sort(a.begin(),a.end()); for(int i=0;i<a.size()-1;i++) { if(abs(a[i]-a[i+1])<mina) { mina=abs(a[i]-a[i+1]); } } return mina; } // { Driver Code Starts
[ "noreply@github.com" ]
preksha121.noreply@github.com
db4108748b08150294924137b4fe10ed5b939013
64d46d1fc5d07995e2bacd270e8ff2c4f9394c2a
/Charcoal/src/Charcoal/ImGui/ImGuiBuild.cpp
8e9e0c682c2af0b69b0125bdb70a6a631be0ad40
[ "Apache-2.0" ]
permissive
MayushKumar/Charcoal-Engine
12657b91dedcfe2df48342fadd3c634eedd51b9e
f2516d4b0632c12424900d576810727c8da4bf67
refs/heads/master
2022-11-16T13:52:20.729838
2022-10-27T15:43:16
2022-10-27T15:43:16
202,901,725
3
2
null
2020-06-06T13:04:04
2019-08-17T15:54:11
C++
UTF-8
C++
false
false
144
cpp
#include "chpch.h" #define IMGUI_IMPL_OPENGL_LOADER_GLAD #include "examples/imgui_impl_opengl3.cpp" #include "examples/imgui_impl_glfw.cpp"
[ "mayushkumar2004@gmail.com" ]
mayushkumar2004@gmail.com
7885f8f13d7e6fef576933f293b24908ee83d094
b69fc7395a3e2b148d413e6d2de4dfab44e0949b
/Source/InfinityBlade/Public/AI/AICharacter.h
5f1686fd392a82a88ebf1caa0deaf341bb90154f
[]
no_license
Vin-Han/Infinity-Blade
3ab5bcaa2f9b50864991a8cdff97ddbbf397967c
93c14d07f804244a6eedde82748e543b8997da06
refs/heads/master
2022-07-03T14:56:14.045683
2020-05-11T08:23:13
2020-05-11T08:23:13
262,828,955
0
0
null
null
null
null
UTF-8
C++
false
false
1,553
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/Character.h" #include "Components/WidgetComponent.h" #include "Components/TextBlock.h" #include "Animation/AnimMontage.h" #include "BehaviorTree/BehaviorTree.h" #include "Weapon/Weapon.h" #include "Components/ProgressBar.h" #include "AICharacter.generated.h" UCLASS() class INFINITYBLADE_API AAICharacter : public ACharacter { GENERATED_BODY() public: // Sets default values for this character's properties AAICharacter(); /**/ UPROPERTY(VisibleAnyWhere) UWidgetComponent* AIWidget; UPROPERTY() UProgressBar* HPBar; UPROPERTY(VisibleAnyWhere,Category = "HP") float TotalHP; UPROPERTY(VisibleAnyWhere, Category = "HP") float CurHP; UPROPERTY() UTextBlock* CurHpText; UPROPERTY() UTextBlock* TotalHpText; /**/ bool bIsDead; /**/ UPROPERTY(EditAnyWhere, Category = "AI") UBehaviorTree* BehaviorTree; /**/ UPROPERTY(EditAnyWhere, Category = "Weapon") TSubclassOf<AWeapon> AIWeaponClass; UPROPERTY(EditAnyWhere, Category = "Montage") TArray<UAnimMontage*> AttackMontageClass; UPROPERTY(EditAnyWhere, Category = "Montage") UAnimMontage* DamageMontage; UPROPERTY(EditAnyWhere, Category = "Montage") UAnimMontage* DeathMontage; protected: // Called when the game starts or when spawned virtual void BeginPlay() override; virtual float TakeDamage(float Damage, struct FDamageEvent const& DamageEvent, AController* EventInstigator, AActor* DamageCauser) override; };
[ "vinhanyi@gmail.com" ]
vinhanyi@gmail.com
2583858396b1539299ac6d385a3fc53814524f5d
6d4398f454ed278c0d3f6e166fa0e1370ebaa0ad
/software/QGroundStation/libraries/qchart/standard/channeldecorator.cpp
8d700045954ab2d9c64f2428e23cc688edf2d77e
[]
no_license
nongxiaoming/QGroundStation
4b27cb2165b91b0510210e65a781daf5fc919c64
0a491c9d910e465633c232ecd74a7c283def5301
refs/heads/master
2020-05-18T11:03:00.538465
2014-10-08T16:48:51
2014-10-08T16:48:51
19,404,192
1
1
null
null
null
null
WINDOWS-1250
C++
false
false
7,003
cpp
/*************************************************************************** * Copyright (C) 2006-2008 by Tomasz Ziobrowski * * http://www.3electrons.com * * e-mail: t.ziobrowski@3electrons.com * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ /************************************************************************ channeldecorator.cpp - Copyright coder **************************************************************************/ #include <QtGui> #include <QPainterPath> #include "chart.h" #include "channeldata.h" #include "standard/channeldecorator.h" #include <cmath> #include <iostream> using namespace std; using namespace Standard; /** Operacja malowania. Maluje kolejne elementy komponentu Chart. */ void ChannelDecorator::paint ( QPainter & painter, Chart * chart ) { if ( !chart->doRepaintBackground() ) { //painter.save(); unsigned int rh = painter.renderHints(); if ( chart->isPaintOver() && chart->antialiasing() ) painter.setRenderHint ( QPainter::Antialiasing ); // właczenie antialiasingu Channels & channels = chart->channels(); Channels::iterator i=channels.begin(); while ( i!=channels.end() ) { if ( i->visible() ) { painter.save(); painter.setPen ( i->pen() ); translateToChannel ( painter,chart,*i ); paintChannel ( painter,chart,*i ); painter.restore(); } i++; } // while painter.setRenderHint ( QPainter::RenderHint ( rh ) ); // wylaczenie antialiasingu }// if not doRepaintBackground painter.restore(); // odwraca zmiany jakie były wprowadzone przez porzedni dekorator ChartDecorator::paint ( painter,chart ); // uruchomienie następnego dekoratora } void ChannelDecorator::absPosition ( QPoint & curPos, QPolygonF & absPoints, Chart * chart,QRect & /*clip*/ ) { double xmin,ymin,xmax,ymax,pos; pos = chart->scaleGrid().pos ; xmin = chart->scaleGrid().m_min; xmax = chart->scaleGrid().m_max; xfactor = ( viewport.width() ) / ( xmax - xmin ); dx = -pos * xfactor; double current_x = curPos.x(); double current_y = curPos.y(); double abs_x = ( current_x - dx ) /xfactor ; double abs_y = 0; Channels & channels = chart->channels(); Channels::iterator i=channels.begin(); // qDebug("Okno (%d,%d)",window.width()-window.x(),window.height()); // qDebug("View (%d,%d)",viewport.width(),viewport.height()); while ( i!=channels.end() ) { i++->getCalcMinMax ( ymin,ymax ); yfactor = ( -viewport.height() ) / ( ymax - ymin ); dy = ymax * -yfactor; abs_y = ( current_y - dy ) / ( yfactor ); absPoints.push_back ( QPointF ( abs_x,abs_y ) ); } } void ChannelDecorator::translateToChannel ( QPainter & painter, Chart * chart, Channel & channel ) { double xmin,ymin,xmax,ymax,pos; pos = chart->scaleGrid().pos ; xmin = chart->scaleGrid().m_min; xmax = chart->scaleGrid().m_max; channel.getCalcMinMax ( ymin,ymax ); viewport = painter.viewport(); // do odczytów window = painter.window(); // to samo co QRect(0,0,viewport.width()+viewport.x(),viewport.height()+viewport.y()); xfactor = window.width() / ( xmax - xmin ); yfactor = -window.height() / ( ymax - ymin ); dx = -pos * xfactor; dy = ymax * -yfactor; dxw = window.width(); } bool anyVector ( double x1,double x2 ) { double x = x2-x1; if ( x<0 ) x = -x; return x>1.0; } void ChannelDecorator::paintChannel ( QPainter & painter, Chart * /*chart*/, Channel & channel ) { double x,y; double current_x = 0 ,old_x=-1.0,current_y,old_y=-1.0; bool init = false,add = false; ChannelData * data = channel.data() ; if ( data ) if ( data->init() ) { //QPolygon lineA const int size = 50; QPoint line[size+2]; //line.resize(data->size()); unsigned int i =0; while ( data->next ( x,y ) ) { current_x = x*xfactor+dx; current_y = y*yfactor+dy; bool xvector = anyVector ( old_x,current_x ); bool yvector = anyVector ( old_y,current_y ); //bool vector = xvector||yvector; bool oldInWindow = painter.window().contains ( old_x,old_y ); bool newInWindow = painter.window().contains ( current_x,current_y ); if ( channel.type() == Channel::Line ) add = ( ( ( oldInWindow || newInWindow ) || ( !oldInWindow && !newInWindow ) ) && ( xvector || yvector ) ); if ( channel.type() == Channel::Dots ) add = ( xvector || yvector ); if ( !init || add ) { line[i++]= ( QPoint ( current_x,current_y ) ); if ( i > size ) { if ( channel.type() ==Channel::Line ) painter.drawPolyline ( line,size+1 ); else painter.drawPoints ( line,size+1 ); line[0] = line[size]; // Last point is first one i=1; } old_x = current_x; old_y = current_y; // qDebug("(%d,%d)",(int)current_x,(int)current_y); } init = true; add = false; }// while channel.data()->next ... // painter.setMatrixEnabled(false); // painter.setViewTransformEnabled ( false ); if ( channel.type() == Channel::Line ) painter.drawPolyline ( line,i ); else painter.drawPoints ( line,i ); // painter.setViewTransformEnabled ( true ); // painter.setMatrixEnabled(true); //cout<<"Paint lines"<<line.size()<<" Channel:"<<qPrintable(channel.name())<<endl; } //else // cout<<"Channel:"<<qPrintable(channel.name())<<" has no data"<<endl; //painter.setRenderHint(QPainter::RenderHint(0x0)); }
[ "nongxiaoming@gmail.com" ]
nongxiaoming@gmail.com
838a123c04395543e05f18c788d871af137d42ec
fd03f96ad0d11ed4d4ff3f0d77df45201de0779c
/offline/include/PageLib.h
a523ed248a0e2a7bf96a24e94869155842c8006a
[]
no_license
colinhp/searchEngine-12
6589c56315aacc7fe49c6f9b4699fed34a3680bc
8eb40a14b333f341bb3f4c141f7b6627f4276c62
refs/heads/master
2021-05-20T23:15:52.110951
2018-10-31T10:35:43
2018-10-31T10:35:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,004
h
/// /// @file PageLib.h /// @author yangyu/Icot(jobyang@163.com) /// @date 2017-03-28 05:50:52 /// #ifndef __WD_PAGELIB_H__ #define __WD_PAGELIB_H__ #include "tinyxml2.h" #include "DirScanner.h" #include "Configuration.h" #include <string> #include <vector> #include <map> #include <memory> using std::string; using std::vector; using std::map; using std::shared_ptr; using namespace tinyxml2; namespace wd { struct rssItem{ string _url; string _title;//title和link不含html标签 string _content; }; class PageLib{ public: PageLib(Configuration& conf,DirScanner& dirScanner); void create(); void store(); private: void makePages(); void parseRss(const string& filepath); private: Configuration & _conf; DirScanner & _dirScanner; vector<shared_ptr<rssItem>> _vecRssItem;//处理xml文件后存入此中间变量 vector<string> _vecFormatFiles;//以item即文章为单位存储,而非以xml文件为单位 //Map<int,std::pair<int,int>> _offsetLib; }; } #endif
[ "604381117@qq.com" ]
604381117@qq.com
7930e7618e7bc4f6bbe9b299df4558e7e5e44778
fbbab5e6d1fb1223717dc5317f877e2238dba014
/Arduino/beer_bottle_hits/beer_bottle_hits.ino
a56169e4d2d12cee9034b95813837ffb6169484d
[]
no_license
whg/desperados
c35cba097bdb3edb172e061b8c5a6ffcff09fbd7
00cc6c8131b08fbad6bbfc98a3c66e3daadfbcf2
refs/heads/master
2021-01-10T02:16:04.467828
2016-02-23T14:26:19
2016-02-23T14:26:19
51,906,447
1
0
null
null
null
null
UTF-8
C++
false
false
1,856
ino
#define NOTE_ON 0b10010000 #define NOTE_OFF 0b10000000 //#define DEBUG const int hitPins[4] = { 4, 5, 6, 7 }; const int numPins = sizeof(hitPins) / sizeof(int); const int noteNumbers[] = { 59, 50, 54, 47 }; const int midiChannel = 4; enum state_t { ON, OFF }; state_t states[numPins]; unsigned long lastHits[numPins]; const unsigned long HIT_THRESHOLD = 20; // millis const int NOTE = 24; // C0 const unsigned long NOTE_DURATION = 120 ; const int LED_PIN = 13; void setup() { #ifdef DEBUG Serial.begin(9600); #else Serial.begin(31250); #endif for (uint8_t i = 0; i < numPins; i++) { pinMode(hitPins[i], INPUT_PULLUP); lastHits[i] = 0; states[i] = OFF; } pinMode(LED_PIN, OUTPUT); } void loop() { unsigned long timeNow = millis(); for (uint8_t i = 0; i < numPins; i++) { // Serial.print(i); // Serial.print(" "); // Serial.println(states[i]); // Serial.print(" "); // if (states[i] == OFF && digitalRead(hitPins[i]) == 0) { if ((timeNow - lastHits[i]) > NOTE_DURATION) { sendMidi(NOTE_ON, midiChannel, noteNumbers[i], 80); lastHits[i] = timeNow; states[i] = ON; digitalWrite(LED_PIN, HIGH); } } } for (uint8_t i = 0; i < numPins; i++) { if (states[i] == ON && (timeNow - lastHits[i]) > NOTE_DURATION) { sendMidi(NOTE_OFF, midiChannel, noteNumbers[i], 0); states[i] = OFF; digitalWrite(LED_PIN, LOW); } } } void sendMidi(uint8_t type, uint8_t channel, uint8_t byte1, uint8_t byte2) { #ifdef DEBUG if (type == NOTE_ON) Serial.print("Note on: "); else if (type == NOTE_OFF) Serial.print("Note off: "); Serial.print(channel); Serial.print(", "); Serial.println(byte1); #else byte cmd = type | ((channel-1) & 15); Serial.write(cmd); Serial.write(byte1); Serial.write(byte2); #endif }
[ "wgallia@gmail.com" ]
wgallia@gmail.com
080f4a9140b720f87f805f26493c1f515cb31b6e
d647a6f21c4f580dd22bfaa0ac1801277bfb0058
/src/server/OutgoingPackages.h
08469b9a464890b66586f0a75fd8a3a861a36d41
[]
no_license
ebchandelier/sisop2
a58ef32ad5709e28179c3b267cb936130f3662c1
c49fb755260404e2ddb7375e8ef23e581284c325
refs/heads/master
2020-03-09T11:54:05.674833
2018-07-02T22:29:55
2018-07-02T22:29:55
128,772,252
0
0
null
2018-06-04T12:57:45
2018-04-09T12:59:47
C++
UTF-8
C++
false
false
492
h
#pragma once #include <netdb.h> #include "../shared/datagram.h" #include "ThreadSafeQueue.h" class OutgoingPackages { public: OutgoingPackages(sockaddr_in receiver, ThreadSafeQueue<std::pair<sockaddr_in, datagram>>* queue) { this->receiver = receiver; this->queue = queue; } void produce(datagram package) { queue->produce({ receiver, package }); } ThreadSafeQueue<std::pair<sockaddr_in, datagram>>* queue; sockaddr_in receiver; };
[ "gallegretti@inf.ufrgs.br" ]
gallegretti@inf.ufrgs.br
4bff4ae00dd8e58af02223e23e644646be8bf777
4c0990426380bdc6098303570a94dd14b562895f
/POJ/list/1/2586.cpp
b031a18d4e6d534730a98e95c72153e219ff3082
[]
no_license
Ir1d/Fantasy
08e9b2d63eb901e1543a00ea018e3d7682319dce
e4fbe30590fc5177b7ab9119daef5ca76158762e
refs/heads/master
2020-12-30T10:23:46.750591
2018-12-31T17:15:50
2018-12-31T17:15:50
98,869,098
4
1
null
null
null
null
UTF-8
C++
false
false
1,216
cpp
/** * @author SCaffrey (srius.caffrey@gmail.com) * @copyright MIT */ #include <cstdio>// NOLINT #include <cstring>// NOLINT #include <cmath>// NOLINT #define x1 x11 #define y1 y11 #define f(x, y, z) for (int x = (y), __ = (z); x < __; ++x) #define g(x, y, z) for (int x = (y), __ = (z); x <= __; ++x) #define fd(x, y, z) for (int x = (y), __ = (z); x > __; --x) #define gd(x, y, z) for (int x = (y), __ = (z); x >= __; --x) #ifdef WIN32 #define LLD "%I64d" #define LLU "%I64u" #else #define LLD "%lld" #define LLU "%llu" #endif typedef long long LL;// NOLINT typedef long double real; const double INF = 1e100; const int oo = ~0u >> 2;c const double pi = acos(-1.0); const double EPS = 1e-8; const int MAXN = 100033; int v; int a, b; int main() { #ifdef LOCAL freopen("a.in", "r", stdin); freopen("a.out", "w", stdout); #endif while (~scanf("%d%d", &a, &b)) { if (b > a * 4) v = 10 * a - 2 * b; else if (2 * b > 3 * a) v = 8 * a - 4 * b; else if (3 * b > 2 * a) v = 6 * a - 6 * b; else if (4 * b > a) v = 3 * a - 9 * b; else v = -12 * b; if (v <= 0) puts("Deficit"); else printf("%d\n", v); } #ifdef LOCAL fclose(stdin); fclose(stdout); #endif return 0; }
[ "sirius.caffrey@gmail.com" ]
sirius.caffrey@gmail.com
30e068042e71dc57bde090504b54a99182d6f827
062fe73aef5bd087e88320f0f8ce2023c0981713
/RyujinrokuMobile/RyujinrokuMobile.NativeActivity/src/EnemyAppearMgr.cpp
d06ecdf55392e962a60082e9f89e3eb09b0f406f
[]
no_license
remicalsoft/RyujinrokuMobile
762c1bc94ab2baf5ebb71ae392f2e1e75c9e9601
c3bff61dbce2298890954b8bba32da4946c085f9
refs/heads/master
2021-05-17T07:39:42.961357
2020-04-01T14:42:27
2020-04-01T14:42:27
250,699,354
1
0
null
null
null
null
UTF-8
C++
false
false
29
cpp
#include "EnemyAppearMgr.h"
[ "remicalsoft@gmail.com" ]
remicalsoft@gmail.com
263c3ab3da53014b6127c1ab167dd65aafdb8acb
b7e97047616d9343be5b9bbe03fc0d79ba5a6143
/test/core/chemical/AtomICoor.cxxtest.hh
a1e1fd4c85a775a1fe5a4014a9138f8ddf7ade6a
[]
no_license
achitturi/ROSETTA-main-source
2772623a78e33e7883a453f051d53ea6cc53ffa5
fe11c7e7cb68644f404f4c0629b64da4bb73b8f9
refs/heads/master
2021-05-09T15:04:34.006421
2018-01-26T17:10:33
2018-01-26T17:10:33
119,081,547
1
3
null
null
null
null
UTF-8
C++
false
false
6,460
hh
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons. // (c) For more information, see http://www.rosettacommons.org. Questions about this can be // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu. /// @file core/chemical/AtomICoor.cxxtest.hh /// @brief unit tests for AtomICoor /// @author Rocco Moretti (rmorettiase@gmail.com) // Test Headers #include <cxxtest/TestSuite.h> #include <core/init_util.hh> // Unit Headers #include <core/chemical/AtomICoor.hh> #include <core/chemical/ResidueType.hh> #include <core/id/AtomID.hh> #include <core/import_pose/import_pose.hh> #include <core/pose/Pose.hh> #include <core/pose/util.hh> #include <core/conformation/Residue.hh> // Project Headers #include <core/types.hh> #include <numeric/xyzVector.hh> // Platform Headers #include <basic/Tracer.hh> // C++ Headers #include <string> #include <ostream> //Auto Headers static basic::Tracer TR("core.chemical.AtomICoor.cxxtest"); class AtomICoorTests : public CxxTest::TestSuite { core::pose::PoseCOP pose_; public: void setUp() { core_init_with_additional_options("-extra_res_fa core/chemical/ASX.params core/chemical/LYX.params"); // Remove if database versions get permanently enabled pose_ = core::import_pose::pose_from_file("core/chemical/conn.pdb"); } void tearDown() {} void test_atom_icoord_build() { core::conformation::Residue const & rsd( pose_->residue(2) ); TS_ASSERT_EQUALS( rsd.name(), "ASX" ); core::chemical::AtomICoor const & ha( rsd.icoor( rsd.atom_index("HA") ) ); core::Vector pos( ha.build( rsd, pose_->conformation() ) ); TS_ASSERT_DELTA( pos.x(), rsd.xyz("HA").x(), 0.001 ); TS_ASSERT_DELTA( pos.y(), rsd.xyz("HA").y(), 0.001 ); TS_ASSERT_DELTA( pos.z(), rsd.xyz("HA").z(), 0.001 ); TR << "test_atom_icoord_build Done!" << std::endl; } void test_id_poly() { core::conformation::Residue const & rsd( pose_->residue(2) ); // Internal core::chemical::AtomICoor const & ha( rsd.icoor( rsd.atom_index("HA") ) ); core::id::AtomID ha_stub1_id( ha.stub_atom1().atom_id( rsd, pose_->conformation() ) ); TS_ASSERT_EQUALS( ha_stub1_id.rsd(), 2 ); TS_ASSERT_EQUALS( ha_stub1_id.atomno(), rsd.atom_index("CA") ); core::id::AtomID ha_stub3_id( ha.stub_atom3().atom_id( rsd, pose_->conformation() ) ); TS_ASSERT_EQUALS( ha_stub3_id.rsd(), 2 ); TS_ASSERT_EQUALS( ha_stub3_id.atomno(), rsd.atom_index("CB") ); // Polymer Lower core::chemical::AtomICoor const & bbh( rsd.icoor( rsd.atom_index("H") ) ); core::id::AtomID bbh_stub3_id( bbh.stub_atom3().atom_id( rsd, pose_->conformation() ) ); TS_ASSERT_EQUALS( bbh_stub3_id.rsd(), 1 ); TS_ASSERT_EQUALS( bbh_stub3_id.atomno(), pose_->residue(1).atom_index("C") ); // Polymer Upper core::chemical::AtomICoor const & bbo( rsd.icoor( rsd.atom_index("O") ) ); core::id::AtomID bbo_stub3_id( bbo.stub_atom3().atom_id( rsd, pose_->conformation() ) ); TS_ASSERT_EQUALS( bbo_stub3_id.rsd(), 3 ); TS_ASSERT_EQUALS( bbo_stub3_id.atomno(), pose_->residue(3).atom_index("N") ); TR << "test_if_poly Done!" << std::endl; } void test_id_nonpoly() { // Test what happens with connection IDs when we delete connections. core::pose::Pose pose(*pose_); // make copy core::conformation::Residue old_res( pose.residue(2) ); core::chemical::ResidueTypeSetCOP rt_set( core::chemical::ChemicalManager::get_instance()->residue_type_set( core::chemical::FA_STANDARD ) ); // First, some sanity checks to make sure the connection information is set up correctly. TS_ASSERT_EQUALS( pose.residue(2).n_current_residue_connections(), 3); TS_ASSERT_EQUALS( pose.residue(5).n_current_residue_connections(), 3); TS_ASSERT_EQUALS( pose.residue(2).n_non_polymeric_residue_connections(), 1); TS_ASSERT_EQUALS( pose.residue(5).n_non_polymeric_residue_connections(), 1); // Connection 3 should be the sidechain connection TS_ASSERT_EQUALS( pose.residue(2).residue_connection_partner(3), 5 ); TS_ASSERT_EQUALS( pose.residue(5).residue_connection_partner(3), 2 ); // connect_atom is the atom on *this* residue that's connected to the parameter residue TS_ASSERT_EQUALS( pose.residue(2).connect_atom(pose.residue(5)), pose.residue(2).atom_index("CG") ); TS_ASSERT_EQUALS( pose.residue(5).connect_atom(pose.residue(2)), pose.residue(5).atom_index("NZ") ); // Now test the id for the connection. { core::chemical::AtomICoor const & sco( pose.residue(2).icoor( pose.residue(2).atom_index("OD1") ) ); core::id::AtomID sco_stub3_id( sco.stub_atom3().atom_id( pose.residue(2), pose_->conformation() ) ); TS_ASSERT_EQUALS( sco_stub3_id.rsd(), 5 ); TS_ASSERT_EQUALS( pose.residue(sco_stub3_id.rsd()).atom_name( sco_stub3_id.atomno() ), " NZ " ); } // Remove c-term connection. core::pose::add_variant_type_to_pose_residue(pose, core::chemical::UPPER_TERMINUS_VARIANT, 2 ); core::pose::add_variant_type_to_pose_residue(pose, core::chemical::LOWER_TERMINUS_VARIANT, 3 ); TS_ASSERT( core::pose::is_upper_terminus(pose, 2 ) ); { core::chemical::AtomICoor const & sco( pose.residue(2).icoor( pose.residue(2).atom_index("OD1") ) ); core::id::AtomID sco_stub3_id( sco.stub_atom3().atom_id( pose.residue(2), pose_->conformation() ) ); TS_ASSERT_EQUALS( sco_stub3_id.rsd(), 5 ); TS_ASSERT_EQUALS( pose.residue(sco_stub3_id.rsd()).atom_name( sco_stub3_id.atomno() ), " NZ " ); } // Also remove the n-term connection core::pose::add_variant_type_to_pose_residue(pose, core::chemical::UPPER_TERMINUS_VARIANT, 1 ); core::pose::add_variant_type_to_pose_residue(pose, core::chemical::LOWER_TERMINUS_VARIANT, 2 ); TS_ASSERT( core::pose::is_upper_terminus(pose, 2 ) ); TS_ASSERT( core::pose::is_lower_terminus(pose, 2 ) ); { core::chemical::AtomICoor const & sco( pose.residue(2).icoor( pose.residue(2).atom_index("OD1") ) ); core::id::AtomID sco_stub3_id( sco.stub_atom3().atom_id( pose.residue(2), pose_->conformation() ) ); TS_ASSERT_EQUALS( sco_stub3_id.rsd(), 5 ); TS_ASSERT_EQUALS( pose.residue(sco_stub3_id.rsd()).atom_name( sco_stub3_id.atomno() ), " NZ " ); } TR << "test_id_nonpoly Done!" << std::endl; } };
[ "achitturi17059@gmail.com" ]
achitturi17059@gmail.com
8a7a4d5d4ff6e8f8b2fedb494f041ac42d324c25
ee8175c7e9fce67b0075988aa91f4468d8f1450e
/src/ofxRKThread.h
d9653856ecfb30966f75a5b06de87cfb67635227
[]
no_license
roikr/yesplastic
385398ffa84bacee86015efd7de9617f24678ed6
1f8a52022097eb93489e52bad7bbd3518d02035e
refs/heads/master
2021-01-10T21:27:19.837365
2011-07-06T12:50:30
2011-07-06T12:50:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
319
h
/* * ofxRKThread.h * deadLoops13 * * Created by Giori politi on 9/8/09. * Copyright 2009 __MyCompanyName__. All rights reserved. * */ struct threadContainer; class ofxRKThread { public: virtual void threadedFunction() {}; void startThread(); void stopThread(); private: threadContainer *container; };
[ "roikr75@gmail.com" ]
roikr75@gmail.com
ccac44cf3981079e47d2fbd02addceec1a38adfd
c3bdc6275a9b040f466e1e05da48d367cdc8ef8a
/REC/REC.ino
45214fbb457d89ab9530248d32522b4721856cfa
[]
no_license
amadues2013/Arduino
9a6315ca6dc7edbc298d8dba35d521c2d8cd6794
bf84bf8b191494980b25bfeb77837c82bcf9db48
refs/heads/master
2020-05-31T21:19:20.148047
2017-02-02T09:14:39
2017-02-02T09:14:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,742
ino
/* Analog input, analog output, serial output Reads an analog input pin, maps the result to a range from 0 to 255 and uses the result to set the pulsewidth modulation (PWM) of an output pin. Also prints the results to the serial monitor. The circuit: * potentiometer connected to analog pin 0. Center pin of the potentiometer goes to the analog pin. side pins of the potentiometer go to +5V and ground * LED connected from digital pin 9 to ground created 29 Dec. 2008 modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. */ // These constants won't change. They're used to give names // to the pins used: const int analogInPin = A0; // Analog input pin that the potentiometer is attached to const int analogOutPin = 11; // Analog output pin that the LED is attached to int sensorValue = 0; // value read from the pot int outputValue = 0; // value output to the PWM (analog out) void setup() { // initialize serial communications at 9600 bps: Serial.begin(9600); digitalWrite(14,LOW); digitalWrite(15,HIGH); } void loop() { // read the analog in value: sensorValue = analogRead(analogInPin); // map it to the range of the analog out: outputValue = map(sensorValue, 0, 1023, 90, 140); // change the analog out value: analogWrite(analogOutPin, outputValue); // print the results to the serial monitor: Serial.print("sensor = " ); Serial.print(sensorValue); Serial.print("\t output = "); Serial.println(outputValue); // wait 2 milliseconds before the next loop // for the analog-to-digital converter to settle // after the last reading: delay(2); }
[ "git@troykyo.com" ]
git@troykyo.com
7c203b7f0599109afa740bb6f5afd01190bf16ca
301ba7367a93275b8c11d0fe77fd6e1aa00870ac
/src/tasks/TaskFactory.h
317a7f2583c3c1a831658fe265f250a1f18273ba
[ "Apache-2.0" ]
permissive
LiamPilot/LightSaber
6900489b2d2c6d555f33ecbf523d580bee90954e
1215097428d9e2122c0b263cd2a9a7224dac5f13
refs/heads/master
2022-10-01T02:21:27.149957
2020-06-02T21:12:56
2020-06-02T21:12:56
268,609,589
0
0
Apache-2.0
2020-06-01T19:10:44
2020-06-01T19:10:43
null
UTF-8
C++
false
false
1,203
h
#pragma once #include <atomic> #include <memory> #include "tbb/concurrent_queue.h" #include "tasks/Task.h" #include "tasks/WindowBatch.h" /* * This class implements a pool of @Tasks used from the @TaskDispatcher * to create new tasks for the system. * * */ class TaskFactory { private: std::atomic<long> m_count; tbb::concurrent_queue<std::shared_ptr<Task>> m_pool; TaskFactory() {}; public: static TaskFactory &getInstance() { static TaskFactory instance; return instance; } TaskFactory(TaskFactory const &) = delete; void operator=(TaskFactory const &) = delete; std::shared_ptr<Task> newInstance(int taskId, std::shared_ptr<WindowBatch> batch) { std::shared_ptr<Task> task; bool hasRemaining = m_pool.try_pop(task); if (!hasRemaining) { m_count.fetch_add(1); task = std::make_shared<Task>(taskId, batch); } task->set(taskId, batch); return task; } void free(std::shared_ptr<Task> &task) { //std::cout << "[DBG] free task "+std::to_string(task->getTaskId())+" task-refs "+std::to_string(task.use_count()) << std::endl; m_pool.push(task); task.reset(); } long getCount() { return m_count.load(); } };
[ "giwrgosrtheod@gmail.com" ]
giwrgosrtheod@gmail.com
47c1295cb260206f3800017ddf66f1249959e9ab
96e32886a2d46033f6f66a0faed7860e161f2a78
/src/core/include/ivy/charenc/icu/encoding_traits.hxx
7fb1fa767589faeb9eb9481c4d6fa82f8e480f52
[ "MIT", "BSL-1.0", "BSD-2-Clause" ]
permissive
sikol/ivy
a89a173c413b55224b54008bfbde76b8648feee3
6365b8783353cf0c79c633bbc7110be95a55225c
refs/heads/main
2023-06-02T10:38:21.842777
2021-06-23T15:23:31
2021-06-23T15:23:31
366,716,146
0
0
null
null
null
null
UTF-8
C++
false
false
418
hxx
/* * Copyright (c) 2019, 2020, 2021 SiKol Ltd. * Distributed under the Boost Software License, Version 1.0. */ #ifndef IVY_CHARENC_ICU_ENCODING_TRAITS_HXX_INCLUDED #define IVY_CHARENC_ICU_ENCODING_TRAITS_HXX_INCLUDED #include <ivy/charenc.hxx> namespace ivy::icu { template<character_encoding E> struct encoding_traits { }; } #endif // IVY_CHARENC_ICU_ENCODING_TRAITS_HXX_INCLUDED
[ "felicity@sikol.co.uk" ]
felicity@sikol.co.uk
e16148162c7af4130d44b07c9d5816943d150e2f
4ab8b514a63f60929c30ed6ec12c4fddb56fda22
/includes/pypp/pypp.hpp
0dc57dccfbab82d3193a3bc95fc3f16c4cd5581d
[]
no_license
pkuleon/jadesoul
45049c9dece0e7f814c6abbf2726de47b61b5b83
f1c02ac00bda62e1253b2e0fe7a95e925e595126
refs/heads/master
2021-01-19T18:07:40.396164
2015-03-27T12:01:28
2015-03-27T12:01:28
32,983,635
0
0
null
null
null
null
UTF-8
C++
false
false
63,067
hpp
#ifndef PYPP_HPP_BY_JADESOUL #define PYPP_HPP_BY_JADESOUL /** * File: pypp.hpp * Description: * a simple framework to make C++ programming as easy as python * * 谨以这两千行代码纪念曾经逝去的那连续三个美好的通宵 * * Copyright (c) 2011 Jadesoul (Home Page: http://jadesoul.org) * Licensed under the GNU General Public License: * http://www.gnu.org/licenses/gpl.html * * Date: 2011-05-12 15:14:02.545000 * Written In: Peking University, beijing, China */ #include <jade.hpp> #ifdef debug #define showt(tmp) cout<<typeid(tmp).name()<<endl #define showp(p) cout<<p<<endl #define msg(s) cout<<#s<<endl #define dbg(msg) cout<<"creating a new var: "<<#msg<<" : "<<r<<" : "<<this<<endl #define codemask(...) __VA_ARGS__ #else #define showt(tmp) #define showp(p) #define msg(s) #define dbg(msg) #define codemask(...) #endif #define die {cout<<"die @ "<<__FILE__<<" line:"<<__LINE__<<endl;assert(false);} #define bye(msg) {cout<<"trace:\n\t"<<#msg<<endl;die;} class memmgr; class var; template<class T>//implemention of reference count to a heap object class heapobj {//a class to represent a dynamic allocated one object in heap (note: only one obj) public: heapobj() { malloc(); } ~heapobj() { free(); } T* get() {//get a ptr to the obj, used when a new var wants share the ptr to the heap obj assert(p!=0); // if (p==0) return 0; inc(); return p; } void release() {//release the ptr to the obj, used when a exist var do not use target any more if (p==0) return; dec(); } T& ref() {//get the refernce, be careful, do not delete p outside assert(p!=0); return *p; } T* ptr() {//get the pointer, be careful, do not delete p outside assert(p!=0); return p; } bool empty() const {//test if target has been deleted, return p==0;//used by memory manager to clean links } const uint cnt() const { return refcnt; } /* void suiside() { delete this; } */ private: inline void malloc() { p=new T; refcnt=0; } inline void free() { if (p!=0) { codemask(cout<<"in heapobj free(): free heapobj target with p=" <<p<<" refcnt="<<refcnt<<endl;) delete p; p=0; refcnt=0; } } inline void inc() { ++refcnt; } inline void dec() { if (refcnt>0) --refcnt; if (refcnt==0) free(); } private://data T* p;//ptr to the obj in heap uint refcnt;//the refernce count to this object, //equals to how many times calling get() without a del() }; namespace py { typedef std::string str; typedef std::vector<var> list; typedef std::list<var> tuple; typedef std::set<var> set; typedef std::map<var, var> dict; } class memmgr { //smart heap memory manager public: typedef py::str str; typedef py::list list; typedef py::tuple tuple; typedef py::set set; typedef py::dict dict; typedef heapobj<py::str> heapstr; typedef heapobj<py::list> heaplist; typedef heapobj<py::tuple> heaptuple; typedef heapobj<py::set> heapset; typedef heapobj<py::dict> heapdict; typedef std::list<heapstr*> strlink; typedef std::list<heaplist*> listlink; typedef std::list<heaptuple*> tuplelink; typedef std::list<heapset*> setlink; typedef std::list<heapdict*> dictlink; private: strlink strlnk; listlink listlnk; tuplelink tpllnk; setlink setlnk; dictlink dictlnk; public: int a; memmgr() { show_state("when init"); } ~memmgr() { show_state("before delete"); #define macro_delete_link(lnk) while(NOT lnk.empty()) { \ codemask(cout<<"delete a heapobj in "<<#lnk<<endl;) \ delete lnk.front(); lnk.pop_front(); } macro_delete_link(strlnk) macro_delete_link(listlnk) macro_delete_link(tpllnk) macro_delete_link(setlnk) macro_delete_link(dictlnk) #undef macro_delete_link show_state("after delete"); } template<class T> struct is_target_deleted {//unary predicate to tell if the target of a heapobj is deleted bool operator()(T* p) { msg("find one empty heapobj"); return p->empty(); } }; void auto_clean() {//the garbage collection //automatically clean the heapobj whose target has already been deleted #define clean_empty_heapobj_in_link(strlnk, heapstr) strlnk.remove_if(is_target_deleted<heapstr>()); clean_empty_heapobj_in_link(strlnk, heapstr) clean_empty_heapobj_in_link(listlnk, heaplist) clean_empty_heapobj_in_link(tpllnk, heaptuple) clean_empty_heapobj_in_link(setlnk, heapset) clean_empty_heapobj_in_link(dictlnk, heapdict) #undef clean_empty_heapobj_in_link } void show_state(const char * msg) { cout<<"[ mmgr: "<<msg<<" ] " <<" str: "<<strlnk.size() <<" list: "<<listlnk.size() <<" tuple: "<<tpllnk.size() <<" set: "<<setlnk.size() <<" dict: "<<dictlnk.size() <<endl; } #define macro_new_operator(type, func, lnk) type& func() { type* p=new type; lnk.push_front(p); return *p; } macro_new_operator(heapstr, newstr, strlnk) macro_new_operator(heaplist, newlist, listlnk) macro_new_operator(heaptuple, newtuple, tpllnk) macro_new_operator(heapset, newset, setlnk) macro_new_operator(heapdict, newdict, dictlnk) #undef macro_new_operator } mmgr; //design this tmp object memmory manager, when program finish, it will clean all class var { public: typedef py::str str; typedef py::list list; typedef py::tuple tuple; typedef py::set set; typedef py::dict dict; typedef heapobj<py::str> heapstr; typedef heapobj<py::list> heaplist; typedef heapobj<py::tuple> heaptuple; typedef heapobj<py::set> heapset; typedef heapobj<py::dict> heapdict; private: union {//data of all kinds of var, only one kind at a time union {//for non-const ref=obj& or ptr=&obj in stack, save its pointer str* pstr; list* plist; tuple* ptuple; set* pset; dict* pdict; } stack;//4 bytes union {//for non-const obj ref or ptr, often created in var member functions, //save its heapobj pointer, and real obj pointer struct {//for str heapstr* pheap;//points to the heapobj who points to the real obj on heap str* pstr;//the same as pheap->ptr(), but this will be faster } str; struct { heaplist* pheap; list* plist; } list; struct { heaptuple* pheap; tuple* ptuple; } tuple; struct { heapset* pheap; set* pset; } set; struct { heapdict* pheap; dict* pdict; } dict; } heap;//8 bytes union {//for const built-in type, save its data, 8 bytes sint1 si1; char c; //char uint1 ui1; uchar uc; sint2 si2; short s; //short uint2 ui2; ushort us; sint4 si4; int i; //int uint4 ui4; uint ui; sint8 si8; slong l; //long long uint8 ui8; ulong ul; real4 r4; float f; //float real8 r8; double d; //double } builtin;//8 bytes struct {//fot fast assignment uint low4, high4; } dwords; struct {//fot fast assignment ulong all; } dwords64; struct {//fot fast assignment slong all; } dwords64signed; } data;//8 bytes union { struct { //first byte, main obj type bool stack:1;//is it a obj in stack bool heap:1;//is it a obj in heap bool builtin:1;//is it a built-in type uchar undef1:5;//tmp no use //second byte, kinds of obj, no matter in stack or heap bool str:1; bool list:1; bool tuple:1; bool set:1; bool dict:1; uchar undef2:3;//tmp no use //third byte, kinds of integer built-in types bool sint1:1; bool uint1:1; bool sint2:1; bool uint2:1; bool sint4:1; bool uint4:1; bool sint8:1; bool uint8:1; //last byte, kinds of float built-in types bool real4:1; bool real8:1; uchar undef4:6;//tmp no use } bits;//hold attributives, 32 attrs in 4 bytes struct { uint types:8, objs:8, ints:8, floats:8; } bytes; struct { uint low:16, high:16; } words; struct { uint all:32; } dwords; } attr;//4 bytes //for fast coding #define macro_declare_ptr_ref_heap_str(...)\ heapstr*& h=__VA_ARGS__ data.heap.str.pheap;\ str*& p=data.heap.str.pstr;\ str& s=*p; #define macro_declare_ptr_ref_stack_str(...)\ str*& p=__VA_ARGS__ data.stack.pstr;\ str& s=*p; #define macro_declare_ptr_ref_heap_list(...)\ heaplist*& h=__VA_ARGS__ data.heap.list.pheap;\ list*& p=__VA_ARGS__ data.heap.list.plist;\ list& l=*p; #define macro_declare_ptr_ref_stack_list(...)\ list*& p=__VA_ARGS__ data.stack.plist;\ list& l=*p; #define macro_declare_ptr_ref_heap_tuple(...)\ heaptuple*& h=__VA_ARGS__ data.heap.tuple.pheap;\ tuple*& p=__VA_ARGS__ data.heap.tuple.ptuple;\ tuple& t=*p; #define macro_declare_ptr_ref_stack_tuple(...)\ tuple*& p=__VA_ARGS__ data.stack.ptuple;\ tuple& t=*p; #define macro_declare_ptr_ref_heap_set(...)\ heapset*& h=__VA_ARGS__ data.heap.set.pheap;\ set*& p=__VA_ARGS__ data.heap.set.pset;\ set& st=*p; #define macro_declare_ptr_ref_stack_set(...)\ set*& p=__VA_ARGS__ data.stack.pset;\ set& st=*p; #define macro_declare_ptr_ref_heap_dict(...)\ heapdict*& h=__VA_ARGS__ data.heap.dict.pheap;\ dict*& p=__VA_ARGS__ data.heap.dict.pdict;\ dict& d=*p; #define macro_declare_ptr_ref_stack_dict(...)\ dict*& p=__VA_ARGS__ data.stack.pdict;\ dict& d=*p; #define macro_declare_me(...) var& me=*this; #define macro_new_var_str(s) var s((char*)0); #define macro_new_var_list(lst) var lst((var*)0, (var*)0); #define macro_new_var_tuple(tpl) var tpl((var*)0, (var*)0, char(0)); #define macro_new_var_set(st) var st((var*)0, (var*)0, int(0)); #define macro_new_var_dict(dct) var dct((var*)0, (var*)0, float(0)); private: //----------------------------------------- utils inline void init_as_undefined() { reset_attr(); reset_data(); } inline void reset_attr() { attr.dwords.all=0; } inline void reset_data() { // data.dwords.low4=data.dwords.high4=0; data.dwords64.all=0; } //set main types #define macro_set_type(func, type)\ inline void func() { \ attr.bytes.types=0; \ attr.bits.type=1; \ } macro_set_type(set_type_stack, stack) macro_set_type(set_type_heap, heap) macro_set_type(set_type_builtin, builtin) #undef macro_set_type //set obj types #define macro_set_obj(func, obj) \ inline void func() { \ attr.bytes.objs=0; \ attr.bits.obj=1; \ } macro_set_obj(set_obj_str, str) macro_set_obj(set_obj_list, list) macro_set_obj(set_obj_tuple, tuple) macro_set_obj(set_obj_set, set) macro_set_obj(set_obj_dict, dict) #undef macro_set_obj //set built-in types #define macro_set_builtin(func, builtin)\ inline void func() { \ attr.words.high=0; \ attr.bits.builtin=1; \ } macro_set_builtin(set_builtin_sint1, sint1) macro_set_builtin(set_builtin_uint1, uint1) macro_set_builtin(set_builtin_sint2, sint2) macro_set_builtin(set_builtin_uint2, uint2) macro_set_builtin(set_builtin_sint4, sint4) macro_set_builtin(set_builtin_uint4, uint4) macro_set_builtin(set_builtin_sint8, sint8) macro_set_builtin(set_builtin_uint8, uint8) macro_set_builtin(set_builtin_real4, real4) macro_set_builtin(set_builtin_real8, real8) #undef macro_set_builtin void init_as_str(const char* r=0) {//init myself as a new str var assert(is_undefined());//this function should only be called by constructors, //each constructor should call init_as_undefined() first set_type_heap(); set_obj_str(); macro_declare_ptr_ref_heap_str(); h=&mmgr.newstr();//new a heapstr, automatically record it in link list codemask(cout<<"in init_as_str increase the heapstr "<<hex<<h<<" refcnt: " <<h->cnt()+1<<"="<<h->cnt()<<"+1"<<endl;) p=h->get();//cache the target ptr, inc the refcnt to 1 if (r!=0) p->assign(r);//assign r to the string }; inline void construct_from_const_cstr(const char* r) {//for a c-style string, convert it to a heapstring init_as_str(r); } void init_as_list(var* begin=0, var* end=0) {//init myself as a new list var assert(is_undefined()); set_type_heap(); set_obj_list(); macro_declare_ptr_ref_heap_list(); h=&mmgr.newlist(); codemask(cout<<"in init_as_list increase the heaplist "<<hex<<h<<" refcnt: " <<h->cnt()+1<<"="<<h->cnt()<<"+1"<<endl;) p=h->get();//cache the target ptr, inc the refcnt to 1 if (begin!=0 AND begin<end) {//init from iterators p->assign(begin, end);//assign } }; void init_as_tuple(var* begin=0, var* end=0) {//init myself as a new tuple var assert(is_undefined()); set_type_heap(); set_obj_tuple(); macro_declare_ptr_ref_heap_tuple(); h=&mmgr.newtuple(); codemask(cout<<"in init_as_tuple increase the heaptuple "<<hex<<h<<" refcnt: " <<h->cnt()+1<<"="<<h->cnt()<<"+1"<<endl;) p=h->get();//cache the target ptr, inc the refcnt to 1 if (begin!=0 AND begin<end) { p->assign(begin, end);//assign } }; void init_as_set(var* begin=0, var* end=0) {//init myself as a new set var assert(is_undefined()); set_type_heap(); set_obj_set(); macro_declare_ptr_ref_heap_set(); h=&mmgr.newset(); codemask(cout<<"in init_as_set increase the heapset "<<hex<<h<<" refcnt: " <<h->cnt()+1<<"="<<h->cnt()<<"+1"<<endl;) p=h->get();//cache the target ptr, inc the refcnt to 1 if (begin!=0 AND begin<end) { p->insert(begin, end);//assign } }; void init_as_dict(var* begin=0, var* end=0) {//init myself as a new dict var assert(is_undefined()); set_type_heap(); set_obj_dict(); macro_declare_ptr_ref_heap_dict(); h=&mmgr.newdict(); codemask(cout<<"in init_as_dict increase the heapdict "<<hex<<h<<" refcnt: " <<h->cnt()+1<<"="<<h->cnt()<<"+1"<<endl;) p=h->get();//cache the target ptr, inc the refcnt to 1 if (end>=begin AND (end-begin)%2==0) {//even key-value pairs for (var* it=begin; it<end; ++it, ++it) { (*p)[*it]=*(it+1);//assign } } else bye(in init_as_dict: you should give me even numbers of vars); }; void init_from_vs(vector<str>& vs) {//init from vector<string> parsed by parser assert(is_undefined()); size_t l=vs.size(); if (l==0) return;//impossible smart_clone_from_another_var(parse_vs_slice(vs, 0, l)); } var parse_vs_slice(vector<str>& vs, size_t begin, size_t end) {//parse from begin, to end of vs size_t l=end-begin, i=begin, e=end, j=e-1, k, m, n; assert(l>0);//at least 1 char t, a, b, x, y; if (l==1) { t=vs[i][0]; if (t=='i') { return var(atoi(vs[i].c_str()+2)); // istringstream iss(vs[i].c_str()+2);//to make it bigger // sint8 sl; // iss>>sl; // return var(sl); } else if (t=='f') { return var(atof(vs[i].c_str()+2)); // istringstream iss(vs[i].c_str()+2); // double db; // iss>>db; // return var(db); } else if (t=='s') { return var(vs[i].c_str()+2); } else assert(false); } else { a=vs[i][0]; b=vs[j][0]; if (a=='[' && b==']') { var lst((var*)0, (var*)0); for(k=i+1; k<e; ++k) { x=vs[k][0]; if (x=='i' || x=='f' || x=='s') lst.append(parse_vs_slice(vs, k, k+1)); else if (x=='[' || x=='(' || x=='<' || x=='{') { stack<char> stk; stk.push(x); m=k; while (! stk.empty()) { ++k; if (k==e) assert(false);//if a legal repr, stk should be empty now t=stk.top(); y=vs[k][0]; if (y=='[' || y=='(' || y=='<' || y=='{') stk.push(y); else if (t=='[' && y==']') stk.pop(); else if (t=='(' && y==')') stk.pop(); else if (t=='<' && y=='>') stk.pop(); else if (t=='{' && y=='}') stk.pop(); else {} //pass } lst.append(parse_vs_slice(vs, m, k+1)); } //strange that it do to run here } return lst; } else if (a=='(' && b==')') { var vtpl((var*)0, (var*)0, char(0)); tuple& tpl=*vtpl.data.heap.tuple.ptuple; for(k=i+1; k<e; ++k) { x=vs[k][0]; if (x=='i' || x=='f' || x=='s') tpl.push_back(parse_vs_slice(vs, k, k+1)); else if (x=='[' || x=='(' || x=='<' || x=='{') { stack<char> stk; stk.push(x); m=k; while (! stk.empty()) { ++k; if (k==e) assert(false);//if a legal repr, stk should be empty now t=stk.top(); y=vs[k][0]; if (y=='[' || y=='(' || y=='<' || y=='{') stk.push(y); else if (t=='[' && y==']') stk.pop(); else if (t=='(' && y==')') stk.pop(); else if (t=='<' && y=='>') stk.pop(); else if (t=='{' && y=='}') stk.pop(); else {} //pass } tpl.push_back(parse_vs_slice(vs, m, k+1)); } //strange that it do to run here } return vtpl; } else if (a=='<' && b=='>') { var vst((var*)0, (var*)0, int(0)); set& st=*vst.data.heap.set.pset; for(k=i+1; k<e; ++k) { x=vs[k][0]; if (x=='i' || x=='f' || x=='s') st.insert(parse_vs_slice(vs, k, k+1)); else if (x=='[' || x=='(' || x=='<' || x=='{') { stack<char> stk; stk.push(x); m=k; while (! stk.empty()) { ++k; if (k==e) assert(false);//if a legal repr, stk should be empty now t=stk.top(); y=vs[k][0]; if (y=='[' || y=='(' || y=='<' || y=='{') stk.push(y); else if (t=='[' && y==']') stk.pop(); else if (t=='(' && y==')') stk.pop(); else if (t=='<' && y=='>') stk.pop(); else if (t=='{' && y=='}') stk.pop(); else {} //pass } st.insert(parse_vs_slice(vs, m, k+1)); } //strange that it do to run here } return vst; } else if (a=='{' && b=='}') { var vdct((var*)0, (var*)0, float(0)); dict& dct=*vdct.data.heap.dict.pdict; for(k=i+1; k<e; ++k) { x=vs[k][0]; if (x=='i' || x=='f' || x=='s') { var key(parse_vs_slice(vs, k, k+1)); ++k; x=vs[k][0]; assert(k<e); if (x=='i' || x=='f' || x=='s') { dct.insert(pair<var, var>(key, parse_vs_slice(vs, k, k+1))); } else if (x=='[' || x=='(' || x=='<' || x=='{') { stack<char> stk; stk.push(x); m=k; while (! stk.empty()) { ++k; if (k==e) assert(false);//if a legal repr, stk should be empty now t=stk.top(); y=vs[k][0]; if (y=='[' || y=='(' || y=='<' || y=='{') stk.push(y); else if (t=='[' && y==']') stk.pop(); else if (t=='(' && y==')') stk.pop(); else if (t=='<' && y=='>') stk.pop(); else if (t=='{' && y=='}') stk.pop(); else {} //pass } dct.insert(pair<var, var>(key, parse_vs_slice(vs, m, k+1))); } //strange that it do to run here } } return vdct; }// else for_in(x, i, j+1, 1) cout<<"debug: vs["<<x<<"]="<<vs[x]<<endl; } return var(); } var& smart_clone_from_another_var(const var& r) {//often used by copy constructions macro_declare_me(); if (this==&r) { msg(why you give me the same address?); return me; } codemask(msg(before smart_clone_from_another_var);peek();/* msg(target is);r.peek(); */) //first check my heap if (is_heap()) { if (is_str()) data.heap.str.pheap->release(); else if (is_list()) data.heap.list.pheap->release(); else if (is_tuple()) data.heap.tuple.pheap->release(); else if (is_set()) data.heap.set.pheap->release(); else if (is_dict()) data.heap.dict.pheap->release(); else bye(in smart_clone_from_another_var: me is in heap but not a object); } //then copy data from you data.dwords64.all=r.data.dwords64.all; attr.dwords.all=r.attr.dwords.all; // memcpy(this, &r, sizeof(var)); //finally check your heap if (is_heap()) { if (is_str()) { codemask(cout<<"in smart_clone_from_another_var increase the heapstr refcnt: " <<data.heap.str.pheap->cnt()+1<<"="<<data.heap.str.pheap->cnt()<<"+1"<<endl;) data.heap.str.pheap->get(); } else if (is_list()) { codemask(cout<<"in smart_clone_from_another_var increase the heaplist refcnt to: " <<data.heap.list.pheap->cnt()+1<<"="<<data.heap.list.pheap->cnt()<<"+1"<<endl;) data.heap.list.pheap->get(); } else if (is_tuple()) { codemask(cout<<"in smart_clone_from_another_var increase the heaptuple refcnt to: " <<data.heap.tuple.pheap->cnt()+1<<"="<<data.heap.tuple.pheap->cnt()<<"+1"<<endl;) data.heap.tuple.pheap->get(); } else if (is_set()) { codemask(cout<<"in smart_clone_from_another_var increase the heapset refcnt to: " <<data.heap.set.pheap->cnt()+1<<"="<<data.heap.set.pheap->cnt()<<"+1"<<endl;) data.heap.set.pheap->get(); } else if (is_dict()) { codemask(cout<<"in smart_clone_from_another_var increase the heapdict refcnt to: " <<data.heap.dict.pheap->cnt()+1<<"="<<data.heap.dict.pheap->cnt()<<"+1"<<endl;) data.heap.dict.pheap->get(); } else bye(in smart_clone_from_another_var: after copy : me is in heap but not a object); } codemask(msg(after smart_clone_from_another_var);peek();) return me; } public://funcs //in member funcions of var, there is no need new var manually, because if forget //to delete it, the obj in heap if it points to , will remain not been deleted //creating a var obj in stack is better, have fun using copy constructors :) //just treat var as an built-in type like int //memory utils void mmclean(){//clean tmp mamory links, remove those whose target is empty mmgr.auto_clean();//call this func for a period of run time will save heap memory } //boolean tests : test bits #define macro_var_boolean_test(func, bit) inline bool func() const { return attr.bits.bit; } macro_var_boolean_test(is_stack, stack) macro_var_boolean_test(is_heap, heap) macro_var_boolean_test(is_builtin, builtin) macro_var_boolean_test(is_str, str) macro_var_boolean_test(is_list, list) macro_var_boolean_test(is_tuple, tuple) macro_var_boolean_test(is_set, set) macro_var_boolean_test(is_dict, dict) macro_var_boolean_test(is_sint1, sint1) macro_var_boolean_test(is_schar, sint1) macro_var_boolean_test(is_uint1, uint1) macro_var_boolean_test(is_uchar, uint1) macro_var_boolean_test(is_sint2, sint2) macro_var_boolean_test(is_sshort, sint2) macro_var_boolean_test(is_uint2, uint2) macro_var_boolean_test(is_ushort, uint2) macro_var_boolean_test(is_sint4, sint4) macro_var_boolean_test(is_sint, sint4) macro_var_boolean_test(is_uint4, uint4) macro_var_boolean_test(is_uint, uint4) macro_var_boolean_test(is_sint8, sint8) macro_var_boolean_test(is_slong, sint8) macro_var_boolean_test(is_uint8, uint8) macro_var_boolean_test(is_ulong, uint8) macro_var_boolean_test(is_real4, real4) macro_var_boolean_test(is_float, real4) macro_var_boolean_test(is_real8, real8) macro_var_boolean_test(is_double, real8) #undef macro_var_boolean_test //more boolen tests inline bool is_undefined() const { return attr.dwords.all==0; } inline bool is_char() const { return is_schar() OR is_uchar(); } inline bool is_short() const { return is_sshort() OR is_ushort(); } inline bool is_int() const { return is_sint() OR is_uint(); } inline bool is_long() const { return is_slong() OR is_ulong(); } inline bool is_sequence() const { return is_str() OR is_list(); } inline bool is_container() const { return is_str() OR is_list() OR is_set() OR is_dict(); } inline bool is_immutable() const { return is_str() OR is_tuple(); } inline bool is_obj() const { // return is_str() OR is_list() OR is_tuple() OR is_set() OR is_dict(); return attr.bytes.objs!=0;//this is much more faster } inline bool is_num() const { return NOT is_obj(); } inline bool is_snum() const { return is_schar() OR is_sshort() OR is_sint() OR is_slong(); } inline bool is_unum() const { return is_uchar() OR is_ushort() OR is_uint() OR is_ulong(); } inline bool is_integer() const { return attr.bytes.ints!=0 AND attr.bytes.floats==0; } inline bool is_decimal() const { return attr.bytes.ints==0 AND attr.bytes.floats!=0; } //default construction var() { init_as_undefined();//must call this in each construct funcs } //construct from another var var(var& r) { dbg(construct form var& r); init_as_undefined(); smart_clone_from_another_var(r); } var(const var& rr) { var& r=const_cast<var&>(rr); dbg(construct form const var& r); init_as_undefined(); smart_clone_from_another_var(r);//TODO: maybe there is some problem in this way } //default destruction ~var() { //check heap if (is_heap()) { if (is_str()) { macro_declare_ptr_ref_heap_str(); codemask(cout<<"in ~var release a heapstr refernce, "<<hex<<h<<" -> "<<hex<<p<<" refcnt: " <<h->cnt()<<"-1="<<h->cnt()-1<<endl;) h->release(); } else if (is_list()) { macro_declare_ptr_ref_heap_list(); codemask(cout<<"in ~var release a heaplist refernce, "<<hex<<h<<" -> "<<hex<<p<<" refcnt: " <<h->cnt()<<"-1="<<h->cnt()-1<<endl;) h->release(); } else if (is_tuple()) { macro_declare_ptr_ref_heap_tuple(); codemask(cout<<"in ~var release a heaptuple refernce, "<<hex<<h<<" -> "<<hex<<p<<" refcnt: " <<h->cnt()<<"-1="<<h->cnt()-1<<endl;) h->release(); } else if (is_set()) { macro_declare_ptr_ref_heap_set(); codemask(cout<<"in ~var release a heapset refernce, "<<hex<<h<<" -> "<<hex<<p<<" refcnt: " <<h->cnt()<<"-1="<<h->cnt()-1<<endl;) h->release(); } else if (is_dict()) { macro_declare_ptr_ref_heap_dict(); codemask(cout<<"in ~var release a heapdict refernce, "<<hex<<h<<" -> "<<hex<<p<<" refcnt: " <<h->cnt()<<"-1="<<h->cnt()-1<<endl;) h->release(); } else { msg(there is some problem in the var: now dump:); peek(); assert(false); } } } //constructions from built-in type #define macro_construct_from_builtin_type(sint1, set_builtin_sint1, si1, schar)\ var(sint1& r) {\ dbg(sint1);\ init_as_undefined();\ set_type_builtin();\ set_builtin_sint1();\ data.builtin.si1=r;\ }\ var(const sint1& r) {\ dbg(const sint1);\ init_as_undefined();\ set_type_builtin();\ set_builtin_sint1();\ data.builtin.si1=r;\ }\ inline sint1& schar() {\ return data.builtin.si1;\ }\ inline const sint1& schar() const {\ return data.builtin.si1;\ } macro_construct_from_builtin_type(sint1, set_builtin_sint1, si1, schar) macro_construct_from_builtin_type(uint1, set_builtin_uint1, ui1, uchar) macro_construct_from_builtin_type(sint2, set_builtin_sint2, si2, sshort) macro_construct_from_builtin_type(uint2, set_builtin_uint2, ui2, ushort) macro_construct_from_builtin_type(sint4, set_builtin_sint4, si4, sint) macro_construct_from_builtin_type(uint4, set_builtin_uint4, ui4, uint) macro_construct_from_builtin_type(sint8, set_builtin_sint8, si8, slong) macro_construct_from_builtin_type(uint8, set_builtin_uint8, ui8, ulong) macro_construct_from_builtin_type(real4, set_builtin_real4, r4, flt) macro_construct_from_builtin_type(real8, set_builtin_real8, r8, dbl) #undef macro_construct_from_builtin_type //now comes constructions for strings from a stack object //------------------------ for strings //deal with ref and ptr to an exist string object and ptr to a char (C-style string) //usage examples: // string s; // var v=s; var v(s); // var w=&s; var w(&s); // w=s; w= // char *p="abc"; char p[10]="abc"; // var s=p; var s(p); // cout<<s.str(); //important notes: // will not work with temp object : for example var s=string("tmp"); // because string("tmp") is destructed when calling var(string &r) // assignment of a tmp obj will not working, var c; c=string(tmp); // but string s("tmp"); var c; c=s; works fine // because c=s fist construct a tmp var obj string(s), then copy construct it to c var(string& r) {//assume that string is in stack, do never use var(*(new string())) dbg(string &);//or var s=string() init_as_undefined(); set_type_stack(); set_obj_str(); data.stack.pstr=&r; } //now comes constructions for strings , save in a heap object var(const string& r) {//for const, copy construct it in heap dbg(const string &); init_as_undefined(); construct_from_const_cstr(r.c_str()); } var(char* r) {//special, from a c-style string codemask(cout<<"creating a new str var from char*: "<<(r!=0?r:"NULL")<<" : "<<this<<endl;) init_as_undefined(); construct_from_const_cstr(r); } var(const char* r) {//special, from a const c-style string codemask(cout<<"creating a new str var from const char*: "<<(r!=0?r:"NULL")<<" : "<<this<<endl;) init_as_undefined(); construct_from_const_cstr(r); } var(const char* begin, const char* end) {//for str, iterators msg(init str from char* begin and char* end); init_as_undefined(); str s(begin, end); init_as_str(s.c_str()); } //now comes constructions for list from a stack object var(list& r) { msg(construct from a list& r); init_as_undefined(); set_type_stack(); set_obj_list(); data.stack.plist=&r; } //now comes constructions for list, save in a heap object var(var* begin, var* end) {//for list, iterators msg(init list from var* begin and var* end); init_as_undefined(); init_as_list(begin, end); } //now comes constructions for tuple from a stack object var(tuple& r) { msg(construct from a tuple& r); init_as_undefined(); set_type_stack(); set_obj_tuple(); data.stack.ptuple=&r; } //now comes constructions for tuple, save in a heap object var(var a, var b) {//for tuple, 2 vars msg(init tuple with 2 vars); init_as_undefined(); var tmp[]={a, b}; init_as_tuple(tmp, tmp+2); } var(var a, var b, var c) {//for tuple, 3 vars msg(init tuple with 3 vars); init_as_undefined(); var tmp[]={a, b, c}; init_as_tuple(tmp, tmp+3); } var(var a, var b, var c, var d) {//for tuple, 4 vars msg(init tuple with 4 vars); init_as_undefined(); var tmp[]={a, b, c, d}; init_as_tuple(tmp, tmp+4); } var(var a, var b, var c, var d, var e) {//for tuple, 5 vars msg(init tuple with 5 vars); init_as_undefined(); var tmp[]={a, b, c, d, e}; init_as_tuple(tmp, tmp+5); } var(var a, var b, var c, var d, var e, var f) {//for tuple, 6 vars msg(init tuple with 6 vars); init_as_undefined(); var tmp[]={a, b, c, d, e, f}; init_as_tuple(tmp, tmp+6); } var(var a, var b, var c, var d, var e, var f, var g) {//for tuple, 7 vars msg(init tuple with 7 vars); init_as_undefined(); var tmp[]={a, b, c, d, e, f, g}; init_as_tuple(tmp, tmp+7); } var(var a, var b, var c, var d, var e, var f, var g, var h) {//for tuple, 8 vars msg(init tuple with 8 vars); init_as_undefined(); var tmp[]={a, b, c, d, e, f, g, h}; init_as_tuple(tmp, tmp+8); } var(var* begin, var* end, char flag) {//for tuple from iterators, any char is flag msg(init tuple with iterator var* begin and var* end); init_as_undefined(); init_as_tuple(begin, end); } //now comes constructions for set from a stack object var(set& r) { msg(construct from a set& r); init_as_undefined(); set_type_stack(); set_obj_set(); data.stack.pset=&r; } //now comes constructions for set, save in a heap object var(var* begin, var* end, int) {//last int is a type flag to tell this is going to init as a set msg(construct a set in heap from var * iterators begin and end); init_as_undefined(); init_as_set(begin, end); } //now comes constructions for dict from a stack object var(dict& r) { msg(construct from a dict& r); init_as_undefined(); set_type_stack(); set_obj_dict(); data.stack.pdict=&r; } //now comes constructions for dict, save in a heap object var(var* begin, var* end, float) {//last float is a type flag to tell this is going to init as a dict msg(construct a dict in heap from var * iterators begin and end); init_as_undefined(); init_as_dict(begin, end); } //getters for str string tostr() {//get a copy if (is_str()) { if (is_stack()) return *data.stack.pstr; if (is_heap()) return *data.heap.str.pstr; }//TODO: convert non-string to string return "<in tostr: not a string>"; } string& refstr() {//get the ref if (is_str()) { if (is_stack()) return *data.stack.pstr; if (is_heap()) return *data.heap.str.pstr; } else bye(refstr: not a string : cannot get ref); return *data.stack.pstr;//for compile successfully } const char* cstr() const {//design this func just for fast speed, only for str on heap or stack if (is_str()) { if (is_stack()) return (*data.stack.pstr).c_str(); if (is_heap()) return (*data.heap.str.pstr).c_str(); } return "<in cstr: this var seems not a string>"; } //getters for list list tolist() const {//get a copy if (is_list()) { if (is_stack()) return *data.stack.plist; if (is_heap()) return *data.heap.list.plist; } else bye(tolist: not a list : cannot get a copy); return list();//for compile successfully } list& reflist() {//get the ref if (is_list()) { if (is_stack()) return *data.stack.plist; if (is_heap()) return *data.heap.list.plist; } else bye(reflist: not a list : cannot get ref); return *data.stack.plist;//for compile successfully } //getters for tuple tuple totuple() const {//get a copy if (is_tuple()) { if (is_stack()) return *data.stack.ptuple; if (is_heap()) return *data.heap.tuple.ptuple; } else bye(totuple: not a tuple : cannot get copy); return tuple(); } tuple& reftuple() {//get the ref if (is_tuple()) { if (is_stack()) return *data.stack.ptuple; if (is_heap()) return *data.heap.tuple.ptuple; } else bye(reftuple: not a tuple : cannot get ref); return *data.stack.ptuple;//for compile successfully } //getters for set set toset() const {//get a copy if (is_set()) { if (is_stack()) return *data.stack.pset; if (is_heap()) return *data.heap.set.pset; } else bye(toset: not a set : cannot get copy); return set(); } set& refset() {//get the ref if (is_set()) { if (is_stack()) return *data.stack.pset; if (is_heap()) return *data.heap.set.pset; } else bye(refset: not a set : cannot get ref); return *data.stack.pset;//for compile successfully } //getters for dict dict todict() const {//get a copy if (is_dict()) { if (is_stack()) return *data.stack.pdict; if (is_heap()) return *data.heap.dict.pdict; } else bye(todict: not a dict : cannot get copy); return dict(); } dict& refdict() {//get the ref if (is_dict()) { if (is_stack()) return *data.stack.pdict; if (is_heap()) return *data.heap.dict.pdict; } else bye(refdict: not a dict : cannot get ref); return *data.stack.pdict;//for compile successfully } //now is the funcs that let var change its original type to a new one var& aslist() {//change itself to a list //if it is a list before, nothing to do macro_declare_me(); if (is_list()) return me; else { //TODO return me; } } var& asstr() {//change itself to a str macro_declare_me(); if (is_str()) return me; else { //TODO return me; } } var& astuple() {//change itself to a str macro_declare_me(); if (is_tuple()) return me; else { //TODO return me; } } var& asset() {//change itself to a str macro_declare_me(); if (is_set()) return me; else { //TODO return me; } } var& asdict() {//change itself to a str macro_declare_me(); if (is_dict()) return me; else { //TODO return me; } } //now comes the copy constructions var& operator =(var& r) {//for copy construction //if r points to a heap obj, share it //no need to init here msg(in var assignment: now begin clone form var& r); return smart_clone_from_another_var(r); } var& operator =(const var& r) {//for copy construction //if r points to a heap obj, share it //no need to init here msg(in var assignment: now begin clone form var& r); return smart_clone_from_another_var(r); } #define macro_copy_construct_from_other_type(type)\ var& operator =(type r) {\ msg(assignment form type r: about to create tmp var);\ var tmp(r);\ return smart_clone_from_another_var(tmp);\ }\ var& operator =(const type r) {\ msg(assignment form type r: about to create tmp var);\ var tmp(r);\ return smart_clone_from_another_var(tmp);\ } macro_copy_construct_from_other_type(char*) //for c-string macro_copy_construct_from_other_type(string&) //for string macro_copy_construct_from_other_type(sint1&) macro_copy_construct_from_other_type(uint1&) macro_copy_construct_from_other_type(sint2&) macro_copy_construct_from_other_type(uint2&) macro_copy_construct_from_other_type(sint4&) macro_copy_construct_from_other_type(uint4&) macro_copy_construct_from_other_type(sint8&) macro_copy_construct_from_other_type(uint8&) macro_copy_construct_from_other_type(real4&) macro_copy_construct_from_other_type(real8&) //TODO: for list, tuple , dict #undef macro_copy_construct_from_other_type //operators < > == <= >= != #define macro_operator_compare(op)\ bool operator op (const var& r) const {\ const var& a=*this, &b=r;\ if (a.is_builtin() AND b.is_builtin()) {\ if (a.is_snum() AND b.is_snum()) return a.data.dwords64signed.all op b.data.dwords64signed.all;\ else if (a.is_unum() AND b.is_unum()) return a.data.dwords64.all op b.data.dwords64.all;\ else if (a.is_snum() AND b.is_unum()) return a.data.dwords64signed.all op b.data.dwords64.all;\ else if (a.is_unum() AND b.is_snum()) return a.data.dwords64.all op b.data.dwords64signed.all;\ else if (a.is_float() AND b.is_float()) return a.data.builtin.f op b.data.builtin.f;\ else if (a.is_double() AND b.is_double()) return a.data.builtin.d op b.data.builtin.d;\ else if (a.is_float() AND b.is_double()) return a.data.builtin.f op b.data.builtin.d;\ else if (a.is_double() AND b.is_float()) return a.data.builtin.d op b.data.builtin.f;\ else return &a op &b;\ } else if (a.is_str() AND b.is_str()) {\ if (a.is_heap() AND b.is_heap()) return (*a.data.heap.str.pstr) op (*b.data.heap.str.pstr);\ else if (a.is_stack() AND b.is_stack()) return (*a.data.stack.pstr) op (*b.data.stack.pstr);\ else if (a.is_heap() AND b.is_stack()) return (*a.data.heap.str.pstr) op (*b.data.stack.pstr);\ else if (a.is_stack() AND b.is_heap()) return (*a.data.stack.pstr) op (*b.data.heap.str.pstr);\ else bye(in operator op: impossible here);return false;\ } else return &a op &b;\ } macro_operator_compare(<) macro_operator_compare(>) macro_operator_compare(==) macro_operator_compare(!=) macro_operator_compare(<=) macro_operator_compare(>=) #undef macro_operator_compare //input and output operators friend istream& operator>>(istream& in, var& v) { if (v.is_undefined()) { return in;//don't know what to input } else if (v.is_str()) { if (v.is_heap()) in>>(*v.data.heap.str.pstr); else if (v.is_stack()) in>>(*v.data.stack.pstr); else bye(in operator>>: is str but not heap and stack); } else if (v.is_num()) { if (v.is_schar()) in>>v.schar(); else if (v.is_uchar()) in>>v.uchar(); else if (v.is_sshort()) in>>v.sshort(); else if (v.is_ushort()) in>>v.ushort(); else if (v.is_sint()) in>>v.sint(); else if (v.is_uint()) in>>v.uint(); else if (v.is_slong()) in>>v.slong(); else if (v.is_ulong()) in>>v.ulong(); else if (v.is_float()) in>>v.flt(); else if (v.is_double()) in>>v.dbl(); } else if (v.is_list()) { return in;//"TODO"; } else if (v.is_tuple()) { return in;//"TODO"; } else if (v.is_set()) { return in;//"TODO"; } else if (v.is_dict()) { return in;//"TODO"; } else bye(in operator>>: impossible run here); return in; } string repr(bool quote=false) {//convert var to a string representation ostringstream oss; const char *qt=(quote?"'":"");//if quote is true, quote for strings if (is_undefined()) { oss<<qt<<"undefined"<<qt; } else if (is_str()) { oss<<qt<<cstr()<<qt; } else if (is_num()) {//the compare sequence is based on the using frequency of num type if (is_sint()) oss<<sint(); else if (is_schar()) oss<<qt<<schar()<<qt;//TODO else if (is_float()) oss<<flt(); else if (is_double()) oss<<dbl(); else if (is_slong()) oss<<slong(); else if (is_sshort()) oss<<sshort(); else if (is_uint()) oss<<uint(); else if (is_uchar()) oss<<qt<<uchar()<<qt;//TODO else if (is_ulong()) oss<<ulong(); else if (is_ushort()) oss<<ushort(); } else if (is_list()) { if (is_stack()) { macro_declare_ptr_ref_stack_list(); oss<<'['; size_t length=l.size(); for_tn(size_t, i, length) { oss<<l[i].repr(true); if (i!=length-1) oss<<", "; } oss<<']'; } else { macro_declare_ptr_ref_heap_list(); oss<<'['; size_t length=l.size(); for_tn(size_t, i, length) { oss<<l[i].repr(true); if (i!=length-1) oss<<", "; } oss<<']'; } } else if (is_tuple()) { if (is_stack()) { macro_declare_ptr_ref_stack_tuple(); oss<<'('; size_t length=t.size(), i=0; for_iter(it, tuple, t) { oss<<const_cast<var&>(*it).repr(true); if (i++!=length-1) oss<<", "; } oss<<')'; } else { macro_declare_ptr_ref_heap_tuple(); oss<<'('; size_t length=t.size(), i=0; for_iter(it, tuple, t) { oss<<const_cast<var&>(*it).repr(true); if (i++!=length-1) oss<<", "; } oss<<')'; } } else if (is_set()) { if (is_stack()) { macro_declare_ptr_ref_stack_set(); oss<<'<'; size_t length=st.size(), i=0; for_iter(it, set, st) { oss<<const_cast<var&>(*it).repr(true); if (i++!=length-1) oss<<", "; } oss<<'>'; } else { macro_declare_ptr_ref_heap_set(); oss<<'<'; size_t length=st.size(), i=0; for_iter(it, set, st) { oss<<const_cast<var&>(*it).repr(true); if (i++!=length-1) oss<<", "; } oss<<'>'; } } else if (is_dict()) { if (is_stack()) { macro_declare_ptr_ref_stack_dict(); oss<<'{'; size_t length=d.size(), i=0; for_iter(it, dict, d) { oss<<const_cast<var&>(it->first).repr(true)<<':'<<(*it).second.repr(true); if (i++!=length-1) oss<<", "; } oss<<'}'; } else { macro_declare_ptr_ref_heap_dict(); oss<<'{'; size_t length=d.size(), i=0; for_iter(it, dict, d) { oss<<const_cast<var&>(it->first).repr(true)<<':'<<(*it).second.repr(true); if (i++!=length-1) oss<<", "; } oss<<'}'; } } else { oss<<"unknown";//impossible running here } return oss.str(); } friend ostream& operator<<(ostream& out, var& v) { return out<<v.repr(); } //debug utils var& peek(ostream& out=cout) {//to see what is in memory var& v=*this; out<<"[var @ "<<this<<" data: " <<hex<<data.dwords.low4<<" "<<hex<<data.dwords.high4<<" attr: " <<bitset<8>(attr.bytes.types)<<" "<<bitset<8>(attr.bytes.objs)<<" " <<bitset<8>(attr.bytes.ints)<<" "<<bitset<8>(attr.bytes.floats) <<"]"<<endl; return v; } var& print(ostream& out=cout, bool newline=true) {//simply print its repr var& v=*this; out<<v.repr(); if (newline) out<<endl; return v; } var& dump(ostream& out=cout, bool newline=false) {//formatted print its json var& v=*this; out<<tojson(); if (newline) out<<endl; return v; } string tojson() {//convert to formatted json return parser(repr()).dumps(); } // methods for sequences var split(const var& by) { assert(is_sequence());//use the split tamplate function // macro_declare_me(); // macro_declare_ptr_ref_heap_list(); var lst((var*)0, (var*)0); return lst; } var& join(var& by) {//a join(b) or b.join(a) //string.join(list) //or list.join(string) assert(is_sequence()); macro_declare_me(); return me; } // list opertions var& append(const var& elem) {//append a elem to the end of a list assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); l.push_back(elem); return me; } var& extend(var& rlist) {//extend a list with another list assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); l.insert(l.end(), rlist.reflist().begin(), rlist.reflist().end()); return me; } var& push(const var& elem) {//push a elem to the front of a list assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); l.insert(l.begin(), elem); return me; } var& pop(var* hold=0) {//pop a elem from the front of a list assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); if (l.size()>0) { if (hold) *hold=l.front(); l.erase(l.begin()); } return me; } var& sort() { assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); std::sort(l.begin(), l.end()/* , std::less<var>() */); return me; } var& rsort() { assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); std::sort(l.begin(), l.end(), std::greater<var>()); return me; } var& clone(var& from) {//let's clone from another var macro_declare_me();//will cause deep copy return me; } var tosorted() { assert(is_list()); macro_declare_me(); macro_declare_ptr_ref_heap_list(); macro_new_var_list(lst); return lst.clone(me).sort(); } // string replace() {//return a new string, allocate in heap, managed by this ptr // assert(is_sequence()); // string * s=new string; // tmp_string_link // tmp_objects_chain.push_back(s);//tmp_objects_chain will be delete finally when var object destruct // } var replace() { assert(is_str()); } size_t len() { assert(is_sequence()); if (is_str()) return refstr().size(); else if (is_list()) return reflist().size(); else bye(in len: not a sequence); return 0; } //operations for sequence // is sequence var& keys() {//return a list contains the keys of a dict assert(is_dict()); var& me =*this; return me; } var& values() {//return a list contains the values of a dict var& me =*this; return me; } bool haskey(var key) { return false; } void each() {}//for each void foreach() {} // void map(UnaryFunction) { id, val, }//for list void slice() {} void add() {} void dot() {} var begin() { return var(); } var next() { return var(); } bool end() {} class parser {//used for eval a var from a string const char* p; public: friend class var; parser(const string& s): p(s.c_str()) {} parser(const char* s): p(s) {} string tabs(int depth) { string tmp; for_n(i, depth-1) tmp+="\t"; return tmp; } char parse(vector<string>* result=0, bool show=true, ostream* pout=0, string* errmsg=0) {//check the type size_t i=0, l=strlen(p); while (i<l && isspace(p[i]) || iscntrl(p[i])) ++i; if (!strchr("{[<(-+e.0123456789'", p[i])) return 'N';//normal string char t; bool succ=anasys(p, t, result, show, pout, errmsg); if (!succ) { if (t=='n' || t=='s' && result && result->size()==1) {// } else { result->clear();//only get some part of the full results, clear it return '?';//failed } } return t; } bool test(string* errmsg=0) {//test if string s is a legal repr char t; return anasys(p, t, 0, false, 0, errmsg); } string dumps() { ostringstream oss; char t; anasys(p, t, 0, true, &oss, 0); return oss.str(); } char expect(char c, const char*p) { size_t l=strlen(p); for_tn(size_t, i, l) { char m=p[i]; if (m=='n') { if (isdigit(c) || c=='-' || c=='.' || c=='+' || c=='e') return m; } else if (m=='s') {//str if (c=='"' || c=='\'') return m; } else if (m==c) { return m; } } return -1; } string& char2str(string& s, const char& c) { s.clear(); s.push_back(c); return s; } inline string& clear(string& s) { s.clear(); return s; } friend ostream& operator <<(ostream& out, parser& r) { return out<<r.p<<endl; } bool anasys(const char* p, char& type, vector<string>* vs=0, bool show=true, ostream* pout=0, string* errmsg=0) { size_t length=strlen(p), i=0, j=0; stack<char> stk; stk.push('\0'); string tmp; const char *nextexp=0;//next expectations type='?';//record the obj type char c=p[i], t, m, pos='B';//current char and stack top and match //---------- pos can be ------------ //B - at the begin of a obj //E - at the end of a element //K - at the begin of a key, only for dict //M - at the end of a key, only for dict //V - at the begin of a value, only for dict bitset<1000> dictflag;//maxmun layers for_n(i, 1000) dictflag[i]=false; while(! stk.empty()) { t=stk.top(); if (i==length && t=='\0') { stk.pop(); break; } if (i>length) { msg(i got out of range);break; } c=p[i]; if (isspace(c) || iscntrl(c)) { if (t!='s' && t!='n') ++i; continue; } else if (t=='\0') { if (pos=='B') nextexp="{[(<ns"; if (pos=='E') nextexp="\0"; m=expect(c, nextexp); if (m==-1) break; else { if (pos=='B') type=m;//record the very first char as obj type pos='B'; if (m!='n' && m!='s' && show && pout) (*pout)<<tabs(stk.size())<<c<<endl; stk.push(m); if (m!='n' && m!='s' && vs) vs->push_back(char2str(tmp, m)); if (m!='n') ++i; } } else if (t=='s') { j=i; m=p[i-1]; while(j<length && p[j]!=m) ++j; if (j==length) { msg(bad str); break; } if (pos!='V' && show && pout) (*pout)<<tabs(stk.size()-1); tmp=string(p+i, p+j); if (show && pout) (*pout)<<(string("'")+tmp+"'"); if (vs) { ostringstream oss; oss<<'s'/* <<' '<<tmp.size() */<<' '<<tmp; vs->push_back(oss.str()); } stk.pop(); i=j+1; if (stk.top()=='{') { if (dictflag[stk.size()]==false) pos='M'; else pos='E'; } else pos='E'; } else if (t=='n') { j=i; while(j<length && strchr("-.+0123456789e", p[j])) ++j; tmp=string(p+i, p+j); const char* s=tmp.c_str(); if (strchr(s, '.')) { if (pos!='V' && show && pout) (*pout)<<tabs(stk.size()-1); if (show && pout) (*pout)<<atof(s); if (vs) { ostringstream oss; oss<<'f'<<' '<<tmp; vs->push_back(oss.str()); } } else { if (pos!='V' && show && pout) (*pout)<<tabs(stk.size()-1); if (show && pout) (*pout)<<atoi(s); if (vs) { ostringstream oss; oss<<'i'<<' '<<tmp; vs->push_back(oss.str()); } } stk.pop(); i=j; if (stk.top()=='{') { if (dictflag[stk.size()]==false) pos='M'; else pos='E'; } else pos='E'; } else if (t=='[') { if (pos=='B') nextexp="{[(<ns]"; if (pos=='E') nextexp=",]"; m=expect(c, nextexp); if (m==-1) break; else if (m==']') { stk.pop(); if (show && pout) (*pout)<<endl<<tabs(stk.size())<<c; if (vs) vs->push_back(char2str(tmp, m)); pos='E'; ++i; } else if (m==',') { pos='B'; if (show && pout) (*pout)<<c<<endl; ++i; } else if (m=='{') { if (vs) vs->push_back(char2str(tmp, m)); if (pos!='V') if (show && pout) (*pout)<<tabs(stk.size()); if (show && pout) (*pout)<<c<<endl; pos='K'; stk.push(m); ++i; } else { if (m!='n' && m!='s') { if (show && pout) (*pout)<<tabs(stk.size())<<c<<endl; pos='B'; if (vs) vs->push_back(char2str(tmp, m)); } stk.push(m); if (m!='n') ++i; } } else if (t=='(') { if (pos=='B') nextexp="{[(<ns)"; if (pos=='E') nextexp=",)"; m=expect(c, nextexp); if (m==-1) break; else if (m==')') { stk.pop(); if (show && pout) (*pout)<<endl<<tabs(stk.size())<<c; if (vs) vs->push_back(char2str(tmp, m)); pos='E'; ++i; } else if (m==',') { pos='B'; if (show && pout) (*pout)<<c<<endl; ++i; } else if (m=='{') { if (vs) vs->push_back(char2str(tmp, m)); if (pos!='V') if (show && pout) (*pout)<<tabs(stk.size()); if (show && pout) (*pout)<<c<<endl; pos='K'; stk.push(m); ++i; } else { if (m!='n' && m!='s') { if (show && pout) (*pout)<<tabs(stk.size())<<c<<endl; pos='B'; if (vs) vs->push_back(char2str(tmp, m)); } stk.push(m); if (m!='n') ++i; } } else if (t=='<') { if (pos=='B') nextexp="{[(<ns>"; if (pos=='E') nextexp=",>"; m=expect(c, nextexp); if (m==-1) break; else if (m=='>') { stk.pop(); if (show && pout) (*pout)<<endl<<tabs(stk.size())<<c; if (vs) vs->push_back(char2str(tmp, m)); pos='E'; ++i; } else if (m==',') { pos='B'; if (show && pout) (*pout)<<c<<endl; ++i; } else if (m=='{') { if (vs) vs->push_back(char2str(tmp, m)); if (pos!='V') if (show && pout) (*pout)<<tabs(stk.size()); if (show && pout) (*pout)<<c<<endl; pos='K'; stk.push(m); ++i; } else { if (m!='n' && m!='s') { if (show && pout) (*pout)<<tabs(stk.size())<<c<<endl; pos='B'; if (vs) vs->push_back(char2str(tmp, m)); } stk.push(m); if (m!='n') ++i; } } else if (t=='{') { if (pos=='K') nextexp="ns}";//assume the key should obly be numbers and strings if (pos=='M') nextexp=":"; if (pos=='V') nextexp="{[(<ns";//value can be any thing if (pos=='E') nextexp=",}"; m=expect(c, nextexp); if (m==-1) break; else if (m=='}') { dictflag[stk.size()]=false; stk.pop(); if (show && pout) (*pout)<<endl<<tabs(stk.size())<<c; if (vs) vs->push_back(char2str(tmp, m)); pos='E'; ++i; } else if (m==',') { dictflag[stk.size()]=false; pos='K'; if (show && pout) (*pout)<<c<<endl; ++i; } else if (m=='{') { if (vs) vs->push_back(char2str(tmp, m)); if (pos!='V') if (show && pout) (*pout)<<tabs(stk.size()); if (show && pout) (*pout)<<c<<endl; pos='K'; stk.push(m); ++i; } else if (m==':') { dictflag[stk.size()]=true; pos='V'; if (show && pout) (*pout)<<c; ++i; } else { if (m!='n' && m!='s') { if (!dictflag[stk.size()]) if (show && pout) (*pout)<<tabs(stk.size()); if (show && pout) (*pout)<<c<<endl; pos='B'; if (vs) vs->push_back(char2str(tmp, m)); } stk.push(m); if (m!='n') ++i; } } } if (m==-1 && errmsg) { ostringstream oss; oss<<"expect '"<<(nextexp[0]?nextexp:"\\0")<<"' for 0x"<<hex<<int(t)<<":'"<<t<<'\''; (*errmsg)=oss.str(); } if (show && pout) (*pout)<<endl; return stk.empty(); } }; var(parser r) { init_as_undefined(); dbg(constrct var from parser); vector<string> vs; string errmsg; // char t=r.parse(&vs, true, &cout, &errmsg); char t=r.parse(&vs, false, &cout, &errmsg); // cout<<"type="<<t<<endl; // cout<<"errmsg="<<errmsg<<endl; // cout<<"vs size="<<vs.size()<<endl; // for_iter(it, vector<string>, vs) { // cout<<"vs: "<<*it<<endl; // } if (t=='N') { init_as_str(r.p); } else if (t=='?') { init_as_str(r.p); } else if (strchr("{[(<ns", t)) { init_from_vs(vs); } else assert(false); } //for ranges var(range r) { vec_int vi=r.to_vec(); init_as_undefined(); init_as_list(); macro_declare_ptr_ref_heap_list(); for_iter(it, vec_int, vi) l.push_back(*it); } //for slices var operator [](const range& r) { } private: //function implementation class function { // var args; }; }; class shit {};//a helper class, its type is usefull, beside that it is useless //useful init functions, often used to get a empty var var str(const char* p=0) { return var(p); } var str(const char* begin, const char* end) { return var(begin, end); } var list(var* begin=0, var* end=0) { return var(begin, end); } var list(var a, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, var v, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, var v, var w, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, var v, var w, var x, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, var v, var w, var x, var y, shit end=shit()) { return var(&a, (var*)&end); } var list(var a, var b, var c, var d, var e, var f, var g, var h, var i, var j, var k, var l, var m, var n, var o, var p, var q, var r, var s, var t, var u, var v, var w, var x, var y, var z, shit end=shit()) { return var(&a, (var*)&end); } var tuple(var a, var b) { return var(a, b); } var tuple(var a, var b, var c) { return var(a, b, c); } var tuple(var a, var b, var c, var d) { return var(a, b, c, d); } var tuple(var a, var b, var c, var d, var e) { return var(a, b, c, d, e); } var tuple(var a, var b, var c, var d, var e, var f) { return var(a, b, c, d, e, f); } var tuple(var a, var b, var c, var d, var e, var f, var g) { return var(a, b, c, d, e, f, g); } var tuple(var a, var b, var c, var d, var e, var f, var g, var h) { return var(a, b, c, d, e, f, g, h); } var set(var* begin=0, var* end=0, int flag=0) { return var(begin, end, flag); } var dict(var* begin=0, var* end=0, float flag=.0) { return var(begin, end, flag); } var sorted(var& v) { return v.tosorted(); } size_t len(var& v) { return v.len(); } string repr(var& v) { return v.repr(); } var eval(const string& s) { return var(var::parser(s)); } var eval(const char* s) { return var(var::parser(s)); } #define VAR(...) eval(#__VA_ARGS__) #define V VAR #define STR(...) var(#__VA_ARGS__) #define S STR #define STRING(...) string(#__VA_ARGS__) #define LIST(...) eval(string("[")+#__VA_ARGS__+"]") #define L LIST #define TUPLE(...) eval(string("(")+#__VA_ARGS__+")") #define T TUPLE #define SET(...) eval(string("<")+#__VA_ARGS__+">") #define ST SET #define DICT(...) eval(string("{")+#__VA_ARGS__+"}") #define D DICT //usage: var a=V([1,2,3]) // var(parser(#expr)) // var("asdasdl") #define R(expr) range(#expr) #undef macro_declare_ptr_ref_heap_str #undef macro_declare_ptr_ref_stack_str #undef macro_declare_ptr_ref_heap_list #undef macro_declare_ptr_ref_stack_list #undef macro_declare_ptr_ref_heap_tuple #undef macro_declare_ptr_ref_stack_tuple #undef macro_declare_ptr_ref_heap_set #undef macro_declare_ptr_ref_stack_set #undef macro_declare_ptr_ref_heap_dict #undef macro_declare_ptr_ref_stack_dict #undef macro_declare_me #endif /* PYPP_HPP_BY_JADESOUL */
[ "wslgb2006@d14da3be-4b66-f277-6519-03205fff3048" ]
wslgb2006@d14da3be-4b66-f277-6519-03205fff3048
0588b3333b1d2849e6ff9a3c52f43f95b4c56c6a
5e996a8411bafea1aa7bb6abd3dd5f52bc5e6cdc
/objetos/proyecto/build-proyecto-Desktop_Qt_5_8_0_MinGW_32bit-Debug/ui_registrarse.h
1857ef37fb3583ee579094e404096aa64f7aa4db
[]
no_license
nialche98/laboratorio
2094d7469dd5db8a0c8382f0ea442712a2945964
d4edaa738ffc5206830d17201f5ccfd02400754d
refs/heads/master
2021-01-17T17:40:47.601987
2017-11-13T00:44:29
2017-11-13T00:44:29
84,130,933
0
0
null
null
null
null
UTF-8
C++
false
false
12,938
h
/******************************************************************************** ** Form generated from reading UI file 'registrarse.ui' ** ** Created by: Qt User Interface Compiler version 5.8.0 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_REGISTRARSE_H #define UI_REGISTRARSE_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QCheckBox> #include <QtWidgets/QDialog> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QPushButton> QT_BEGIN_NAMESPACE class Ui_registrarse { public: QLineEdit *usuario; QLineEdit *usuario_11; QLabel *texto_4; QLineEdit *usuario_8; QPushButton *b_registrarse; QLineEdit *usuario_4; QLabel *texto_7; QLabel *label_2; QLabel *texto_10; QLabel *texto_11; QLabel *texto_3; QLabel *label_3; QLineEdit *usuario_6; QLabel *texto; QLineEdit *usuario_3; QLabel *texto_13; QLineEdit *usuario_2; QLineEdit *usuario_12; QLabel *texto_2; QLineEdit *usuario_10; QLabel *texto_6; QLabel *texto_5; QCheckBox *checkBox; QLabel *texto_8; QLineEdit *usuario_13; QLabel *texto_12; QLineEdit *usuario_9; QLineEdit *usuario_5; QLineEdit *usuario_7; QLabel *texto_14; QCheckBox *checkBox_2; QLabel *texto_9; QLabel *label; QLabel *texto_15; QLineEdit *usuario_14; QPushButton *pushButton; void setupUi(QDialog *registrarse) { if (registrarse->objectName().isEmpty()) registrarse->setObjectName(QStringLiteral("registrarse")); registrarse->resize(679, 428); usuario = new QLineEdit(registrarse); usuario->setObjectName(QStringLiteral("usuario")); usuario->setGeometry(QRect(70, 120, 91, 20)); usuario_11 = new QLineEdit(registrarse); usuario_11->setObjectName(QStringLiteral("usuario_11")); usuario_11->setGeometry(QRect(250, 320, 91, 20)); texto_4 = new QLabel(registrarse); texto_4->setObjectName(QStringLiteral("texto_4")); texto_4->setGeometry(QRect(20, 190, 61, 20)); texto_4->setTextFormat(Qt::AutoText); texto_4->setWordWrap(false); texto_4->setMargin(0); texto_4->setIndent(-1); usuario_8 = new QLineEdit(registrarse); usuario_8->setObjectName(QStringLiteral("usuario_8")); usuario_8->setGeometry(QRect(250, 360, 251, 20)); b_registrarse = new QPushButton(registrarse); b_registrarse->setObjectName(QStringLiteral("b_registrarse")); b_registrarse->setGeometry(QRect(590, 390, 75, 23)); usuario_4 = new QLineEdit(registrarse); usuario_4->setObjectName(QStringLiteral("usuario_4")); usuario_4->setGeometry(QRect(70, 160, 91, 20)); texto_7 = new QLabel(registrarse); texto_7->setObjectName(QStringLiteral("texto_7")); texto_7->setGeometry(QRect(340, 160, 111, 20)); texto_7->setTextFormat(Qt::AutoText); texto_7->setWordWrap(false); texto_7->setMargin(0); texto_7->setIndent(-1); label_2 = new QLabel(registrarse); label_2->setObjectName(QStringLiteral("label_2")); label_2->setGeometry(QRect(20, 250, 111, 16)); texto_10 = new QLabel(registrarse); texto_10->setObjectName(QStringLiteral("texto_10")); texto_10->setGeometry(QRect(230, 50, 61, 20)); texto_10->setTextFormat(Qt::AutoText); texto_10->setWordWrap(false); texto_10->setMargin(0); texto_10->setIndent(-1); texto_11 = new QLabel(registrarse); texto_11->setObjectName(QStringLiteral("texto_11")); texto_11->setGeometry(QRect(200, 320, 51, 20)); texto_11->setTextFormat(Qt::AutoText); texto_11->setWordWrap(false); texto_11->setMargin(0); texto_11->setIndent(-1); texto_3 = new QLabel(registrarse); texto_3->setObjectName(QStringLiteral("texto_3")); texto_3->setGeometry(QRect(170, 120, 41, 20)); texto_3->setTextFormat(Qt::AutoText); texto_3->setWordWrap(false); texto_3->setMargin(0); texto_3->setIndent(-1); label_3 = new QLabel(registrarse); label_3->setObjectName(QStringLiteral("label_3")); label_3->setGeometry(QRect(20, 20, 111, 16)); usuario_6 = new QLineEdit(registrarse); usuario_6->setObjectName(QStringLiteral("usuario_6")); usuario_6->setGeometry(QRect(430, 120, 201, 20)); texto = new QLabel(registrarse); texto->setObjectName(QStringLiteral("texto")); texto->setGeometry(QRect(20, 120, 41, 20)); texto->setTextFormat(Qt::AutoText); texto->setWordWrap(false); texto->setMargin(0); texto->setIndent(-1); usuario_3 = new QLineEdit(registrarse); usuario_3->setObjectName(QStringLiteral("usuario_3")); usuario_3->setGeometry(QRect(220, 120, 91, 20)); texto_13 = new QLabel(registrarse); texto_13->setObjectName(QStringLiteral("texto_13")); texto_13->setGeometry(QRect(20, 360, 61, 20)); texto_13->setTextFormat(Qt::AutoText); texto_13->setWordWrap(false); texto_13->setMargin(0); texto_13->setIndent(-1); usuario_2 = new QLineEdit(registrarse); usuario_2->setObjectName(QStringLiteral("usuario_2")); usuario_2->setGeometry(QRect(70, 280, 221, 20)); usuario_12 = new QLineEdit(registrarse); usuario_12->setObjectName(QStringLiteral("usuario_12")); usuario_12->setGeometry(QRect(80, 320, 101, 20)); texto_2 = new QLabel(registrarse); texto_2->setObjectName(QStringLiteral("texto_2")); texto_2->setGeometry(QRect(20, 160, 61, 20)); texto_2->setTextFormat(Qt::AutoText); texto_2->setWordWrap(false); texto_2->setMargin(0); texto_2->setIndent(-1); usuario_10 = new QLineEdit(registrarse); usuario_10->setObjectName(QStringLiteral("usuario_10")); usuario_10->setGeometry(QRect(480, 50, 91, 20)); texto_6 = new QLabel(registrarse); texto_6->setObjectName(QStringLiteral("texto_6")); texto_6->setGeometry(QRect(330, 120, 101, 20)); texto_6->setTextFormat(Qt::AutoText); texto_6->setWordWrap(false); texto_6->setMargin(0); texto_6->setIndent(-1); texto_5 = new QLabel(registrarse); texto_5->setObjectName(QStringLiteral("texto_5")); texto_5->setGeometry(QRect(170, 160, 61, 20)); texto_5->setTextFormat(Qt::AutoText); texto_5->setWordWrap(false); texto_5->setMargin(0); texto_5->setIndent(-1); checkBox = new QCheckBox(registrarse); checkBox->setObjectName(QStringLiteral("checkBox")); checkBox->setGeometry(QRect(70, 200, 70, 17)); texto_8 = new QLabel(registrarse); texto_8->setObjectName(QStringLiteral("texto_8")); texto_8->setGeometry(QRect(20, 320, 61, 20)); texto_8->setTextFormat(Qt::AutoText); texto_8->setWordWrap(false); texto_8->setMargin(0); texto_8->setIndent(-1); usuario_13 = new QLineEdit(registrarse); usuario_13->setObjectName(QStringLiteral("usuario_13")); usuario_13->setGeometry(QRect(290, 50, 91, 20)); texto_12 = new QLabel(registrarse); texto_12->setObjectName(QStringLiteral("texto_12")); texto_12->setGeometry(QRect(200, 360, 61, 20)); texto_12->setTextFormat(Qt::AutoText); texto_12->setWordWrap(false); texto_12->setMargin(0); texto_12->setIndent(-1); usuario_9 = new QLineEdit(registrarse); usuario_9->setObjectName(QStringLiteral("usuario_9")); usuario_9->setGeometry(QRect(80, 360, 101, 20)); usuario_5 = new QLineEdit(registrarse); usuario_5->setObjectName(QStringLiteral("usuario_5")); usuario_5->setGeometry(QRect(230, 160, 91, 20)); usuario_7 = new QLineEdit(registrarse); usuario_7->setObjectName(QStringLiteral("usuario_7")); usuario_7->setGeometry(QRect(450, 160, 91, 20)); texto_14 = new QLabel(registrarse); texto_14->setObjectName(QStringLiteral("texto_14")); texto_14->setGeometry(QRect(20, 50, 101, 20)); texto_14->setTextFormat(Qt::AutoText); texto_14->setWordWrap(false); texto_14->setMargin(0); texto_14->setIndent(-1); checkBox_2 = new QCheckBox(registrarse); checkBox_2->setObjectName(QStringLiteral("checkBox_2")); checkBox_2->setGeometry(QRect(160, 200, 70, 17)); texto_9 = new QLabel(registrarse); texto_9->setObjectName(QStringLiteral("texto_9")); texto_9->setGeometry(QRect(20, 280, 51, 20)); texto_9->setTextFormat(Qt::AutoText); texto_9->setWordWrap(false); texto_9->setMargin(0); texto_9->setIndent(-1); label = new QLabel(registrarse); label->setObjectName(QStringLiteral("label")); label->setGeometry(QRect(20, 100, 111, 16)); texto_15 = new QLabel(registrarse); texto_15->setObjectName(QStringLiteral("texto_15")); texto_15->setGeometry(QRect(400, 50, 101, 20)); texto_15->setTextFormat(Qt::AutoText); texto_15->setWordWrap(false); texto_15->setMargin(0); texto_15->setIndent(-1); usuario_14 = new QLineEdit(registrarse); usuario_14->setObjectName(QStringLiteral("usuario_14")); usuario_14->setGeometry(QRect(120, 50, 91, 20)); pushButton = new QPushButton(registrarse); pushButton->setObjectName(QStringLiteral("pushButton")); pushButton->setGeometry(QRect(500, 390, 75, 23)); retranslateUi(registrarse); QMetaObject::connectSlotsByName(registrarse); } // setupUi void retranslateUi(QDialog *registrarse) { registrarse->setWindowTitle(QApplication::translate("registrarse", "Dialog", Q_NULLPTR)); usuario->setText(QString()); usuario_11->setText(QString()); texto_4->setText(QApplication::translate("registrarse", "Sexo:", Q_NULLPTR)); usuario_8->setText(QString()); b_registrarse->setText(QApplication::translate("registrarse", "Terminar", Q_NULLPTR)); usuario_4->setText(QString()); texto_7->setText(QApplication::translate("registrarse", "# targeta de credito:", Q_NULLPTR)); label_2->setText(QApplication::translate("registrarse", "Datos de contacto", Q_NULLPTR)); texto_10->setText(QApplication::translate("registrarse", "contrase\303\261a:", Q_NULLPTR)); texto_11->setText(QApplication::translate("registrarse", "#celular:", Q_NULLPTR)); texto_3->setText(QApplication::translate("registrarse", "Apellido:", Q_NULLPTR)); label_3->setText(QApplication::translate("registrarse", "Usuario", Q_NULLPTR)); usuario_6->setText(QString()); texto->setText(QApplication::translate("registrarse", "Nombre:", Q_NULLPTR)); usuario_3->setText(QString()); texto_13->setText(QApplication::translate("registrarse", "#Cedula:", Q_NULLPTR)); usuario_2->setText(QString()); usuario_12->setText(QString()); texto_2->setText(QApplication::translate("registrarse", "#Cedula:", Q_NULLPTR)); usuario_10->setText(QString()); texto_6->setText(QApplication::translate("registrarse", "Fecha nacimiento:", Q_NULLPTR)); texto_5->setText(QApplication::translate("registrarse", "Estado civil:", Q_NULLPTR)); checkBox->setText(QApplication::translate("registrarse", "Femenino", Q_NULLPTR)); texto_8->setText(QApplication::translate("registrarse", "#Telefono:", Q_NULLPTR)); usuario_13->setText(QString()); texto_12->setText(QApplication::translate("registrarse", "Correo:", Q_NULLPTR)); usuario_9->setText(QString()); usuario_5->setText(QString()); usuario_7->setText(QString()); texto_14->setText(QApplication::translate("registrarse", "Nombre de usuario:", Q_NULLPTR)); checkBox_2->setText(QApplication::translate("registrarse", "Masculino", Q_NULLPTR)); texto_9->setText(QApplication::translate("registrarse", "Direccion:", Q_NULLPTR)); label->setText(QApplication::translate("registrarse", "Datos personales", Q_NULLPTR)); texto_15->setText(QApplication::translate("registrarse", "palabra secreta:", Q_NULLPTR)); usuario_14->setText(QString()); pushButton->setText(QApplication::translate("registrarse", "Volver", Q_NULLPTR)); } // retranslateUi }; namespace Ui { class registrarse: public Ui_registrarse {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_REGISTRARSE_H
[ "8916430@javerianacali.edu.co" ]
8916430@javerianacali.edu.co
5a06774266b62d8023737c19638d6888cf9e6fac
aa7937baaae5466d40c485a31ecd222a8fe03c57
/include/KLibrary3D.inl
6743a223e74af5ecbc738bbdb4ebd068dc78666b
[]
no_license
shenyczz/KLibrary3D
ab2acfb36bb175abbb8f03bbd866d55827cfb044
61156579fccf70b63de78527695f7cd834155308
refs/heads/master
2020-11-24T13:47:08.249601
2020-07-24T06:38:40
2020-07-24T06:38:40
228,175,401
1
0
null
null
null
null
GB18030
C++
false
false
2,984
inl
#ifndef __INCLUDED_KLIBRARY_3D_INL__ #define __INCLUDED_KLIBRARY_3D_INL__ #pragma pack(push,1) #pragma pack(pop) #pragma pack(push,1) #pragma pack(pop) #pragma warning (disable : 4005) // warning C4005: “DXGI_STATUS_OCCLUDED”: 宏重定义 #pragma warning (disable : 4065) // switch 语句包含“default”但是未包含“case”标签 #pragma warning (disable : 4251) //#pragma warning (disable : 4275) //#pragma warning (disable : 4482) //#pragma warning (disable : 4996) // unsafe function //#pragma warning( disable : 4290) // // Windows // #include <windows.h> #include <windowsX.h> // // TCHAT // #include <tchar.h> // // stdlib // #include <stdio.h> #include <stdlib.h> #include <math.h> // // Gdiplus // //#include <comdef.h> // Native C++ compiler COM support //#include <Gdiplus.h> //#pragma comment (lib, "Gdiplus.lib" ) //using namespace Gdiplus; // // STL // #include <algorithm> #include <array> #include <fstream> #include <iostream> #include <list> #include <map> #include <memory> #include <string> #include <unordered_map> #include <vector> //using namespace std; // COM #include <comdef.h> //--------------------------------------------------------- #define _astring std::string #define _wstring std::wstring #ifdef UNICODE #define _tstring _wstring #else #define _tstring _astring #endif //--------------------------------------------------------- #define _delete(p) { if(p) {delete p; p = 0;} } #define _deletea(p) { if(p) {delete []p; p = 0;} } //--------------------------------------------------------- #define TOSTRING(s) s #define LINK_MESSAGE "Automatically linking with " #define DLL_NAME "" // 动态库名称 #define dll_sep "" // 分隔符,比如"_" #define dll_ver "" // 动态库版本,建议和MFC库版本一致 #define dll_ext ".dll" // 动态库扩展名 #define lib_ext ".lib" // 连接库扩展名 // 运行环境标识 #ifdef _DEBUG #if defined(_UNICODE) #define dll_env "" // Unicode Debug "ud" #else #define dll_env "" // Debug "d" #endif #else #if defined(_UNICODE) #define dll_env "" // Unicode Release "ur" #else #define dll_env "" // Release "r" #endif #endif #ifdef WIN32 #define Platform_Architecture "" // 平台结构:WIN32=>32,WIN64=>64 #endif // 例子 //#define SFX_DLL Dx11Base[dll_sep][dll_ver][dll_sep][dll_env][Platform_Architecture].dll // Dx11Base_120_ud_32.dll #define SFX_DLL \ TOSTRING(DLL_NAME)\ TOSTRING(dll_sep)\ TOSTRING(dll_ver)\ TOSTRING(dll_sep)\ TOSTRING(dll_env)\ TOSTRING(Platform_Architecture)\ TOSTRING(dll_ext) #define SFX_LIB \ TOSTRING(DLL_NAME)\ TOSTRING(dll_sep)\ TOSTRING(dll_ver)\ TOSTRING(dll_sep)\ TOSTRING(dll_env)\ TOSTRING(Platform_Architecture)\ TOSTRING(lib_ext) //--------------------------------------------------------- #include "Api.inl" #include "std.inl" #include "tchar.inl" //--------------------------------------------------------- #endif //#ifndef __INCLUDED_KLIBRARY_3D_INL__
[ "shenyczz@163.com" ]
shenyczz@163.com
52f94df8e27e9b6d6c5d3eb1aca516b25322a102
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/boringssl/src/crypto/bn/bn_test.cc
0a359bda816800c921545942b65fc51b6bcac115
[ "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0", "BSD-3-Clause", "OpenSSL", "ISC", "LicenseRef-scancode-openssl", "LicenseRef-scancode-ssleay-windows" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
47,350
cc
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * * This package is an SSL implementation written * by Eric Young (eay@cryptsoft.com). * The implementation was written so as to conform with Netscapes SSL. * * This library is free for commercial and non-commercial use as long as * the following conditions are aheared to. The following conditions * apply to all code found in this distribution, be it the RC4, RSA, * lhash, DES, etc., code; not just the SSL code. The SSL documentation * included with this distribution is covered by the same copyright terms * except that the holder is Tim Hudson (tjh@cryptsoft.com). * * Copyright remains Eric Young's, and as such any Copyright notices in * the code are not to be removed. * If this package is used in a product, Eric Young should be given attribution * as the author of the parts of the library used. * This can be in the form of a textual message at program startup or * in documentation (online or textual) provided with the package. * * 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 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. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * "This product includes cryptographic software written by * Eric Young (eay@cryptsoft.com)" * The word 'cryptographic' can be left out if the rouines from the library * being used are not cryptographic related :-). * 4. If you include any Windows specific code (or a derivative thereof) from * the apps directory (application code) you must include an acknowledgement: * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" * * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``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 AUTHOR 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. * * The licence and distribution terms for any publically available version or * derivative of this code cannot be changed. i.e. this code cannot simply be * copied and put under another distribution licence * [including the GNU Public Licence.] */ /* ==================================================================== * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. * * Portions of the attached software ("Contribution") are developed by * SUN MICROSYSTEMS, INC., and are contributed to the OpenSSL project. * * The Contribution is licensed pursuant to the Eric Young open source * license provided above. * * The binary polynomial arithmetic software is originally written by * Sheueling Chang Shantz and Douglas Stebila of Sun Microsystems * Laboratories. */ /* Per C99, various stdint.h and inttypes.h macros (the latter used by bn.h) are * unavailable in C++ unless some macros are defined. C++11 overruled this * decision, but older Android NDKs still require it. */ #if !defined(__STDC_CONSTANT_MACROS) #define __STDC_CONSTANT_MACROS #endif #if !defined(__STDC_FORMAT_MACROS) #define __STDC_FORMAT_MACROS #endif #include <assert.h> #include <errno.h> #include <limits.h> #include <stdio.h> #include <string.h> #include <utility> #include <openssl/bn.h> #include <openssl/bytestring.h> #include <openssl/crypto.h> #include <openssl/err.h> #include <openssl/mem.h> #include "../internal.h" #include "../test/file_test.h" #include "../test/test_util.h" static int HexToBIGNUM(bssl::UniquePtr<BIGNUM> *out, const char *in) { BIGNUM *raw = NULL; int ret = BN_hex2bn(&raw, in); out->reset(raw); return ret; } static bssl::UniquePtr<BIGNUM> GetBIGNUM(FileTest *t, const char *attribute) { std::string hex; if (!t->GetAttribute(&hex, attribute)) { return nullptr; } bssl::UniquePtr<BIGNUM> ret; if (HexToBIGNUM(&ret, hex.c_str()) != static_cast<int>(hex.size())) { t->PrintLine("Could not decode '%s'.", hex.c_str()); return nullptr; } return ret; } static bool GetInt(FileTest *t, int *out, const char *attribute) { bssl::UniquePtr<BIGNUM> ret = GetBIGNUM(t, attribute); if (!ret) { return false; } BN_ULONG word = BN_get_word(ret.get()); if (word > INT_MAX) { return false; } *out = static_cast<int>(word); return true; } static bool ExpectBIGNUMsEqual(FileTest *t, const char *operation, const BIGNUM *expected, const BIGNUM *actual) { if (BN_cmp(expected, actual) == 0) { return true; } bssl::UniquePtr<char> expected_str(BN_bn2hex(expected)); bssl::UniquePtr<char> actual_str(BN_bn2hex(actual)); if (!expected_str || !actual_str) { return false; } t->PrintLine("Got %s =", operation); t->PrintLine("\t%s", actual_str.get()); t->PrintLine("wanted:"); t->PrintLine("\t%s", expected_str.get()); return false; } static bool TestSum(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> b = GetBIGNUM(t, "B"); bssl::UniquePtr<BIGNUM> sum = GetBIGNUM(t, "Sum"); if (!a || !b || !sum) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_add(ret.get(), a.get(), b.get()) || !ExpectBIGNUMsEqual(t, "A + B", sum.get(), ret.get()) || !BN_sub(ret.get(), sum.get(), a.get()) || !ExpectBIGNUMsEqual(t, "Sum - A", b.get(), ret.get()) || !BN_sub(ret.get(), sum.get(), b.get()) || !ExpectBIGNUMsEqual(t, "Sum - B", a.get(), ret.get())) { return false; } // Test that the functions work when |r| and |a| point to the same |BIGNUM|, // or when |r| and |b| point to the same |BIGNUM|. TODO: Test the case where // all of |r|, |a|, and |b| point to the same |BIGNUM|. if (!BN_copy(ret.get(), a.get()) || !BN_add(ret.get(), ret.get(), b.get()) || !ExpectBIGNUMsEqual(t, "A + B (r is a)", sum.get(), ret.get()) || !BN_copy(ret.get(), b.get()) || !BN_add(ret.get(), a.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "A + B (r is b)", sum.get(), ret.get()) || !BN_copy(ret.get(), sum.get()) || !BN_sub(ret.get(), ret.get(), a.get()) || !ExpectBIGNUMsEqual(t, "Sum - A (r is a)", b.get(), ret.get()) || !BN_copy(ret.get(), a.get()) || !BN_sub(ret.get(), sum.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Sum - A (r is b)", b.get(), ret.get()) || !BN_copy(ret.get(), sum.get()) || !BN_sub(ret.get(), ret.get(), b.get()) || !ExpectBIGNUMsEqual(t, "Sum - B (r is a)", a.get(), ret.get()) || !BN_copy(ret.get(), b.get()) || !BN_sub(ret.get(), sum.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Sum - B (r is b)", a.get(), ret.get())) { return false; } // Test |BN_uadd| and |BN_usub| with the prerequisites they are documented as // having. Note that these functions are frequently used when the // prerequisites don't hold. In those cases, they are supposed to work as if // the prerequisite hold, but we don't test that yet. TODO: test that. if (!BN_is_negative(a.get()) && !BN_is_negative(b.get()) && BN_cmp(a.get(), b.get()) >= 0) { if (!BN_uadd(ret.get(), a.get(), b.get()) || !ExpectBIGNUMsEqual(t, "A +u B", sum.get(), ret.get()) || !BN_usub(ret.get(), sum.get(), a.get()) || !ExpectBIGNUMsEqual(t, "Sum -u A", b.get(), ret.get()) || !BN_usub(ret.get(), sum.get(), b.get()) || !ExpectBIGNUMsEqual(t, "Sum -u B", a.get(), ret.get())) { return false; } // Test that the functions work when |r| and |a| point to the same |BIGNUM|, // or when |r| and |b| point to the same |BIGNUM|. TODO: Test the case where // all of |r|, |a|, and |b| point to the same |BIGNUM|. if (!BN_copy(ret.get(), a.get()) || !BN_uadd(ret.get(), ret.get(), b.get()) || !ExpectBIGNUMsEqual(t, "A +u B (r is a)", sum.get(), ret.get()) || !BN_copy(ret.get(), b.get()) || !BN_uadd(ret.get(), a.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "A +u B (r is b)", sum.get(), ret.get()) || !BN_copy(ret.get(), sum.get()) || !BN_usub(ret.get(), ret.get(), a.get()) || !ExpectBIGNUMsEqual(t, "Sum -u A (r is a)", b.get(), ret.get()) || !BN_copy(ret.get(), a.get()) || !BN_usub(ret.get(), sum.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Sum -u A (r is b)", b.get(), ret.get()) || !BN_copy(ret.get(), sum.get()) || !BN_usub(ret.get(), ret.get(), b.get()) || !ExpectBIGNUMsEqual(t, "Sum -u B (r is a)", a.get(), ret.get()) || !BN_copy(ret.get(), b.get()) || !BN_usub(ret.get(), sum.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Sum -u B (r is b)", a.get(), ret.get())) { return false; } } // Test with |BN_add_word| and |BN_sub_word| if |b| is small enough. BN_ULONG b_word = BN_get_word(b.get()); if (!BN_is_negative(b.get()) && b_word != (BN_ULONG)-1) { if (!BN_copy(ret.get(), a.get()) || !BN_add_word(ret.get(), b_word) || !ExpectBIGNUMsEqual(t, "A + B (word)", sum.get(), ret.get()) || !BN_copy(ret.get(), sum.get()) || !BN_sub_word(ret.get(), b_word) || !ExpectBIGNUMsEqual(t, "Sum - B (word)", a.get(), ret.get())) { return false; } } return true; } static bool TestLShift1(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> lshift1 = GetBIGNUM(t, "LShift1"); bssl::UniquePtr<BIGNUM> zero(BN_new()); if (!a || !lshift1 || !zero) { return false; } BN_zero(zero.get()); bssl::UniquePtr<BIGNUM> ret(BN_new()), two(BN_new()), remainder(BN_new()); if (!ret || !two || !remainder || !BN_set_word(two.get(), 2) || !BN_add(ret.get(), a.get(), a.get()) || !ExpectBIGNUMsEqual(t, "A + A", lshift1.get(), ret.get()) || !BN_mul(ret.get(), a.get(), two.get(), ctx) || !ExpectBIGNUMsEqual(t, "A * 2", lshift1.get(), ret.get()) || !BN_div(ret.get(), remainder.get(), lshift1.get(), two.get(), ctx) || !ExpectBIGNUMsEqual(t, "LShift1 / 2", a.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "LShift1 % 2", zero.get(), remainder.get()) || !BN_lshift1(ret.get(), a.get()) || !ExpectBIGNUMsEqual(t, "A << 1", lshift1.get(), ret.get()) || !BN_rshift1(ret.get(), lshift1.get()) || !ExpectBIGNUMsEqual(t, "LShift >> 1", a.get(), ret.get()) || !BN_rshift1(ret.get(), lshift1.get()) || !ExpectBIGNUMsEqual(t, "LShift >> 1", a.get(), ret.get())) { return false; } // Set the LSB to 1 and test rshift1 again. if (!BN_set_bit(lshift1.get(), 0) || !BN_div(ret.get(), nullptr /* rem */, lshift1.get(), two.get(), ctx) || !ExpectBIGNUMsEqual(t, "(LShift1 | 1) / 2", a.get(), ret.get()) || !BN_rshift1(ret.get(), lshift1.get()) || !ExpectBIGNUMsEqual(t, "(LShift | 1) >> 1", a.get(), ret.get())) { return false; } return true; } static bool TestLShift(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> lshift = GetBIGNUM(t, "LShift"); int n = 0; if (!a || !lshift || !GetInt(t, &n, "N")) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_lshift(ret.get(), a.get(), n) || !ExpectBIGNUMsEqual(t, "A << N", lshift.get(), ret.get()) || !BN_rshift(ret.get(), lshift.get(), n) || !ExpectBIGNUMsEqual(t, "A >> N", a.get(), ret.get())) { return false; } return true; } static bool TestRShift(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> rshift = GetBIGNUM(t, "RShift"); int n = 0; if (!a || !rshift || !GetInt(t, &n, "N")) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_rshift(ret.get(), a.get(), n) || !ExpectBIGNUMsEqual(t, "A >> N", rshift.get(), ret.get())) { return false; } return true; } static bool TestSquare(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> square = GetBIGNUM(t, "Square"); bssl::UniquePtr<BIGNUM> zero(BN_new()); if (!a || !square || !zero) { return false; } BN_zero(zero.get()); bssl::UniquePtr<BIGNUM> ret(BN_new()), remainder(BN_new()); if (!ret || !BN_sqr(ret.get(), a.get(), ctx) || !ExpectBIGNUMsEqual(t, "A^2", square.get(), ret.get()) || !BN_mul(ret.get(), a.get(), a.get(), ctx) || !ExpectBIGNUMsEqual(t, "A * A", square.get(), ret.get()) || !BN_div(ret.get(), remainder.get(), square.get(), a.get(), ctx) || !ExpectBIGNUMsEqual(t, "Square / A", a.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Square % A", zero.get(), remainder.get())) { return false; } BN_set_negative(a.get(), 0); if (!BN_sqrt(ret.get(), square.get(), ctx) || !ExpectBIGNUMsEqual(t, "sqrt(Square)", a.get(), ret.get())) { return false; } // BN_sqrt should fail on non-squares and negative numbers. if (!BN_is_zero(square.get())) { bssl::UniquePtr<BIGNUM> tmp(BN_new()); if (!tmp || !BN_copy(tmp.get(), square.get())) { return false; } BN_set_negative(tmp.get(), 1); if (BN_sqrt(ret.get(), tmp.get(), ctx)) { t->PrintLine("BN_sqrt succeeded on a negative number"); return false; } ERR_clear_error(); BN_set_negative(tmp.get(), 0); if (!BN_add(tmp.get(), tmp.get(), BN_value_one())) { return false; } if (BN_sqrt(ret.get(), tmp.get(), ctx)) { t->PrintLine("BN_sqrt succeeded on a non-square"); return false; } ERR_clear_error(); } return true; } static bool TestProduct(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> b = GetBIGNUM(t, "B"); bssl::UniquePtr<BIGNUM> product = GetBIGNUM(t, "Product"); bssl::UniquePtr<BIGNUM> zero(BN_new()); if (!a || !b || !product || !zero) { return false; } BN_zero(zero.get()); bssl::UniquePtr<BIGNUM> ret(BN_new()), remainder(BN_new()); if (!ret || !remainder || !BN_mul(ret.get(), a.get(), b.get(), ctx) || !ExpectBIGNUMsEqual(t, "A * B", product.get(), ret.get()) || !BN_div(ret.get(), remainder.get(), product.get(), a.get(), ctx) || !ExpectBIGNUMsEqual(t, "Product / A", b.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Product % A", zero.get(), remainder.get()) || !BN_div(ret.get(), remainder.get(), product.get(), b.get(), ctx) || !ExpectBIGNUMsEqual(t, "Product / B", a.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "Product % B", zero.get(), remainder.get())) { return false; } return true; } static bool TestQuotient(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> b = GetBIGNUM(t, "B"); bssl::UniquePtr<BIGNUM> quotient = GetBIGNUM(t, "Quotient"); bssl::UniquePtr<BIGNUM> remainder = GetBIGNUM(t, "Remainder"); if (!a || !b || !quotient || !remainder) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()), ret2(BN_new()); if (!ret || !ret2 || !BN_div(ret.get(), ret2.get(), a.get(), b.get(), ctx) || !ExpectBIGNUMsEqual(t, "A / B", quotient.get(), ret.get()) || !ExpectBIGNUMsEqual(t, "A % B", remainder.get(), ret2.get()) || !BN_mul(ret.get(), quotient.get(), b.get(), ctx) || !BN_add(ret.get(), ret.get(), remainder.get()) || !ExpectBIGNUMsEqual(t, "Quotient * B + Remainder", a.get(), ret.get())) { return false; } // Test with |BN_mod_word| and |BN_div_word| if the divisor is small enough. BN_ULONG b_word = BN_get_word(b.get()); if (!BN_is_negative(b.get()) && b_word != (BN_ULONG)-1) { BN_ULONG remainder_word = BN_get_word(remainder.get()); assert(remainder_word != (BN_ULONG)-1); if (!BN_copy(ret.get(), a.get())) { return false; } BN_ULONG ret_word = BN_div_word(ret.get(), b_word); if (ret_word != remainder_word) { t->PrintLine("Got A %% B (word) = " BN_HEX_FMT1 ", wanted " BN_HEX_FMT1 "\n", ret_word, remainder_word); return false; } if (!ExpectBIGNUMsEqual(t, "A / B (word)", quotient.get(), ret.get())) { return false; } ret_word = BN_mod_word(a.get(), b_word); if (ret_word != remainder_word) { t->PrintLine("Got A %% B (word) = " BN_HEX_FMT1 ", wanted " BN_HEX_FMT1 "\n", ret_word, remainder_word); return false; } } // Test BN_nnmod. if (!BN_is_negative(b.get())) { bssl::UniquePtr<BIGNUM> nnmod(BN_new()); if (!nnmod || !BN_copy(nnmod.get(), remainder.get()) || (BN_is_negative(nnmod.get()) && !BN_add(nnmod.get(), nnmod.get(), b.get())) || !BN_nnmod(ret.get(), a.get(), b.get(), ctx) || !ExpectBIGNUMsEqual(t, "A % B (non-negative)", nnmod.get(), ret.get())) { return false; } } return true; } static bool TestModMul(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> b = GetBIGNUM(t, "B"); bssl::UniquePtr<BIGNUM> m = GetBIGNUM(t, "M"); bssl::UniquePtr<BIGNUM> mod_mul = GetBIGNUM(t, "ModMul"); if (!a || !b || !m || !mod_mul) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_mod_mul(ret.get(), a.get(), b.get(), m.get(), ctx) || !ExpectBIGNUMsEqual(t, "A * B (mod M)", mod_mul.get(), ret.get())) { return false; } if (BN_is_odd(m.get())) { // Reduce |a| and |b| and test the Montgomery version. bssl::UniquePtr<BN_MONT_CTX> mont(BN_MONT_CTX_new()); bssl::UniquePtr<BIGNUM> a_tmp(BN_new()), b_tmp(BN_new()); if (!mont || !a_tmp || !b_tmp || !BN_MONT_CTX_set(mont.get(), m.get(), ctx) || !BN_nnmod(a_tmp.get(), a.get(), m.get(), ctx) || !BN_nnmod(b_tmp.get(), b.get(), m.get(), ctx) || !BN_to_montgomery(a_tmp.get(), a_tmp.get(), mont.get(), ctx) || !BN_to_montgomery(b_tmp.get(), b_tmp.get(), mont.get(), ctx) || !BN_mod_mul_montgomery(ret.get(), a_tmp.get(), b_tmp.get(), mont.get(), ctx) || !BN_from_montgomery(ret.get(), ret.get(), mont.get(), ctx) || !ExpectBIGNUMsEqual(t, "A * B (mod M) (Montgomery)", mod_mul.get(), ret.get())) { return false; } } return true; } static bool TestModExp(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> e = GetBIGNUM(t, "E"); bssl::UniquePtr<BIGNUM> m = GetBIGNUM(t, "M"); bssl::UniquePtr<BIGNUM> mod_exp = GetBIGNUM(t, "ModExp"); if (!a || !e || !m || !mod_exp) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_mod_exp(ret.get(), a.get(), e.get(), m.get(), ctx) || !ExpectBIGNUMsEqual(t, "A ^ E (mod M)", mod_exp.get(), ret.get())) { return false; } if (BN_is_odd(m.get())) { if (!BN_mod_exp_mont(ret.get(), a.get(), e.get(), m.get(), ctx, NULL) || !ExpectBIGNUMsEqual(t, "A ^ E (mod M) (Montgomery)", mod_exp.get(), ret.get()) || !BN_mod_exp_mont_consttime(ret.get(), a.get(), e.get(), m.get(), ctx, NULL) || !ExpectBIGNUMsEqual(t, "A ^ E (mod M) (constant-time)", mod_exp.get(), ret.get())) { return false; } } return true; } static bool TestExp(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> e = GetBIGNUM(t, "E"); bssl::UniquePtr<BIGNUM> exp = GetBIGNUM(t, "Exp"); if (!a || !e || !exp) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_exp(ret.get(), a.get(), e.get(), ctx) || !ExpectBIGNUMsEqual(t, "A ^ E", exp.get(), ret.get())) { return false; } return true; } static bool TestModSqrt(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> p = GetBIGNUM(t, "P"); bssl::UniquePtr<BIGNUM> mod_sqrt = GetBIGNUM(t, "ModSqrt"); if (!a || !p || !mod_sqrt) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); bssl::UniquePtr<BIGNUM> ret2(BN_new()); if (!ret || !ret2 || !BN_mod_sqrt(ret.get(), a.get(), p.get(), ctx) || // There are two possible answers. !BN_sub(ret2.get(), p.get(), ret.get())) { return false; } if (BN_cmp(ret2.get(), mod_sqrt.get()) != 0 && !ExpectBIGNUMsEqual(t, "sqrt(A) (mod P)", mod_sqrt.get(), ret.get())) { return false; } return true; } static bool TestModInv(FileTest *t, BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a = GetBIGNUM(t, "A"); bssl::UniquePtr<BIGNUM> m = GetBIGNUM(t, "M"); bssl::UniquePtr<BIGNUM> mod_inv = GetBIGNUM(t, "ModInv"); if (!a || !m || !mod_inv) { return false; } bssl::UniquePtr<BIGNUM> ret(BN_new()); if (!ret || !BN_mod_inverse(ret.get(), a.get(), m.get(), ctx) || !ExpectBIGNUMsEqual(t, "inv(A) (mod M)", mod_inv.get(), ret.get())) { return false; } BN_set_flags(a.get(), BN_FLG_CONSTTIME); if (!ret || !BN_mod_inverse(ret.get(), a.get(), m.get(), ctx) || !ExpectBIGNUMsEqual(t, "inv(A) (mod M) (constant-time)", mod_inv.get(), ret.get())) { return false; } return true; } struct Test { const char *name; bool (*func)(FileTest *t, BN_CTX *ctx); }; static const Test kTests[] = { {"Sum", TestSum}, {"LShift1", TestLShift1}, {"LShift", TestLShift}, {"RShift", TestRShift}, {"Square", TestSquare}, {"Product", TestProduct}, {"Quotient", TestQuotient}, {"ModMul", TestModMul}, {"ModExp", TestModExp}, {"Exp", TestExp}, {"ModSqrt", TestModSqrt}, {"ModInv", TestModInv}, }; static bool RunTest(FileTest *t, void *arg) { BN_CTX *ctx = reinterpret_cast<BN_CTX *>(arg); for (const Test &test : kTests) { if (t->GetType() != test.name) { continue; } return test.func(t, ctx); } t->PrintLine("Unknown test type: %s", t->GetType().c_str()); return false; } static bool TestBN2BinPadded(BN_CTX *ctx) { uint8_t zeros[256], out[256], reference[128]; memset(zeros, 0, sizeof(zeros)); // Test edge case at 0. bssl::UniquePtr<BIGNUM> n(BN_new()); if (!n || !BN_bn2bin_padded(NULL, 0, n.get())) { fprintf(stderr, "BN_bn2bin_padded failed to encode 0 in an empty buffer.\n"); return false; } memset(out, -1, sizeof(out)); if (!BN_bn2bin_padded(out, sizeof(out), n.get())) { fprintf(stderr, "BN_bn2bin_padded failed to encode 0 in a non-empty buffer.\n"); return false; } if (memcmp(zeros, out, sizeof(out))) { fprintf(stderr, "BN_bn2bin_padded did not zero buffer.\n"); return false; } // Test a random numbers at various byte lengths. for (size_t bytes = 128 - 7; bytes <= 128; bytes++) { if (!BN_rand(n.get(), bytes * 8, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY)) { ERR_print_errors_fp(stderr); return false; } if (BN_num_bytes(n.get()) != bytes || BN_bn2bin(n.get(), reference) != bytes) { fprintf(stderr, "Bad result from BN_rand; bytes.\n"); return false; } // Empty buffer should fail. if (BN_bn2bin_padded(NULL, 0, n.get())) { fprintf(stderr, "BN_bn2bin_padded incorrectly succeeded on empty buffer.\n"); return false; } // One byte short should fail. if (BN_bn2bin_padded(out, bytes - 1, n.get())) { fprintf(stderr, "BN_bn2bin_padded incorrectly succeeded on short.\n"); return false; } // Exactly right size should encode. if (!BN_bn2bin_padded(out, bytes, n.get()) || memcmp(out, reference, bytes) != 0) { fprintf(stderr, "BN_bn2bin_padded gave a bad result.\n"); return false; } // Pad up one byte extra. if (!BN_bn2bin_padded(out, bytes + 1, n.get()) || memcmp(out + 1, reference, bytes) || memcmp(out, zeros, 1)) { fprintf(stderr, "BN_bn2bin_padded gave a bad result.\n"); return false; } // Pad up to 256. if (!BN_bn2bin_padded(out, sizeof(out), n.get()) || memcmp(out + sizeof(out) - bytes, reference, bytes) || memcmp(out, zeros, sizeof(out) - bytes)) { fprintf(stderr, "BN_bn2bin_padded gave a bad result.\n"); return false; } } return true; } static int DecimalToBIGNUM(bssl::UniquePtr<BIGNUM> *out, const char *in) { BIGNUM *raw = NULL; int ret = BN_dec2bn(&raw, in); out->reset(raw); return ret; } static bool TestDec2BN(BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> bn; int ret = DecimalToBIGNUM(&bn, "0"); if (ret != 1 || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_dec2bn gave a bad result.\n"); return false; } ret = DecimalToBIGNUM(&bn, "256"); if (ret != 3 || !BN_is_word(bn.get(), 256) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_dec2bn gave a bad result.\n"); return false; } ret = DecimalToBIGNUM(&bn, "-42"); if (ret != 3 || !BN_abs_is_word(bn.get(), 42) || !BN_is_negative(bn.get())) { fprintf(stderr, "BN_dec2bn gave a bad result.\n"); return false; } ret = DecimalToBIGNUM(&bn, "-0"); if (ret != 2 || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_dec2bn gave a bad result.\n"); return false; } ret = DecimalToBIGNUM(&bn, "42trailing garbage is ignored"); if (ret != 2 || !BN_abs_is_word(bn.get(), 42) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_dec2bn gave a bad result.\n"); return false; } return true; } static bool TestHex2BN(BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> bn; int ret = HexToBIGNUM(&bn, "0"); if (ret != 1 || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_hex2bn gave a bad result.\n"); return false; } ret = HexToBIGNUM(&bn, "256"); if (ret != 3 || !BN_is_word(bn.get(), 0x256) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_hex2bn gave a bad result.\n"); return false; } ret = HexToBIGNUM(&bn, "-42"); if (ret != 3 || !BN_abs_is_word(bn.get(), 0x42) || !BN_is_negative(bn.get())) { fprintf(stderr, "BN_hex2bn gave a bad result.\n"); return false; } ret = HexToBIGNUM(&bn, "-0"); if (ret != 2 || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_hex2bn gave a bad result.\n"); return false; } ret = HexToBIGNUM(&bn, "abctrailing garbage is ignored"); if (ret != 3 || !BN_is_word(bn.get(), 0xabc) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_hex2bn gave a bad result.\n"); return false; } return true; } static bssl::UniquePtr<BIGNUM> ASCIIToBIGNUM(const char *in) { BIGNUM *raw = NULL; if (!BN_asc2bn(&raw, in)) { return nullptr; } return bssl::UniquePtr<BIGNUM>(raw); } static bool TestASC2BN(BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> bn = ASCIIToBIGNUM("0"); if (!bn || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("256"); if (!bn || !BN_is_word(bn.get(), 256) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("-42"); if (!bn || !BN_abs_is_word(bn.get(), 42) || !BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("0x1234"); if (!bn || !BN_is_word(bn.get(), 0x1234) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("0X1234"); if (!bn || !BN_is_word(bn.get(), 0x1234) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("-0xabcd"); if (!bn || !BN_abs_is_word(bn.get(), 0xabcd) || !BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("-0"); if (!bn || !BN_is_zero(bn.get()) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } bn = ASCIIToBIGNUM("123trailing garbage is ignored"); if (!bn || !BN_is_word(bn.get(), 123) || BN_is_negative(bn.get())) { fprintf(stderr, "BN_asc2bn gave a bad result.\n"); return false; } return true; } struct MPITest { const char *base10; const char *mpi; size_t mpi_len; }; static const MPITest kMPITests[] = { { "0", "\x00\x00\x00\x00", 4 }, { "1", "\x00\x00\x00\x01\x01", 5 }, { "-1", "\x00\x00\x00\x01\x81", 5 }, { "128", "\x00\x00\x00\x02\x00\x80", 6 }, { "256", "\x00\x00\x00\x02\x01\x00", 6 }, { "-256", "\x00\x00\x00\x02\x81\x00", 6 }, }; static bool TestMPI() { uint8_t scratch[8]; for (size_t i = 0; i < OPENSSL_ARRAY_SIZE(kMPITests); i++) { const MPITest &test = kMPITests[i]; bssl::UniquePtr<BIGNUM> bn(ASCIIToBIGNUM(test.base10)); const size_t mpi_len = BN_bn2mpi(bn.get(), NULL); if (mpi_len > sizeof(scratch)) { fprintf(stderr, "MPI test #%u: MPI size is too large to test.\n", (unsigned)i); return false; } const size_t mpi_len2 = BN_bn2mpi(bn.get(), scratch); if (mpi_len != mpi_len2) { fprintf(stderr, "MPI test #%u: length changes.\n", (unsigned)i); return false; } if (mpi_len != test.mpi_len || memcmp(test.mpi, scratch, mpi_len) != 0) { fprintf(stderr, "MPI test #%u failed:\n", (unsigned)i); hexdump(stderr, "Expected: ", test.mpi, test.mpi_len); hexdump(stderr, "Got: ", scratch, mpi_len); return false; } bssl::UniquePtr<BIGNUM> bn2(BN_mpi2bn(scratch, mpi_len, NULL)); if (bn2.get() == nullptr) { fprintf(stderr, "MPI test #%u: failed to parse\n", (unsigned)i); return false; } if (BN_cmp(bn.get(), bn2.get()) != 0) { fprintf(stderr, "MPI test #%u: wrong result\n", (unsigned)i); return false; } } return true; } static bool TestRand() { bssl::UniquePtr<BIGNUM> bn(BN_new()); if (!bn) { return false; } // Test BN_rand accounts for degenerate cases with |top| and |bottom| // parameters. if (!BN_rand(bn.get(), 0, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY) || !BN_is_zero(bn.get())) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } if (!BN_rand(bn.get(), 0, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ODD) || !BN_is_zero(bn.get())) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } if (!BN_rand(bn.get(), 1, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY) || !BN_is_word(bn.get(), 1)) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } if (!BN_rand(bn.get(), 1, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY) || !BN_is_word(bn.get(), 1)) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } if (!BN_rand(bn.get(), 1, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ODD) || !BN_is_word(bn.get(), 1)) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } if (!BN_rand(bn.get(), 2, BN_RAND_TOP_TWO, BN_RAND_BOTTOM_ANY) || !BN_is_word(bn.get(), 3)) { fprintf(stderr, "BN_rand gave a bad result.\n"); return false; } return true; } struct ASN1Test { const char *value_ascii; const char *der; size_t der_len; }; static const ASN1Test kASN1Tests[] = { {"0", "\x02\x01\x00", 3}, {"1", "\x02\x01\x01", 3}, {"127", "\x02\x01\x7f", 3}, {"128", "\x02\x02\x00\x80", 4}, {"0xdeadbeef", "\x02\x05\x00\xde\xad\xbe\xef", 7}, {"0x0102030405060708", "\x02\x08\x01\x02\x03\x04\x05\x06\x07\x08", 10}, {"0xffffffffffffffff", "\x02\x09\x00\xff\xff\xff\xff\xff\xff\xff\xff", 11}, }; struct ASN1InvalidTest { const char *der; size_t der_len; }; static const ASN1InvalidTest kASN1InvalidTests[] = { // Bad tag. {"\x03\x01\x00", 3}, // Empty contents. {"\x02\x00", 2}, }; // kASN1BuggyTests contains incorrect encodings and the corresponding, expected // results of |BN_parse_asn1_unsigned_buggy| given that input. static const ASN1Test kASN1BuggyTests[] = { // Negative numbers. {"128", "\x02\x01\x80", 3}, {"255", "\x02\x01\xff", 3}, // Unnecessary leading zeros. {"1", "\x02\x02\x00\x01", 4}, }; static bool TestASN1() { for (const ASN1Test &test : kASN1Tests) { bssl::UniquePtr<BIGNUM> bn = ASCIIToBIGNUM(test.value_ascii); if (!bn) { return false; } // Test that the input is correctly parsed. bssl::UniquePtr<BIGNUM> bn2(BN_new()); if (!bn2) { return false; } CBS cbs; CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (!BN_parse_asn1_unsigned(&cbs, bn2.get()) || CBS_len(&cbs) != 0) { fprintf(stderr, "Parsing ASN.1 INTEGER failed.\n"); return false; } if (BN_cmp(bn.get(), bn2.get()) != 0) { fprintf(stderr, "Bad parse.\n"); return false; } // Test the value serializes correctly. CBB cbb; uint8_t *der; size_t der_len; CBB_zero(&cbb); if (!CBB_init(&cbb, 0) || !BN_marshal_asn1(&cbb, bn.get()) || !CBB_finish(&cbb, &der, &der_len)) { CBB_cleanup(&cbb); return false; } bssl::UniquePtr<uint8_t> delete_der(der); if (der_len != test.der_len || memcmp(der, reinterpret_cast<const uint8_t*>(test.der), der_len) != 0) { fprintf(stderr, "Bad serialization.\n"); return false; } // |BN_parse_asn1_unsigned_buggy| parses all valid input. CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (!BN_parse_asn1_unsigned_buggy(&cbs, bn2.get()) || CBS_len(&cbs) != 0) { fprintf(stderr, "Parsing ASN.1 INTEGER failed.\n"); return false; } if (BN_cmp(bn.get(), bn2.get()) != 0) { fprintf(stderr, "Bad parse.\n"); return false; } } for (const ASN1InvalidTest &test : kASN1InvalidTests) { bssl::UniquePtr<BIGNUM> bn(BN_new()); if (!bn) { return false; } CBS cbs; CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (BN_parse_asn1_unsigned(&cbs, bn.get())) { fprintf(stderr, "Parsed invalid input.\n"); return false; } ERR_clear_error(); // All tests in kASN1InvalidTests are also rejected by // |BN_parse_asn1_unsigned_buggy|. CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (BN_parse_asn1_unsigned_buggy(&cbs, bn.get())) { fprintf(stderr, "Parsed invalid input.\n"); return false; } ERR_clear_error(); } for (const ASN1Test &test : kASN1BuggyTests) { // These broken encodings are rejected by |BN_parse_asn1_unsigned|. bssl::UniquePtr<BIGNUM> bn(BN_new()); if (!bn) { return false; } CBS cbs; CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (BN_parse_asn1_unsigned(&cbs, bn.get())) { fprintf(stderr, "Parsed invalid input.\n"); return false; } ERR_clear_error(); // However |BN_parse_asn1_unsigned_buggy| accepts them. bssl::UniquePtr<BIGNUM> bn2 = ASCIIToBIGNUM(test.value_ascii); if (!bn2) { return false; } CBS_init(&cbs, reinterpret_cast<const uint8_t*>(test.der), test.der_len); if (!BN_parse_asn1_unsigned_buggy(&cbs, bn.get()) || CBS_len(&cbs) != 0) { fprintf(stderr, "Parsing (invalid) ASN.1 INTEGER failed.\n"); return false; } if (BN_cmp(bn.get(), bn2.get()) != 0) { fprintf(stderr, "\"Bad\" parse.\n"); return false; } } // Serializing negative numbers is not supported. bssl::UniquePtr<BIGNUM> bn = ASCIIToBIGNUM("-1"); if (!bn) { return false; } CBB cbb; CBB_zero(&cbb); if (!CBB_init(&cbb, 0) || BN_marshal_asn1(&cbb, bn.get())) { fprintf(stderr, "Serialized negative number.\n"); CBB_cleanup(&cbb); return false; } ERR_clear_error(); CBB_cleanup(&cbb); return true; } static bool TestNegativeZero(BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a(BN_new()); bssl::UniquePtr<BIGNUM> b(BN_new()); bssl::UniquePtr<BIGNUM> c(BN_new()); if (!a || !b || !c) { return false; } // Test that BN_mul never gives negative zero. if (!BN_set_word(a.get(), 1)) { return false; } BN_set_negative(a.get(), 1); BN_zero(b.get()); if (!BN_mul(c.get(), a.get(), b.get(), ctx)) { return false; } if (!BN_is_zero(c.get()) || BN_is_negative(c.get())) { fprintf(stderr, "Multiplication test failed.\n"); return false; } for (int consttime = 0; consttime < 2; consttime++) { bssl::UniquePtr<BIGNUM> numerator(BN_new()), denominator(BN_new()); if (!numerator || !denominator) { return false; } if (consttime) { BN_set_flags(numerator.get(), BN_FLG_CONSTTIME); BN_set_flags(denominator.get(), BN_FLG_CONSTTIME); } // Test that BN_div never gives negative zero in the quotient. if (!BN_set_word(numerator.get(), 1) || !BN_set_word(denominator.get(), 2)) { return false; } BN_set_negative(numerator.get(), 1); if (!BN_div(a.get(), b.get(), numerator.get(), denominator.get(), ctx)) { return false; } if (!BN_is_zero(a.get()) || BN_is_negative(a.get())) { fprintf(stderr, "Incorrect quotient (consttime = %d).\n", consttime); return false; } // Test that BN_div never gives negative zero in the remainder. if (!BN_set_word(denominator.get(), 1)) { return false; } if (!BN_div(a.get(), b.get(), numerator.get(), denominator.get(), ctx)) { return false; } if (!BN_is_zero(b.get()) || BN_is_negative(b.get())) { fprintf(stderr, "Incorrect remainder (consttime = %d).\n", consttime); return false; } } // Test that BN_set_negative will not produce a negative zero. BN_zero(a.get()); BN_set_negative(a.get(), 1); if (BN_is_negative(a.get())) { fprintf(stderr, "BN_set_negative produced a negative zero.\n"); return false; } // Test that forcibly creating a negative zero does not break |BN_bn2hex| or // |BN_bn2dec|. a->neg = 1; bssl::UniquePtr<char> dec(BN_bn2dec(a.get())); bssl::UniquePtr<char> hex(BN_bn2hex(a.get())); if (!dec || !hex || strcmp(dec.get(), "-0") != 0 || strcmp(hex.get(), "-0") != 0) { fprintf(stderr, "BN_bn2dec or BN_bn2hex failed with negative zero.\n"); return false; } return true; } static bool TestBadModulus(BN_CTX *ctx) { bssl::UniquePtr<BIGNUM> a(BN_new()); bssl::UniquePtr<BIGNUM> b(BN_new()); bssl::UniquePtr<BIGNUM> zero(BN_new()); bssl::UniquePtr<BN_MONT_CTX> mont(BN_MONT_CTX_new()); if (!a || !b || !zero || !mont) { return false; } BN_zero(zero.get()); if (BN_div(a.get(), b.get(), BN_value_one(), zero.get(), ctx)) { fprintf(stderr, "Division by zero unexpectedly succeeded.\n"); return false; } ERR_clear_error(); if (BN_mod_mul(a.get(), BN_value_one(), BN_value_one(), zero.get(), ctx)) { fprintf(stderr, "BN_mod_mul with zero modulus unexpectedly succeeded.\n"); return false; } ERR_clear_error(); if (BN_mod_exp(a.get(), BN_value_one(), BN_value_one(), zero.get(), ctx)) { fprintf(stderr, "BN_mod_exp with zero modulus unexpectedly succeeded.\n"); return 0; } ERR_clear_error(); if (BN_mod_exp_mont(a.get(), BN_value_one(), BN_value_one(), zero.get(), ctx, NULL)) { fprintf(stderr, "BN_mod_exp_mont with zero modulus unexpectedly succeeded.\n"); return 0; } ERR_clear_error(); if (BN_mod_exp_mont_consttime(a.get(), BN_value_one(), BN_value_one(), zero.get(), ctx, nullptr)) { fprintf(stderr, "BN_mod_exp_mont_consttime with zero modulus unexpectedly " "succeeded.\n"); return 0; } ERR_clear_error(); if (BN_MONT_CTX_set(mont.get(), zero.get(), ctx)) { fprintf(stderr, "BN_MONT_CTX_set unexpectedly succeeded for zero modulus.\n"); return false; } ERR_clear_error(); // Some operations also may not be used with an even modulus. if (!BN_set_word(b.get(), 16)) { return false; } if (BN_MONT_CTX_set(mont.get(), b.get(), ctx)) { fprintf(stderr, "BN_MONT_CTX_set unexpectedly succeeded for even modulus.\n"); return false; } ERR_clear_error(); if (BN_mod_exp_mont(a.get(), BN_value_one(), BN_value_one(), b.get(), ctx, NULL)) { fprintf(stderr, "BN_mod_exp_mont with even modulus unexpectedly succeeded.\n"); return 0; } ERR_clear_error(); if (BN_mod_exp_mont_consttime(a.get(), BN_value_one(), BN_value_one(), b.get(), ctx, nullptr)) { fprintf(stderr, "BN_mod_exp_mont_consttime with even modulus unexpectedly " "succeeded.\n"); return 0; } ERR_clear_error(); return true; } // TestExpModZero tests that 1**0 mod 1 == 0. static bool TestExpModZero() { bssl::UniquePtr<BIGNUM> zero(BN_new()), a(BN_new()), r(BN_new()); if (!zero || !a || !r || !BN_rand(a.get(), 1024, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ANY)) { return false; } BN_zero(zero.get()); if (!BN_mod_exp(r.get(), a.get(), zero.get(), BN_value_one(), nullptr) || !BN_is_zero(r.get()) || !BN_mod_exp_mont(r.get(), a.get(), zero.get(), BN_value_one(), nullptr, nullptr) || !BN_is_zero(r.get()) || !BN_mod_exp_mont_consttime(r.get(), a.get(), zero.get(), BN_value_one(), nullptr, nullptr) || !BN_is_zero(r.get()) || !BN_mod_exp_mont_word(r.get(), 42, zero.get(), BN_value_one(), nullptr, nullptr) || !BN_is_zero(r.get())) { return false; } return true; } static bool TestSmallPrime(BN_CTX *ctx) { static const unsigned kBits = 10; bssl::UniquePtr<BIGNUM> r(BN_new()); if (!r || !BN_generate_prime_ex(r.get(), static_cast<int>(kBits), 0, NULL, NULL, NULL)) { return false; } if (BN_num_bits(r.get()) != kBits) { fprintf(stderr, "Expected %u bit prime, got %u bit number\n", kBits, BN_num_bits(r.get())); return false; } return true; } static bool TestCmpWord() { static const BN_ULONG kMaxWord = (BN_ULONG)-1; bssl::UniquePtr<BIGNUM> r(BN_new()); if (!r || !BN_set_word(r.get(), 0)) { return false; } if (BN_cmp_word(r.get(), 0) != 0 || BN_cmp_word(r.get(), 1) >= 0 || BN_cmp_word(r.get(), kMaxWord) >= 0) { fprintf(stderr, "BN_cmp_word compared against 0 incorrectly.\n"); return false; } if (!BN_set_word(r.get(), 100)) { return false; } if (BN_cmp_word(r.get(), 0) <= 0 || BN_cmp_word(r.get(), 99) <= 0 || BN_cmp_word(r.get(), 100) != 0 || BN_cmp_word(r.get(), 101) >= 0 || BN_cmp_word(r.get(), kMaxWord) >= 0) { fprintf(stderr, "BN_cmp_word compared against 100 incorrectly.\n"); return false; } BN_set_negative(r.get(), 1); if (BN_cmp_word(r.get(), 0) >= 0 || BN_cmp_word(r.get(), 100) >= 0 || BN_cmp_word(r.get(), kMaxWord) >= 0) { fprintf(stderr, "BN_cmp_word compared against -100 incorrectly.\n"); return false; } if (!BN_set_word(r.get(), kMaxWord)) { return false; } if (BN_cmp_word(r.get(), 0) <= 0 || BN_cmp_word(r.get(), kMaxWord - 1) <= 0 || BN_cmp_word(r.get(), kMaxWord) != 0) { fprintf(stderr, "BN_cmp_word compared against kMaxWord incorrectly.\n"); return false; } if (!BN_add(r.get(), r.get(), BN_value_one())) { return false; } if (BN_cmp_word(r.get(), 0) <= 0 || BN_cmp_word(r.get(), kMaxWord) <= 0) { fprintf(stderr, "BN_cmp_word compared against kMaxWord + 1 incorrectly.\n"); return false; } BN_set_negative(r.get(), 1); if (BN_cmp_word(r.get(), 0) >= 0 || BN_cmp_word(r.get(), kMaxWord) >= 0) { fprintf(stderr, "BN_cmp_word compared against -kMaxWord - 1 incorrectly.\n"); return false; } return true; } static bool TestBN2Dec() { static const char *kBN2DecTests[] = { "0", "1", "-1", "100", "-100", "123456789012345678901234567890", "-123456789012345678901234567890", "123456789012345678901234567890123456789012345678901234567890", "-123456789012345678901234567890123456789012345678901234567890", }; for (const char *test : kBN2DecTests) { bssl::UniquePtr<BIGNUM> bn; int ret = DecimalToBIGNUM(&bn, test); if (ret == 0) { return false; } bssl::UniquePtr<char> dec(BN_bn2dec(bn.get())); if (!dec) { fprintf(stderr, "BN_bn2dec failed on %s.\n", test); return false; } if (strcmp(dec.get(), test) != 0) { fprintf(stderr, "BN_bn2dec gave %s, wanted %s.\n", dec.get(), test); return false; } } return true; } static bool TestBNSetU64() { static const struct { const char *hex; uint64_t value; } kU64Tests[] = { {"0", UINT64_C(0x0)}, {"1", UINT64_C(0x1)}, {"ffffffff", UINT64_C(0xffffffff)}, {"100000000", UINT64_C(0x100000000)}, {"ffffffffffffffff", UINT64_C(0xffffffffffffffff)}, }; for (const auto& test : kU64Tests) { bssl::UniquePtr<BIGNUM> bn(BN_new()), expected; if (!bn || !BN_set_u64(bn.get(), test.value) || !HexToBIGNUM(&expected, test.hex) || BN_cmp(bn.get(), expected.get()) != 0) { fprintf(stderr, "BN_set_u64 test failed for 0x%s.\n", test.hex); ERR_print_errors_fp(stderr); return false; } } return true; } int main(int argc, char *argv[]) { CRYPTO_library_init(); if (argc != 2) { fprintf(stderr, "%s TEST_FILE\n", argv[0]); return 1; } bssl::UniquePtr<BN_CTX> ctx(BN_CTX_new()); if (!ctx) { return 1; } if (!TestBN2BinPadded(ctx.get()) || !TestDec2BN(ctx.get()) || !TestHex2BN(ctx.get()) || !TestASC2BN(ctx.get()) || !TestMPI() || !TestRand() || !TestASN1() || !TestNegativeZero(ctx.get()) || !TestBadModulus(ctx.get()) || !TestExpModZero() || !TestSmallPrime(ctx.get()) || !TestCmpWord() || !TestBN2Dec() || !TestBNSetU64()) { return 1; } return FileTestMain(RunTest, ctx.get(), argv[1]); }
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
deeae3bc43d6b0dc9a71da9a3853d08fa37538bd
e9dc4208e7f42632736e80d9ad7779de82297993
/src/devices/CGenericDevice.cpp
189205fd8fe12427269ba482a9a3f9a9bc7c6e02
[]
no_license
victor29z/haptics-chai3d-demo
382cd11980d562159e32227663214ce58e4b8d6e
0c6e85d872d2ad3e1316c4006e0703b87e5efd90
refs/heads/master
2021-01-10T01:28:08.878619
2015-10-19T07:24:28
2015-10-19T07:24:28
44,517,914
0
1
null
null
null
null
UTF-8
C++
false
false
3,355
cpp
//=========================================================================== /* Software License Agreement (BSD License) Copyright (c) 2003-2012, CHAI3D. (www.chai3d.org) 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 CHAI3D nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 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. \author <http://www.chai3d.org> \author Francois Conti \version 3.0.0 $Rev: 799 $ */ //=========================================================================== //--------------------------------------------------------------------------- #include "devices/CGenericDevice.h" //--------------------------------------------------------------------------- //=========================================================================== /*! Constructor of cGenericDevice. */ //=========================================================================== cGenericDevice::cGenericDevice() { // the device is not yet available m_deviceAvailable = false; // the system is not yet ready to receive commands m_deviceReady = false; // No call back has been defined m_callback = NULL; }; //=========================================================================== /*! Ask the device to call me back periodically. If this device supports timed callbacks, this function will return 'true' and will call the supplied m_callback method at haptic rates. If not, this function will return 'false', and you should create your own haptic thread. \param m_callback The callback to trigger periodically, or 0 to cancel an existing callback. \return Returns \b true if this device supports callbacks, \b false otherwise. */ //=========================================================================== bool cGenericDevice::setCallback(cCallback* a_callback) { m_callback = a_callback; return (true); }
[ "zhaoliang@sia.cn" ]
zhaoliang@sia.cn
7503be9353150c761cba345955426145f9ae8f1a
d1f593e4ea050c9e70177a489d97e4d84c0bcf9d
/src/Svg_element.cpp
5e5ca7311c6345419259415ac46d9349301aa847
[]
no_license
RazvanPascalau/SVGRasterizer
6b1ecd96d4f8955fb5f95fcf2be8d1f82f6fca11
ec2ca205a8f27074fac5e6b9b503f2c4fd90ffab
refs/heads/master
2021-01-10T16:14:45.434813
2017-06-07T15:22:07
2017-06-07T15:22:07
49,533,721
0
0
null
null
null
null
UTF-8
C++
false
false
709
cpp
// // Created by Razvan Pascalau on 02/04/2017. // #include "Svg_element.hpp" #include <unordered_map> #include <experimental/string_view> namespace { using el = Svg_elem_id; using Element_name_map = std::unordered_map<std::experimental::string_view, el>; const Element_name_map element_name_map{ {"svg", el::svg}, {"circle", el::circle}, {"g", el::g} }; } auto Svg_element::get_id_for_name(gsl::not_null<const char*> element_name) -> std::experimental::optional<Svg_elem_id> { auto elem_it = element_name_map.find(element_name.get()); if(elem_it != std::end(element_name_map)) { return elem_it->second; } return {}; }
[ "mail@razvan-pascalau.com" ]
mail@razvan-pascalau.com
7bed7761e303bf348f21b0fd72a90b7bc4680b5b
0edbcda83b7a9542f15f706573a8e21da51f6020
/private/shell/ext/cscui/viewer/cscutils.cpp
24bb5be76b777b4c5ba7d3b6909de8f68e47b4a0
[]
no_license
yair-k/Win2000SRC
fe9f6f62e60e9bece135af15359bb80d3b65dc6a
fd809a81098565b33f52d0f65925159de8f4c337
refs/heads/main
2023-04-12T08:28:31.485426
2021-05-08T22:47:00
2021-05-08T22:47:00
365,623,923
1
3
null
null
null
null
UTF-8
C++
false
false
608
cpp
////////////////////////////////////////////////////////////////////////////// /* File: cscutils.cpp Description: Utility functions related to manipulation of CSC information. Revision History: Date Description Programmer -------- --------------------------------------------------- ---------- 11/25/97 Initial creation. BrianAu */ /////////////////////////////////////////////////////////////////////////////// #include "pch.h" #pragma hdrstop // // BUGBUG: Remove this from the project. //
[ "ykorokhov@pace.ca" ]
ykorokhov@pace.ca
8352fdf1e0a1a8d7882646f5b52f89d3332f825a
1786f51414ac5919b4a80c7858e11f7eb12cb1a9
/2019 Shanghai Online/K.cpp
a31f55e8e1e4b44f35f5316d1549f03a715c8342
[]
no_license
SetsunaChyan/OI_source_code
206c4d7a0d2587a4d09beeeb185765bca0948f27
bb484131e02467cdccd6456ea1ecb17a72f6e3f6
refs/heads/master
2020-04-06T21:42:44.429553
2019-12-02T09:18:54
2019-12-02T09:18:54
157,811,588
0
0
null
null
null
null
UTF-8
C++
false
false
1,220
cpp
#include <bits/stdc++.h> using namespace std; typedef long long int ll; ll a,b,c,p[31666],up=31622; map<ll,ll>mp; vector<pair<ll,ll>>as,bs; set<pair<pair<ll,ll>,pair<ll,ll>>>ans; void init() { for(int i=1;i*i<=1e9;i++) p[i]=i*i,mp[i*i]=i; } void gao(ll a,vector<pair<ll,ll>>& as) { as.emplace_back(0,a); as.emplace_back(0,-a); as.emplace_back(a,0); as.emplace_back(-a,0); for(int i=1;i<=31622&&p[i]<a;i++) if(mp.find(a-p[i])!=mp.end()) { ll t=mp[a-p[i]]; as.emplace_back(i,t); as.emplace_back(-i,t); as.emplace_back(i,-t); as.emplace_back(-i,-t); if(t!=i) { as.emplace_back(t,i); as.emplace_back(-t,i); as.emplace_back(t,-i); as.emplace_back(-t,-i); } } } int main() { init(); int _;scanf("%d",&_); while(_--) { as.clear();bs.clear(); ans.clear(); scanf("%lld%lld%lld",&a,&b,&c); gao(a,as); gao(b,bs); for(auto pa:as) for(auto pb:bs) { ll dis=(pa.first-pb.first)*(pa.first-pb.first)+(pa.second-pb.second)*(pa.second-pb.second); if(dis==c*c) ans.insert({pa,pb}); } printf("%u\n",ans.size()); for(auto as:ans) printf("%lld %lld %lld %lld\n",as.first.first,as.first.second,as.second.first,as.second.second); } return 0; }
[ "ctzguozi@163.com" ]
ctzguozi@163.com
e5b14080fbe8b47f20a2e9c87b4a123e122658ba
dafb4f7d1525d70a6cc5d5d2b2506d6573fdf896
/MapCreator/src/MapCreator.cpp
cb43be4cdb40caff8c4af6015270791b2e9dfd1d
[]
no_license
nama-gatsuo/DailySketch
5a4d8a2e0acfddedfedcb7f4821c2ece00a16857
6ed0254972acfce0484b73f796a99d2855f0959a
refs/heads/master
2020-12-30T15:22:14.041061
2018-06-25T20:31:27
2018-06-25T20:31:27
91,134,713
48
1
null
null
null
null
UTF-8
C++
false
false
13,727
cpp
#include "MapCreator.hpp" MapCreator::MapCreator(){} void MapCreator::setup(){ ofFile file; file.open("img/world.svg"); ofBuffer buffer = file.readToBuffer(); ofXml svg; svg.loadFromBuffer(buffer.getText()); int n = svg.getNumChildren(); float width = ofToFloat(svg.getAttribute("width")); float height = ofToFloat(svg.getAttribute("height")); for (int i = 0; i < n; i++) { CountryData country; svg.setToChild(i); country.id = svg.getAttribute("id"); ofVec2f start(0,0); country.pathes = createPath(svg, start); countries.push_back(country); svg.reset(); } fbo.allocate(2506.2067, 1396.0625); } void MapCreator::setLayerA(){ if (json.open("json/gdp-per-capita_2015.json")) { fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json["value"][j].asInt(); if (value) c.set(value / 50000.); else c.set(0.); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerB(int year){ if (json.open("json/population-growth-rate.json")) { string ys = ofToString(year); fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json[ys][j].asFloat(); if (value > 0.) { c.set(ofFloatColor(0., 0., 0.3) * value); } else { c.set(ofFloatColor(0.5, 0., 0.) * abs(value)); } break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerC(int year){ if (json.open("json/death-rate.json")) { string ys = ofToString(year); fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json[ys][j].asFloat(); c.set(ofFloatColor(0.05,0,0.) * value); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerD(int mode){ if (json.open("json/suicide-rate.json")) { string year; switch (mode) { case 0: year = "2000"; break; case 1: year = "2005"; break; case 2: year = "2010"; break; case 3: year = "2015"; break; default: year = "2015"; break; } fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json[year][j].asFloat(); c.set(ofFloatColor(0.3) * (value/10.)); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerE(){ if (json.open("json/unmarried-rate.json")) { fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json["value"][j].asInt(); if (value) c.set(value / 50.); else c.set(0.); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerF(){ if (json.open("json/hiv.json")) { fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json["value"][j].asFloat(); if (value) c.set(value * 5.); else c.set(0.); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::setLayerG(){ if (json.open("json/cancer.json")) { fbo.begin(); ofClear(0); ofPushMatrix(); ofTranslate(116, 0); ofScale(0.9, 1.0); for (int i = 0; i < countries.size(); i++) { ofFloatColor c(0.); // checking for (int j = 0; j < json["iso"].size(); j++) { if (json["iso"][j].asString() == countries[i].id) { float value = json["value"][j].asFloat(); if (value) c.set(value * 5.); else c.set(0.); break; } } for (int j = 0; j < countries[i].pathes.size(); j++) { countries[i].pathes[j].setColor(c); countries[i].pathes[j].draw(); } } ofPopMatrix(); fbo.end(); } else { cout << "load was failed" << endl; } } void MapCreator::draw(int x, int y){ draw(x, y, fbo.getWidth(), fbo.getHeight()); } void MapCreator::draw(int x, int y, int w, int h){ fbo.draw(x, y, w, h); } vector<ofPath> MapCreator::createPath(ofXml &svg, ofVec2f& start){ int cn = svg.getNumChildren(); vector<ofPath> pathes; if (cn == 0) { string d = svg.getAttribute("d"); ofPath p = stringToPath(d, start); pathes.push_back(p); } else { ofVec2f trans(0,0); string ts = svg.getAttribute("transform"); if (ts != "") { ts.erase(ts.begin(), ts.begin()+10); ts.pop_back(); vector<string> tss = ofSplitString(ts, ","); trans.x = ofToFloat(tss[0]); trans.y = ofToFloat(tss[1]); //cout << "x: " + tss[0] + ", y: " + tss[1] << endl; } trans += start; for (int j = 0; j < cn; j++) { svg.setToChild(j); vector<ofPath> pathes2 = createPath(svg, trans); //copy(pathes2.begin(), pathes2.end(), back_inserter(pathes)); pathes.insert(pathes.end(), pathes2.begin(), pathes2.end()); svg.setToParent(); } } return pathes; } ofPath MapCreator::stringToPath(string &s, ofVec2f& start){ vector<string> darray = ofSplitString(s, " "); ofPath path; path.setCurveResolution(4); ofVec2f last = start; int mode = 0; for (int i = 0; i < darray.size();) { if (darray[i] == "m") { path.moveTo(stringToVec2(darray[i+1]) + last); i += 2; mode = 1; } else if (darray[i] == "M"){ path.moveTo(stringToVec2(darray[i+1])); i += 2; mode = 2; } else if (darray[i] == "c") { last = getLastPoint(path); path.bezierTo(stringToVec2(darray[i+1]) + last, stringToVec2(darray[i+2]) + last, stringToVec2(darray[i+3]) + last); i += 4; mode = 3; } else if (darray[i] == "C") { path.bezierTo(stringToVec2(darray[i+1]), stringToVec2(darray[i+2]), stringToVec2(darray[i+3])); i += 4; mode = 4; } else if (darray[i] == "l") { last = getLastPoint(path); path.lineTo(stringToVec2(darray[i+1]) + last); i += 2; mode = 5; } else if (darray[i] == "L") { path.lineTo(stringToVec2(darray[i+1])); i += 2; mode = 6; } else if (darray[i] == "z" || darray[i] == "Z") { path.close(); i++; } else { last = getLastPoint(path); if (mode == 1) { path.moveTo(stringToVec2(darray[i]) + last); i++; } else if (mode == 2) { path.moveTo(stringToVec2(darray[i])); i++; } else if (mode == 3) { path.bezierTo(stringToVec2(darray[i+0]) + last, stringToVec2(darray[i+1]) + last, stringToVec2(darray[i+2]) + last); i += 3; } else if (mode == 4) { path.bezierTo(stringToVec2(darray[i+0]), stringToVec2(darray[i+1]), stringToVec2(darray[i+2])); i += 3; } else if (mode == 5) { path.lineTo(stringToVec2(darray[i]) + last); i++; } else if (mode == 6) { path.lineTo(stringToVec2(darray[i])); i++; } } } return path; } ofVec2f MapCreator::stringToVec2(string &s){ vector<string> sarray = ofSplitString(s, ","); return ofVec2f(ofToFloat(sarray[0]), ofToFloat(sarray[1])); } ofVec2f MapCreator::getLastPoint(ofPath &path){ vector<ofPolyline> polies = path.getOutline(); ofPolyline poly = polies.at(polies.size()-1); vector<ofPoint> ps = poly.getVertices(); ofPoint p = ps.size() > 0 ? ps.at(ps.size()-1) : ofPoint(); return ofVec2f(p.x, p.y); }
[ "ayumu.nagamatsu@gmail.com" ]
ayumu.nagamatsu@gmail.com
b478ed638b02b698825efaaff5df19933b514608
d3239c2e5652378b17932553f80be1dbcbbdfdbf
/cpp/week1/hola2.cc
d2016b22040fa04b4d7fcc8a91efa77ceef00015
[]
no_license
jorge-alvarado-revata/code_educa
673a8b10817c24b3fc2c5792d216837c15a701aa
241e1e3f43586e486b73cee8f385ab74dd99caf1
refs/heads/main
2022-12-25T21:37:36.988225
2020-10-13T18:59:38
2020-10-13T18:59:38
303,801,120
0
0
null
null
null
null
UTF-8
C++
false
false
477
cc
#include <iostream> using namespace std; int main() { int estacion; cout << "Ingrese numero de estacion (del 1 al 4): "; cin >> estacion; switch (estacion) { case 1: cout << "Primavera"; break; case 2: cout << "Verano"; break; case 3: cout << "Otonio"; break; case 4: cout << "Invierno"; break; default: cout << "Ingrese solo numeros del 1 al 4"; } }
[ "serviciosplusapp@gmail.com" ]
serviciosplusapp@gmail.com
632a7e7c7f99cb2c8193bdaf08b588d53fc7db80
02ce5cf2fc5b6cd22b5fbe1e6d68eab050dd652b
/core/include/main_loop.hpp
d17a9567b2efc4f41bb4c75478fea4567259e5b6
[ "MIT" ]
permissive
Positron010/win-vind
8f09ac0cfef789a3e7bbfbc8292ed9f88c7ee2f0
55a19b814684336ea3bc33bc6d523cc82a426702
refs/heads/master
2023-06-27T15:57:22.711323
2021-08-01T07:55:17
2021-08-01T07:55:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
199
hpp
#ifndef _MAIN_LOOP_HPP #define _MAIN_LOOP_HPP namespace vind { namespace mainloop { void initialize() ; void reconstruct() ; void update() ; } } #endif
[ "pit-ray@outlook.com" ]
pit-ray@outlook.com
b53c160b756396b5af64bbd28019a01b5f77b66b
a851b6c4fc4321a7a99bd9205e18747c7066beea
/Character/Enemy/Elf.h
ec9a41e28fb9f067c01c45ecaee767c108276ce1
[]
no_license
rutpatel/DragonCrawl
7069887a3b320a2f586d529cd7d881de37776414
b15b417d9aa17c13b1bb23b5295d84d3ae372e99
refs/heads/master
2020-03-17T12:44:47.135755
2018-05-17T03:08:25
2018-05-17T03:08:25
133,601,173
0
0
null
null
null
null
UTF-8
C++
false
false
183
h
#ifndef _ELF_H_ #define _ELF_H_ #include "Enemy.h" class Elf: public Enemy { public: void attackPlayer(Player * player); Elf(int atk = 30, int def = 10, int hp = 140); }; #endif
[ "rutpatel010@gmail.com" ]
rutpatel010@gmail.com
67eb63bf561bf59db2a9878dc335fc9a03a8ff31
d1d9a5aa2f398f97d3629464dd6c01c86eea7a63
/src/rgbpixel.cpp
70eff38c18041871b94897c00c12db1d313ecdee
[]
no_license
cptfinch/region_grow
187943af0f62de02fc08dceadd246f5e0c828584
2a1728cb686163044edd6d03d4aebce02e336755
refs/heads/master
2021-09-02T22:51:52.399324
2018-01-04T01:18:11
2018-01-04T01:18:11
116,129,633
0
0
null
null
null
null
UTF-8
C++
false
false
928
cpp
#include "rgbpixel.h" rgbpixel::rgbpixel(unsigned char ARedValue, unsigned char AGreenValue, unsigned char ABlueValue){ RedValue = ARedValue; GreenValue = AGreenValue; BlueValue = ABlueValue; } unsigned char rgbpixel::GetRedValue(){ return RedValue; } unsigned char rgbpixel::GetGreenValue(){ return GreenValue; } unsigned char rgbpixel::GetBlueValue(){ return BlueValue; } //Set private variables void rgbpixel::SetRedValue(unsigned char Value){ RedValue = Value; } void rgbpixel::SetGreenValue(unsigned char Value){ GreenValue = Value; } void rgbpixel::SetBlueValue(unsigned char Value){ BlueValue = Value; } bool operator==(rgbpixel a, rgbpixel b) { if (a.GetRedValue()==b.GetRedValue() && a.GetGreenValue()==b.GetGreenValue() && a.GetBlueValue()==b.GetBlueValue()) { return true; } else {return false;} }
[ "cptfinch@cptfinchs-MacBook-Pro.local" ]
cptfinch@cptfinchs-MacBook-Pro.local
cb9bfba0de0cbd1bf5d77700b62bffeb3e374d78
9393361c9528b8f3d2942218fbad22830c362d1b
/session12/04complex.cpp
98168a60193b65afa8b906dd84144d6804abe295
[]
no_license
007Robin/Practice
062b661208e2ac3f9e4f675800dc33a20e7e0785
a619c9d2d3d891d90d1af14dec204a9b53ad8570
refs/heads/master
2021-06-09T09:30:54.946624
2020-08-24T03:43:46
2020-08-24T03:43:46
100,123,229
1
0
null
null
null
null
UTF-8
C++
false
false
991
cpp
//Xin Song -- Complex (template) #include<iostream> #include<math.h> using namespace std; template<typename Precision> class Complex{ private: Precision r, i; public: Complex(Precision r = 0, Precision i = 0) : r(r),i(i) {} friend Complex operator +(const Complex& c1, const Complex c2){ return Complex(c1.r + c2.r, c1.i + c2.i); } friend Complex operator -(const Complex& c1, const Complex c2){ return Complex(c1.r - c2.r, c1.i - c2.i); } friend ostream& operator <<(ostream& s, const Complex& c){ s << c.r << "+" << c.i << "i"; return s; } Precision abs(){ return sqrt(r*r + i*i); } }; int main(){ Complex<float> a(1.0f, 1.5f); Complex<double> b(1.0, 1.5); Complex<long double> c(1.0L, 2.5L); Complex<double> d(1.5, 1.0); Complex<double> e = b + d; cout << e << '\n'; cout << a.abs() << '\n'; // compute the absolute value cout << b.abs() << '\n'; // compute the absolute value cout << c.abs() << '\n'; // compute the absolute value }
[ "noreply@github.com" ]
007Robin.noreply@github.com
dffb73688f20c3d425f37a6e41d8a083a6e783c1
aace13f0b0101f0d2166670a314bead19c89f6b5
/N Queens/Main.cpp
471f9c094e00f722ba7797ddec7ca662e5f61ceb
[]
no_license
Katianie/CPP
46f6f75c0ae47e7b2ab295cdb6ff99ffefaa7994
c0452a66deb4db4ca52587ccfeddf058ceec4cc7
refs/heads/master
2021-08-16T06:19:31.226254
2017-11-19T05:15:19
2017-11-19T05:15:19
105,468,034
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
4,689
cpp
/** N Queens - Main.cpp * This program is designed to solve the 8 queens problem * but for any number of queens specified by the user. I * also have a way to print out a "fancy" chess board. * * This was uploaded to Katianie.com, Feel free to use this * code and share it with others, Just give me credit ^_^. * * Eddie O'Hagan * Copyright © 2009 Katianie.com */ #include <iostream> using namespace std; typedef char Box[5][7]; Box whiteBox; Box whiteQueen; Box blackBox; Box blackQueen; Box* chessBoard[100][100]; int currNumQueens = 2; int numSolutions = 0; void printSolutions() { cout << "There are " << numSolutions << " solutions to the " << currNumQueens << " queens problem." << endl; } void print(int* bord, int numQueens, int solutionNum) { for (int currRow = 0; currRow < numQueens; currRow++) { for (int currColumn = 0; currColumn < numQueens; currColumn++) { if (bord[currRow] == currColumn) { cout << "1"; } else { cout << "0"; } } cout << endl; } cout << "-------------------" << solutionNum << endl; } void makeBoxes() { for (int currRow = 0; currRow < 5; currRow++) { for (int currColumn = 0; currColumn < 7; currColumn++) { whiteBox[currRow][currColumn] = 219; whiteQueen[currRow][currColumn] = 219; blackBox[currRow][currColumn] = ' '; blackQueen[currRow][currColumn] = ' '; } } whiteQueen[1][0] = '*'; whiteQueen[2][1] = '*'; whiteQueen[3][2] = '*'; whiteQueen[3][2] = '*'; whiteQueen[3][3] = '*'; whiteQueen[2][3] = '*'; whiteQueen[3][4] = '*'; whiteQueen[2][5] = '*'; whiteQueen[1][6] = '*'; blackQueen[1][0] = '*'; blackQueen[2][1] = '*'; blackQueen[3][2] = '*'; blackQueen[3][2] = '*'; blackQueen[3][3] = '*'; blackQueen[2][3] = '*'; blackQueen[3][4] = '*'; blackQueen[2][5] = '*'; blackQueen[1][6] = '*'; } void printFancy(int* bord, int numQueens, int solutionNum) { static bool hasMadeBoxes = false; if (hasMadeBoxes == false) { makeBoxes(); hasMadeBoxes = true; } for (int currRow = 0; currRow < numQueens; currRow++) { for (int currColumn = 0; currColumn < numQueens; currColumn++) { if ((currRow + currColumn) % 2 == 0 && bord[currRow] == currColumn) { chessBoard[currRow][currColumn] = &blackQueen; } else if ((currRow + currColumn) % 2 != 0 && bord[currRow] == currColumn) { chessBoard[currRow][currColumn] = &whiteQueen; } else if ((currRow + currColumn) % 2 == 0 && bord[currRow] != currColumn) { chessBoard[currRow][currColumn] = &blackBox; } else { chessBoard[currRow][currColumn] = &whiteBox; } } } //Print each row,column (box/pictures) FOR EACH row,column (actual queens and spaces). for (int currRow = 0; currRow < numQueens; currRow++) { for (int boxRow = 0; boxRow < 5; boxRow++) { for (int currColumn = 0; currColumn < numQueens; currColumn++) { for (int boxColumn = 0; boxColumn < 7; boxColumn++) { cout << (*chessBoard[currRow][currColumn])[boxRow][boxColumn]; } } cout << endl; } } cout << "-----------------------------------------------------------" << solutionNum << endl; } bool isValidSpot(int* bord, int numQueens, int columnIndex) { if (columnIndex > 0 && columnIndex < numQueens) { for (int i = 0; i < columnIndex; i++) { if ((bord[columnIndex] == bord[i]) || (abs(bord[columnIndex] - bord[i]) == abs(columnIndex - i))) { return false; } } } return true; } int main() { int* bord = NULL; int currentRow = 0; int currentCol = 0; int numQueens = 0; int count = 0; cout << "How many Queens are there?" << endl; cin >> numQueens; while (currNumQueens <= numQueens) { bord = new int[currNumQueens + 1]; for (int i = 0; i < currNumQueens; i++) { bord[i] = 0; } currentRow = bord[0]; currentCol++; while (true) { if (currentRow == currNumQueens || currentCol == currNumQueens) { //Found a valid solution so print it and move onto the next queen. if (currentCol == currNumQueens) { numSolutions++; print(bord, currNumQueens, numSolutions); //printFancy(bord, currNumQueens, numSolutions); } bord[currentCol] = 0; currentCol--; if (currentCol < 0) { printSolutions(); currNumQueens++; break; } bord[currentCol]++; currentRow = bord[currentCol]; } else if (isValidSpot(bord, currNumQueens, currentCol) == false) { currentRow++; bord[currentCol] = currentRow; } else { bord[currentCol] = currentRow; currentRow = 0; currentCol++; } } //Delete the old bord before allocating a new one. delete bord; numSolutions = 0; } system("pause"); return 0; }
[ "eddieohagan@optonline.net" ]
eddieohagan@optonline.net
b96465e87cf9aa3e9b95529ef2e149fa0e8252b4
89870ca1f16af0f2ba65ec0175cd089da852afbc
/codeforces/educational-round-133-div-2/b.cpp
f1941982d6b13a3acb84bdc9e9c79a92d46568bd
[]
no_license
Merisho/comprog
3b8ce833f0f16dbcfa252f9c6678c160bf081a11
fb4829ba93fcb376078a5baccda0c07ce35d6d04
refs/heads/master
2023-08-18T00:10:45.535195
2023-08-11T07:16:02
2023-08-11T07:16:02
216,174,595
0
0
null
null
null
null
UTF-8
C++
false
false
727
cpp
#include <iostream> #include <algorithm> #include <string> #include <math.h> #include <vector> #include <queue> using ll = long long; using namespace std; void solve(int test_case) { int n; cin >> n; cout << n << endl; vector<int> a(n + 1); for (int i = 1; i <= n; ++i) { a[i] = i; } for (int i = 1; i <= n; ++i) { for (int j = 1; j <= n; ++j) { cout << a[j] << " "; } cout << endl; if (i < n) { int t = a[i + 1]; a[i + 1] = a[i]; a[i] = t; } } } int main() { int T; cin >> T; for (int test_case = 0; test_case < T; ++test_case) { solve(test_case); } return 0; }
[ "merishot@gmail.com" ]
merishot@gmail.com
4fad9cb0aca672957bebbe176c2a5513cdba6a3f
5338cd4e316f9ba4b7993c3b4db1b514a4ac6d45
/Templates/LCA.cpp
80f3e79c7b708e20593bd04da48723b900b30a9a
[]
no_license
exopeng/Competitive-Programming
5371ed2ee7b585b36cf232b5557ed30c50ce67de
5d28c21d3e5df5fe50a86ec6251dbc2b7018da61
refs/heads/main
2023-07-08T13:20:23.946747
2021-08-15T17:43:28
2021-08-15T17:43:28
396,431,776
0
0
null
null
null
null
UTF-8
C++
false
false
3,116
cpp
#include <bits/stdc++.h> using namespace std; #include <ext/pb_ds/tree_policy.hpp> #include <ext/pb_ds/assoc_container.hpp> using namespace __gnu_pbds; template <class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; #define mp make_pair #define pb push_back #define lb lower_bound #define ub upper_bound #define f first #define s second #define pii pair<int,int> #define is insert const long long INF = 1000000000; const long long MOD = 1000000007; const int MAXN = 2e5; //store test cases here /* */ int n; vector<int> adj[MAXN]; int timer = 0, tin[MAXN], euler_tour[2*MAXN]; int segtree[8*MAXN]; void dfs(int node = 0, int parent = -1) { tin[node] = timer; // The time when we first visit a node euler_tour[timer++] = node; for (int i : adj[node]) { if (i != parent) { dfs(i, node); euler_tour[timer++] = node; } } } int mn_tin(int x, int y) { if (x == -1) return y; if (y == -1) return x; return (tin[x] < tin[y] ? x : y); } // Build the segment tree: run `build()` after running `dfs()` void build(int node = 1, int l = 0, int r = timer - 1) { if (l == r) segtree[node] = euler_tour[l]; else { int mid = (l + r) / 2; build(node * 2, l, mid); build(node * 2 + 1, mid + 1, r); segtree[node] = mn_tin(segtree[node * 2], segtree[node * 2 + 1]); } } int query(int a, int b, int node = 1, int l = 0, int r = timer - 1) { if (l > b || r < a) return -1; if (l >= a && r <= b) return segtree[node]; int mid = (l + r) / 2; return mn_tin(query(a, b, node * 2, l, mid), query(a, b, node * 2 + 1, mid + 1, r)); } // Make sure you run `dfs()` and `build()` before you run this int lca(int a, int b) { if (tin[a] > tin[b]) swap(a, b); return query(tin[a], tin[b]); } int main() { ios::sync_with_stdio(false); cin.tie(0); cin>>num>>q; for(int i=0;i<num;i++){ vector<int> temp; adj.pb(temp); } for(int i=0;i<num-1;i++){ int a; cin>>a; adj[i+1].pb(a); adj[a].pb(i+1); } LCA m(0); for(int i=0;i<q;i++){ int a,b; cin>>a>>b; cout<<m.lca(a,b)<<"\n"; } } /* REMINDERS * CHECK ARRAY BOUNDS, HOW BIG ARRAY HAS TO BE * PLANNING!!!!!!!! Concrete plan before code * IF CAN'T FIGURE ANYTHING OUT, MAKE TEN TEST CASES TO EVALUATE ALL TYPES OF SCENARIOS, THEN CONSTRUCT SOLUTION TO FIT IT * IF CAN'T FIGURE ANYTHING OUT, MAKE TEN TEST CASES TO EVALUATE ALL TYPES OF SCENARIOS, THEN CONSTRUCT SOLUTION TO FIT IT * IF CAN'T FIGURE ANYTHING OUT, MAKE TEN TEST CASES TO EVALUATE ALL TYPES OF SCENARIOS, THEN CONSTRUCT SOLUTION TO FIT IT * NAIVE SOL FIRST TO CHECK AGAINST OPTIMIZED SOL * MOD OUT EVERY STEP * DON'T MAKE ASSUMPTIONS * DON'T OVERCOMPLICATE * CHECK INT VS LONG, IF YOU NEED TO STORE LARGE NUMBERS * CHECK CONSTRAINTS, C <= N <= F... * CHECK SPECIAL CASES, N = 1... * TO TEST TLE/MLE, PLUG IN MAX VALS ALLOWED AND SEE WHAT HAPPENS * ALSO CALCULATE BIG-O, OVERALL TIME COMPLEXITY * IF ALL ELSE FAILS, DO CASEWORK * compile with "g++ -std=c++11 filename.cpp" if using auto keyword */
[ "100023497@mvla.net" ]
100023497@mvla.net
e2e259b1c948a7f5883dd46826640918a0f4b340
bc90e70ee2139b034c65a5755395ff55faac87d0
/libs/random/test/inversive_congruential.cpp
6e889f82b24f96193e3f37f7b43e823ab5a359ec
[ "BSL-1.0" ]
permissive
Manu343726/Sprout
0a8e2d090dbede6f469f6b875d217716d0200bf7
feac3f52c785deb0e5e6cd70c8b4960095b064be
refs/heads/master
2021-01-21T07:20:16.742204
2015-05-28T04:11:39
2015-05-28T04:11:39
37,670,169
0
1
null
2015-06-18T16:09:41
2015-06-18T16:09:41
null
UTF-8
C++
false
false
1,068
cpp
/*============================================================================= Copyright (c) 2011-2015 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP #define SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP #include <sprout/random/inversive_congruential.hpp> #include "./engine_generic.hpp" #include <testspr/tools.hpp> namespace testspr { void random_inversive_congruential_test() { using namespace sprout; testspr::random_engine_test_generic<sprout::random::hellekalek1995>(); } } // namespace testspr #ifndef TESTSPR_CPP_INCLUDE # define TESTSPR_TEST_FUNCTION testspr::random_inversive_congruential_test # include <testspr/include_main.hpp> #endif #endif // #ifndef SPROUT_LIBS_RANDOM_TEST_INVERSIVE_CONGRUENTIAL_CPP
[ "bolero.murakami@gmail.com" ]
bolero.murakami@gmail.com
b313db10185e284a18615ce3a15f1c5550d48833
c51acc7b1dfaa768f808efb380554c72608e8450
/screen.cpp
c91c16a13288333ee6a476525742606a6fc90bc5
[]
no_license
ValentinL/circles
ef82d14d532d569b110c32bd11d17991de6fc2dd
e91baa95da865dc1849ca8617923b3570051dc88
refs/heads/master
2021-01-01T17:05:40.401540
2014-12-04T02:54:30
2014-12-04T02:54:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
351
cpp
#include "screen.h" #include <windows.h> Screen* Screen::_self = 0; Screen::Screen() { HDC hDCScreen = GetDC(NULL); _width = GetDeviceCaps(hDCScreen, HORZRES); _height = GetDeviceCaps(hDCScreen, VERTRES); ReleaseDC(NULL, hDCScreen); } size_t Screen::getWidth() const { return _width; }; size_t Screen::getHeight() const { return _height; };
[ "valentin.larin@gmail.com" ]
valentin.larin@gmail.com
61c143dfdb78f52ecce61b1b733ec36a31fa4af7
67fc9e51437e351579fe9d2d349040c25936472a
/wrappers/7.0.0/vtkKdTreePointLocatorWrap.cc
0e4c3409d5a39863214c98175704afb560a10219
[]
permissive
axkibe/node-vtk
51b3207c7a7d3b59a4dd46a51e754984c3302dec
900ad7b5500f672519da5aa24c99aa5a96466ef3
refs/heads/master
2023-03-05T07:45:45.577220
2020-03-30T09:31:07
2020-03-30T09:31:07
48,490,707
6
0
BSD-3-Clause
2022-12-07T20:41:45
2015-12-23T12:58:43
C++
UTF-8
C++
false
false
12,123
cc
/* this file has been autogenerated by vtkNodeJsWrap */ /* editing this might proof futile */ #define VTK_WRAPPING_CXX #define VTK_STREAMS_FWD_ONLY #include <nan.h> #include "vtkAbstractPointLocatorWrap.h" #include "vtkKdTreePointLocatorWrap.h" #include "vtkObjectWrap.h" #include "vtkIdListWrap.h" #include "vtkPolyDataWrap.h" #include "../../plus/plus.h" using namespace v8; extern Nan::Persistent<v8::Object> vtkNodeJsNoWrap; Nan::Persistent<v8::FunctionTemplate> VtkKdTreePointLocatorWrap::ptpl; VtkKdTreePointLocatorWrap::VtkKdTreePointLocatorWrap() { } VtkKdTreePointLocatorWrap::VtkKdTreePointLocatorWrap(vtkSmartPointer<vtkKdTreePointLocator> _native) { native = _native; } VtkKdTreePointLocatorWrap::~VtkKdTreePointLocatorWrap() { } void VtkKdTreePointLocatorWrap::Init(v8::Local<v8::Object> exports) { Nan::SetAccessor(exports, Nan::New("vtkKdTreePointLocator").ToLocalChecked(), ConstructorGetter); Nan::SetAccessor(exports, Nan::New("KdTreePointLocator").ToLocalChecked(), ConstructorGetter); } void VtkKdTreePointLocatorWrap::ConstructorGetter( v8::Local<v8::String> property, const Nan::PropertyCallbackInfo<v8::Value>& info) { InitPtpl(); info.GetReturnValue().Set(Nan::New(ptpl)->GetFunction()); } void VtkKdTreePointLocatorWrap::InitPtpl() { if (!ptpl.IsEmpty()) return; v8::Local<v8::FunctionTemplate> tpl = Nan::New<v8::FunctionTemplate>(New); VtkAbstractPointLocatorWrap::InitPtpl( ); tpl->Inherit(Nan::New<FunctionTemplate>(VtkAbstractPointLocatorWrap::ptpl)); tpl->SetClassName(Nan::New("VtkKdTreePointLocatorWrap").ToLocalChecked()); tpl->InstanceTemplate()->SetInternalFieldCount(1); Nan::SetPrototypeMethod(tpl, "BuildLocator", BuildLocator); Nan::SetPrototypeMethod(tpl, "buildLocator", BuildLocator); Nan::SetPrototypeMethod(tpl, "FindClosestNPoints", FindClosestNPoints); Nan::SetPrototypeMethod(tpl, "findClosestNPoints", FindClosestNPoints); Nan::SetPrototypeMethod(tpl, "FindPointsWithinRadius", FindPointsWithinRadius); Nan::SetPrototypeMethod(tpl, "findPointsWithinRadius", FindPointsWithinRadius); Nan::SetPrototypeMethod(tpl, "FreeSearchStructure", FreeSearchStructure); Nan::SetPrototypeMethod(tpl, "freeSearchStructure", FreeSearchStructure); Nan::SetPrototypeMethod(tpl, "GenerateRepresentation", GenerateRepresentation); Nan::SetPrototypeMethod(tpl, "generateRepresentation", GenerateRepresentation); Nan::SetPrototypeMethod(tpl, "GetClassName", GetClassName); Nan::SetPrototypeMethod(tpl, "getClassName", GetClassName); Nan::SetPrototypeMethod(tpl, "IsA", IsA); Nan::SetPrototypeMethod(tpl, "isA", IsA); Nan::SetPrototypeMethod(tpl, "NewInstance", NewInstance); Nan::SetPrototypeMethod(tpl, "newInstance", NewInstance); Nan::SetPrototypeMethod(tpl, "SafeDownCast", SafeDownCast); Nan::SetPrototypeMethod(tpl, "safeDownCast", SafeDownCast); #ifdef VTK_NODE_PLUS_VTKKDTREEPOINTLOCATORWRAP_INITPTPL VTK_NODE_PLUS_VTKKDTREEPOINTLOCATORWRAP_INITPTPL #endif ptpl.Reset( tpl ); } void VtkKdTreePointLocatorWrap::New(const Nan::FunctionCallbackInfo<v8::Value>& info) { if(!info.IsConstructCall()) { Nan::ThrowError("Constructor not called in a construct call."); return; } if(info.Length() == 0) { vtkSmartPointer<vtkKdTreePointLocator> native = vtkSmartPointer<vtkKdTreePointLocator>::New(); VtkKdTreePointLocatorWrap* obj = new VtkKdTreePointLocatorWrap(native); obj->Wrap(info.This()); } else { if(info[0]->ToObject() != vtkNodeJsNoWrap ) { Nan::ThrowError("Parameter Error"); return; } } info.GetReturnValue().Set(info.This()); } void VtkKdTreePointLocatorWrap::BuildLocator(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); if(info.Length() != 0) { Nan::ThrowError("Too many parameters."); return; } native->BuildLocator(); } void VtkKdTreePointLocatorWrap::FindClosestNPoints(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); size_t i; if(info.Length() > 0 && info[0]->IsInt32()) { if(info.Length() > 1 && info[1]->IsFloat64Array()) { v8::Local<v8::Float64Array>a1(v8::Local<v8::Float64Array>::Cast(info[1]->ToObject())); if( a1->Length() < 3 ) { Nan::ThrowError("Array too short."); return; } if(info.Length() > 2 && info[2]->IsObject() && (Nan::New(VtkIdListWrap::ptpl))->HasInstance(info[2])) { VtkIdListWrap *a2 = ObjectWrap::Unwrap<VtkIdListWrap>(info[2]->ToObject()); if(info.Length() != 3) { Nan::ThrowError("Too many parameters."); return; } native->FindClosestNPoints( info[0]->Int32Value(), (double *)(a1->Buffer()->GetContents().Data()), (vtkIdList *) a2->native.GetPointer() ); return; } } else if(info.Length() > 1 && info[1]->IsArray()) { v8::Local<v8::Array>a1(v8::Local<v8::Array>::Cast(info[1]->ToObject())); double b1[3]; if( a1->Length() < 3 ) { Nan::ThrowError("Array too short."); return; } for( i = 0; i < 3; i++ ) { if( !a1->Get(i)->IsNumber() ) { Nan::ThrowError("Array contents invalid."); return; } b1[i] = a1->Get(i)->NumberValue(); } if(info.Length() > 2 && info[2]->IsObject() && (Nan::New(VtkIdListWrap::ptpl))->HasInstance(info[2])) { VtkIdListWrap *a2 = ObjectWrap::Unwrap<VtkIdListWrap>(info[2]->ToObject()); if(info.Length() != 3) { Nan::ThrowError("Too many parameters."); return; } native->FindClosestNPoints( info[0]->Int32Value(), b1, (vtkIdList *) a2->native.GetPointer() ); return; } } } Nan::ThrowError("Parameter mismatch"); } void VtkKdTreePointLocatorWrap::FindPointsWithinRadius(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); size_t i; if(info.Length() > 0 && info[0]->IsNumber()) { if(info.Length() > 1 && info[1]->IsFloat64Array()) { v8::Local<v8::Float64Array>a1(v8::Local<v8::Float64Array>::Cast(info[1]->ToObject())); if( a1->Length() < 3 ) { Nan::ThrowError("Array too short."); return; } if(info.Length() > 2 && info[2]->IsObject() && (Nan::New(VtkIdListWrap::ptpl))->HasInstance(info[2])) { VtkIdListWrap *a2 = ObjectWrap::Unwrap<VtkIdListWrap>(info[2]->ToObject()); if(info.Length() != 3) { Nan::ThrowError("Too many parameters."); return; } native->FindPointsWithinRadius( info[0]->NumberValue(), (double *)(a1->Buffer()->GetContents().Data()), (vtkIdList *) a2->native.GetPointer() ); return; } } else if(info.Length() > 1 && info[1]->IsArray()) { v8::Local<v8::Array>a1(v8::Local<v8::Array>::Cast(info[1]->ToObject())); double b1[3]; if( a1->Length() < 3 ) { Nan::ThrowError("Array too short."); return; } for( i = 0; i < 3; i++ ) { if( !a1->Get(i)->IsNumber() ) { Nan::ThrowError("Array contents invalid."); return; } b1[i] = a1->Get(i)->NumberValue(); } if(info.Length() > 2 && info[2]->IsObject() && (Nan::New(VtkIdListWrap::ptpl))->HasInstance(info[2])) { VtkIdListWrap *a2 = ObjectWrap::Unwrap<VtkIdListWrap>(info[2]->ToObject()); if(info.Length() != 3) { Nan::ThrowError("Too many parameters."); return; } native->FindPointsWithinRadius( info[0]->NumberValue(), b1, (vtkIdList *) a2->native.GetPointer() ); return; } } } Nan::ThrowError("Parameter mismatch"); } void VtkKdTreePointLocatorWrap::FreeSearchStructure(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); if(info.Length() != 0) { Nan::ThrowError("Too many parameters."); return; } native->FreeSearchStructure(); } void VtkKdTreePointLocatorWrap::GenerateRepresentation(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); if(info.Length() > 0 && info[0]->IsInt32()) { if(info.Length() > 1 && info[1]->IsObject() && (Nan::New(VtkPolyDataWrap::ptpl))->HasInstance(info[1])) { VtkPolyDataWrap *a1 = ObjectWrap::Unwrap<VtkPolyDataWrap>(info[1]->ToObject()); if(info.Length() != 2) { Nan::ThrowError("Too many parameters."); return; } native->GenerateRepresentation( info[0]->Int32Value(), (vtkPolyData *) a1->native.GetPointer() ); return; } } Nan::ThrowError("Parameter mismatch"); } void VtkKdTreePointLocatorWrap::GetClassName(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); char const * r; if(info.Length() != 0) { Nan::ThrowError("Too many parameters."); return; } r = native->GetClassName(); info.GetReturnValue().Set(Nan::New(r).ToLocalChecked()); } void VtkKdTreePointLocatorWrap::IsA(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); if(info.Length() > 0 && info[0]->IsString()) { Nan::Utf8String a0(info[0]); int r; if(info.Length() != 1) { Nan::ThrowError("Too many parameters."); return; } r = native->IsA( *a0 ); info.GetReturnValue().Set(Nan::New(r)); return; } Nan::ThrowError("Parameter mismatch"); } void VtkKdTreePointLocatorWrap::NewInstance(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); vtkKdTreePointLocator * r; if(info.Length() != 0) { Nan::ThrowError("Too many parameters."); return; } r = native->NewInstance(); VtkKdTreePointLocatorWrap::InitPtpl(); v8::Local<v8::Value> argv[1] = { Nan::New(vtkNodeJsNoWrap) }; v8::Local<v8::Function> cons = Nan::New<v8::FunctionTemplate>(VtkKdTreePointLocatorWrap::ptpl)->GetFunction(); v8::Local<v8::Object> wo = cons->NewInstance(1, argv); VtkKdTreePointLocatorWrap *w = new VtkKdTreePointLocatorWrap(); w->native = r; w->Wrap(wo); info.GetReturnValue().Set(wo); } void VtkKdTreePointLocatorWrap::SafeDownCast(const Nan::FunctionCallbackInfo<v8::Value>& info) { VtkKdTreePointLocatorWrap *wrapper = ObjectWrap::Unwrap<VtkKdTreePointLocatorWrap>(info.Holder()); vtkKdTreePointLocator *native = (vtkKdTreePointLocator *)wrapper->native.GetPointer(); if(info.Length() > 0 && info[0]->IsObject() && (Nan::New(VtkObjectWrap::ptpl))->HasInstance(info[0])) { VtkObjectWrap *a0 = ObjectWrap::Unwrap<VtkObjectWrap>(info[0]->ToObject()); vtkKdTreePointLocator * r; if(info.Length() != 1) { Nan::ThrowError("Too many parameters."); return; } r = native->SafeDownCast( (vtkObject *) a0->native.GetPointer() ); VtkKdTreePointLocatorWrap::InitPtpl(); v8::Local<v8::Value> argv[1] = { Nan::New(vtkNodeJsNoWrap) }; v8::Local<v8::Function> cons = Nan::New<v8::FunctionTemplate>(VtkKdTreePointLocatorWrap::ptpl)->GetFunction(); v8::Local<v8::Object> wo = cons->NewInstance(1, argv); VtkKdTreePointLocatorWrap *w = new VtkKdTreePointLocatorWrap(); w->native = r; w->Wrap(wo); info.GetReturnValue().Set(wo); return; } Nan::ThrowError("Parameter mismatch"); }
[ "axkibe@gmail.com" ]
axkibe@gmail.com
47fdf2c4b967bfaca0b5a6e27e7a3bec7fc0369b
91ba0c0c42b3fcdbc2a7778e4a4684ab1942714b
/Cpp/SDK/BP_Clothing_parameters.h
c50bc18b1ffe739a2f00c759bc63ac5325db324b
[]
no_license
zH4x/SoT-SDK-2.1.1
0f8c1ec3ad8821de82df3f75a0356642b581b8c6
35144dfc629aeddf96c1741e9e27e5113a2b1bb3
refs/heads/main
2023-05-12T09:03:32.050860
2021-06-05T01:54:15
2021-06-05T01:54:15
373,997,263
0
0
null
null
null
null
UTF-8
C++
false
false
504
h
#pragma once // Name: SoT, Version: 2.1.1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function BP_Clothing.BP_Clothing_C.UserConstructionScript struct ABP_Clothing_C_UserConstructionScript_Params { }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
bed1238cfbbe5cebb7e69907f0d535f961f95303
f770641f5fc5314b50adb6c42380105bce0dc8ac
/liveMedia/src/MPEG1or2DemuxedServerMediaSubsession.cpp
724bc655f3c19fa5f18a4289217f243c9538973d
[]
no_license
cmberryau/live555
6cf6a83c167be1b970517738d98bf56f0d3ba995
82ba82f2e6ecfba0d707207f1a81a531077a5ddc
refs/heads/master
2021-03-27T09:40:43.868821
2018-01-19T03:34:29
2018-01-19T03:34:29
71,615,516
39
22
null
null
null
null
UTF-8
C++
false
false
5,459
cpp
/********** This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. (See <http://www.gnu.org/copyleft/lesser.html>.) This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA **********/ // "liveMedia" // Copyright (c) 1996-2016 Live Networks, Inc. All rights reserved. // A 'ServerMediaSubsession' object that creates new, unicast, "RTPSink"s // on demand, from a MPEG-1 or 2 demuxer. // Implementation #include "MPEG1or2DemuxedServerMediaSubsession.hh" #include "MPEG1or2AudioStreamFramer.hh" #include "MPEG1or2AudioRTPSink.hh" #include "MPEG1or2VideoStreamFramer.hh" #include "MPEG1or2VideoRTPSink.hh" #include "AC3AudioStreamFramer.hh" #include "AC3AudioRTPSink.hh" #include "ByteStreamFileSource.hh" MPEG1or2DemuxedServerMediaSubsession* MPEG1or2DemuxedServerMediaSubsession ::createNew(MPEG1or2FileServerDemux& demux, u_int8_t streamIdTag, Boolean reuseFirstSource, Boolean iFramesOnly, double vshPeriod) { return new MPEG1or2DemuxedServerMediaSubsession(demux, streamIdTag, reuseFirstSource, iFramesOnly, vshPeriod); } MPEG1or2DemuxedServerMediaSubsession ::MPEG1or2DemuxedServerMediaSubsession(MPEG1or2FileServerDemux& demux, u_int8_t streamIdTag, Boolean reuseFirstSource, Boolean iFramesOnly, double vshPeriod) : OnDemandServerMediaSubsession(demux.envir(), reuseFirstSource), fOurDemux(demux), fStreamIdTag(streamIdTag), fIFramesOnly(iFramesOnly), fVSHPeriod(vshPeriod) { } MPEG1or2DemuxedServerMediaSubsession::~MPEG1or2DemuxedServerMediaSubsession() { } FramedSource* MPEG1or2DemuxedServerMediaSubsession ::createNewStreamSource(unsigned clientSessionId, unsigned& estBitrate) { FramedSource* es = NULL; do { es = fOurDemux.newElementaryStream(clientSessionId, fStreamIdTag); if (es == NULL) break; if ((fStreamIdTag&0xF0) == 0xC0 /*MPEG audio*/) { estBitrate = 128; // kbps, estimate return MPEG1or2AudioStreamFramer::createNew(envir(), es); } else if ((fStreamIdTag&0xF0) == 0xE0 /*video*/) { estBitrate = 500; // kbps, estimate return MPEG1or2VideoStreamFramer::createNew(envir(), es, fIFramesOnly, fVSHPeriod); } else if (fStreamIdTag == 0xBD /*AC-3 audio*/) { estBitrate = 192; // kbps, estimate return AC3AudioStreamFramer::createNew(envir(), es, 0x80); } else { // unknown stream type break; } } while (0); // An error occurred: Medium::close(es); return NULL; } RTPSink* MPEG1or2DemuxedServerMediaSubsession ::createNewRTPSink(Groupsock* rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource* inputSource) { if ((fStreamIdTag&0xF0) == 0xC0 /*MPEG audio*/) { return MPEG1or2AudioRTPSink::createNew(envir(), rtpGroupsock); } else if ((fStreamIdTag&0xF0) == 0xE0 /*video*/) { return MPEG1or2VideoRTPSink::createNew(envir(), rtpGroupsock); } else if (fStreamIdTag == 0xBD /*AC-3 audio*/) { // Get the sampling frequency from the audio source; use it for the RTP frequency: AC3AudioStreamFramer* audioSource = (AC3AudioStreamFramer*)inputSource; return AC3AudioRTPSink::createNew(envir(), rtpGroupsock, rtpPayloadTypeIfDynamic, audioSource->samplingRate()); } else { return NULL; } } void MPEG1or2DemuxedServerMediaSubsession ::seekStreamSource(FramedSource* inputSource, double& seekNPT, double /*streamDuration*/, u_int64_t& /*numBytes*/) { float const dur = duration(); unsigned const size = fOurDemux.fileSize(); unsigned absBytePosition = dur == 0.0 ? 0 : (unsigned)((seekNPT/dur)*size); // "inputSource" is a 'framer' // Flush its data, to account for the seek that we're about to do: if ((fStreamIdTag&0xF0) == 0xC0 /*MPEG audio*/) { MPEG1or2AudioStreamFramer* framer = (MPEG1or2AudioStreamFramer*)inputSource; framer->flushInput(); } else if ((fStreamIdTag&0xF0) == 0xE0 /*video*/) { MPEG1or2VideoStreamFramer* framer = (MPEG1or2VideoStreamFramer*)inputSource; framer->flushInput(); } // "inputSource" is a filter; its input source is the original elem stream source: MPEG1or2DemuxedElementaryStream* elemStreamSource = (MPEG1or2DemuxedElementaryStream*)(((FramedFilter*)inputSource)->inputSource()); // Next, get the original source demux: MPEG1or2Demux& sourceDemux = elemStreamSource->sourceDemux(); // and flush its input buffers: sourceDemux.flushInput(); // Then, get the original input file stream from the source demux: ByteStreamFileSource* inputFileSource = (ByteStreamFileSource*)(sourceDemux.inputSource()); // Note: We can make that cast, because we know that the demux was originally // created from a "ByteStreamFileSource". // Do the appropriate seek within the input file stream: inputFileSource->seekToByteAbsolute(absBytePosition); } float MPEG1or2DemuxedServerMediaSubsession::duration() const { return fOurDemux.fileDuration(); }
[ "chris@chrisberry.com.au" ]
chris@chrisberry.com.au
c355a9af365bc84fa0f9f8a3d3aa127aca946abb
02ce904c3a9d7aa35712f679a6165dbb6f457f56
/cpp_d06_2019/hospital/SickKoala.cpp
80d368f4a312a22d7d1aff95dcf1b8240502a446
[]
no_license
mvetois/CppPool
aaedd87fd7246127328a91940c37b9e639a9135c
01c7b3aa868bc3b283fa7b586a7f195333fd4eca
refs/heads/master
2022-11-15T10:46:55.424279
2020-07-09T10:07:18
2020-07-09T10:07:18
278,323,585
0
1
null
null
null
null
UTF-8
C++
false
false
1,078
cpp
/* ** EPITECH PROJECT, 2020 ** CPP Pool D06 ** File description: ** SickKoala */ #include "SickKoala.hpp" SickKoala::SickKoala(std::string name) { _name = name; } SickKoala::~SickKoala() { std::cout << "Mr." << _name << ": Kreooogg!! I'm cuuuured!" << std::endl; _name.empty(); } void SickKoala::poke() { std::cout << "Mr." << _name << ": Gooeeeeerrk!!" << std::endl; } bool SickKoala::takeDrug(std::string drug) { if (drug == "Mars") std::cout << "Mr." << _name << ": Mars, and it kreogs!" << std::endl; else if (drug == "Buronzand") std::cout << "Mr." << _name << ": And you'll sleep right away!" << std::endl; else { std::cout << "Mr." << _name << ": Goerkreog!" << std::endl; return false; } return true; } void SickKoala::overDrive(std::string str) { std::size_t pos = 0; while ((pos = str.find("Kreog!", pos)) != std::string::npos) str.replace(pos, 6, "1337!"); std::cout << "Mr."<< _name << ": " << str << std::endl; } std::string SickKoala::getName() { return(_name); }
[ "matt.vetois@gmail.com" ]
matt.vetois@gmail.com
6b15c74dfc84c673642b8aa84bd088b1c28a40e4
511c1603641596b02a1411efd624d05109ec0f2f
/New BVM/arduinoBVM/flowCount.ino
22478d781438a01bcfb6203efe2b199c278d095a
[]
no_license
bavensky/-BeerVendingMachine-
5c4ad3f58a4fc32aa88c0fd38520eb6c3c074d4d
5d3d88861d7f3797e2119f4706db54cc6571ca5b
refs/heads/master
2021-01-01T15:20:47.101837
2018-10-07T06:09:15
2018-10-07T06:09:15
97,596,847
0
0
null
null
null
null
UTF-8
C++
false
false
2,425
ino
void rpm () { // NbTopsFan++; pulseCount++; } void calFlow() { // NbTopsFan = 0; //Set NbTops to 0 ready for calculations if ((millis() - oldTime) > 1000) // Only process counters once per second { detachInterrupt(0); flowRate = ((1000.0 / (millis() - oldTime)) * pulseCount) / calibrationFactor; oldTime = millis(); flowMilliLitres = (flowRate / 60) * 1000; totalMilliLitres += flowMilliLitres; Serial.print("Output Liquid Quantity: "); Serial.print(totalMilliLitres); Serial.print("mL"); valBeer = valBeer - totalMilliLitres; attachInterrupt(0, rpm, FALLING); totalMilliLitres = 0; pulseCount = 0; } // sei(); // delay (1000); // cli(); // //flow rate in L / hour = (Pulse frequency x 60) / 7.5Q // Calc = (NbTopsFan * 60 / 7.5); // // Calc = (NbTopsFan * 2.25); // Calc = Calc * 60; // Calc = Calc / 1000; // flowSum += Calc; Serial.print(Calc); Serial.print(" L/Minute "); // Serial.print(" mL/Minute "); Serial.print(flowSum); Serial.println(" mL/Minute"); } //----------------------------measure flow function ---------------------------------------// void measureFlow() { detachInterrupt(0); flowRate = (1000 * pulseCount / delTime) / coeff; //see above flowRateMLS = flowRate * 1000 / 60; //(mL/s) ////this 1000 is unit conversion 1000 milli = 1 meter. flowCumVol += (flowRate / 60) * (delTime / 1000); // (L/sec)*(sec) = L //this 1000 is unit conversion 1000 ms = 1 sec previousTime = currentTime; reportResult(); pulseCount = 0; attachInterrupt(0, pulseCounter, FALLING); } //----------------------function to report measured result ---------------------------------// void reportResult() { // Serial.print("Flow Rate: "); // Serial.print(flowRate, 2); // Serial.print(" L/min"); //serial.print(variable, decimal) // Serial.print(" Flow Rate: "); // Serial.print(flowRateMLS, 1); // Serial.print(" mL/s"); // Serial.print(" Flow Sum: "); // sumWater += flowRateMLS; // Serial.print(sumWater, 1); // Serial.print(" mL/s"); // Serial.print(" Cumulative Vol: "); // Serial.print(flowCumVol, 2); // Serial.print(" L "); Serial.print(flowCumVol * 1000, 2); Serial.print(" mL"); Serial.println(" "); } //------------------------------function to count pulse ------------------------------------// void pulseCounter() { pulseCount++; }
[ "apiruk_sang-ngenchai@hotmail.com" ]
apiruk_sang-ngenchai@hotmail.com
1de2184192ab5d297eb42f2182fb6babb52cd341
666fed9e8946eb048b7a60a4247f15d5c99fb227
/software/xtract/xparameter.hpp
fef291a622780dfcb2e0d6a8de916fbb0000563b
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "Apache-2.0", "LicenseRef-scancode-protobuf", "BSD-2-Clause" ]
permissive
GreenComfyTea/CHaiDNN
dd7847b0066fef517973c895d78d5965d88b3286
9dbeac33d45fd40522259b119f77c97cc389a4e9
refs/heads/master
2020-09-02T05:57:12.449072
2019-11-02T20:56:56
2019-11-02T20:56:56
219,148,896
1
0
NOASSERTION
2019-11-02T12:12:08
2019-11-02T12:12:07
null
UTF-8
C++
false
false
43,703
hpp
/*---------------------------------------------------- * Copyright 2017 Xilinx, 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. * ----------------------------------------------------*/ #ifndef __XPARAMETER_HPP__ #define __XPARAMETER_HPP__ #include <stdio.h> #include <fcntl.h> #include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> #include <cmath> #include "../common/kernelinfo_class.h" #include "xi_funcs.hpp" using namespace std; // This function simply checks the number of tops and bottoms of a particular layer // A negative number denotes it can have any number of tops/bottoms // Zero means, it doesn't have top/bottom. // TODO : @ARK: How to enable one-or-more blobs? (Eg: Concat layer). Negative number can have 0 blobs also template<typename bottomType, typename topType> void checkNumberOfTopAndBottom(string layerType, const bottomType& bottom, const topType& top, int nB, int nT) { if((nB >= 0) && (bottom.size() != nB)) { cerr << "[EG001] " << layerType << " accepts strictly " << nB << " bottom blobs." << " " << "Bottom vector contains " << bottom.size() << " bottom blobs." << endl; exit(-1); } if((nT >= 0) && (top.size() != nT)) { cerr << "[EG002] " << layerType << " accepts strictly " << nT << " top blobs." << " " << "Top vector contains " << top.size() << " top blobs." << endl; exit(-1); } } enum _PoolingType { MAX=0, AVE=1 }; enum _engine { HW = 0, SW = 1 }; enum _PriorBoxType { CORNER = 1, CENTER_SIZE = 2, CORNER_SIZE = 3 }; enum _LRNType { ACROSS_CHANNELS = 0, WITHIN_CHANNEL = 1 }; enum _EltOpType { ELT_PROD = 0, ELT_SUM = 1, ELT_MAX = 2, }; enum _LayerType { Convolution , ReLU , Pooling , InnerProduct , Softmax , Input , LRN , Dropout , Concat , Argmax }; typedef enum _PoolingType PoolingType; typedef enum _LayerType LayerType; typedef enum _engine Engine; typedef enum _PriorBoxType PriorBoxType; typedef enum _LRNType LRNType; typedef enum _EltOpType EltOpType; /* ------------------------------ All Layer Parameters ------------------------- */ class ConvolutionParameter { public: // fields int N; // Input Feature Maps, it doesn't comes from user, we have to compute from input blob int M; // Output Feature Maps int filter_h, filter_w; // Filter size - filter_h x filter_w int stride_h, stride_w; // Stride int pad_h, pad_w; // Padding int dilation; // dilation factor int reluflag; // ReLU enabled/disabled int extra_reluflag; int group; // int has_bias; // If this convolution has bias_term or not vector<string> weightsPath; // All weight file names are stored in this. vector<string> biasPath; // All bias file paths are stored in this vector< vector<float> > weights; vector< vector<float> > bias; vector< vector<int> > weightsDim; vector< vector<int> > biasDim; int has_software_fuse; // lrn_params int lrn_lsize; float lrn_alpha; float lrn_beta; float lrn_k; LRNType lrn_type; // batchnorm params float batchnorm_eps; vector<string> batchnorm_meanPath; vector<string> batchnorm_variancePath; vector< vector<int> > batchnorm_meanDim; vector< vector<int> > batchnorm_varianceDim; vector<float> batchnorm_mean; vector<float> batchnorm_variance; float th_layer_in_batchnorm; float th_layer_out_batchnorm; vector<float> th_params_mean_batchnorm; vector<float> th_params_variance_batchnorm; // scale params vector<string> scale_gammaPath; vector<string> scale_betaPath; vector< vector<int> > scale_gammaDim; vector< vector<int> > scale_betaDim; vector<float> scale_gamma; vector<float> scale_beta; // scale offline threshold variables kvraju float th_layer_in_scale; float th_layer_out_scale; vector<float> th_params_gamma_scale; vector<float> th_params_beta_scale; // 3d Conv params int N_3d; // Input Feature Maps, it doesn't comes from user, we have to compute from input blob int M_3d; // Output Feature Maps int filter_h_3d, filter_w_3d; // Filter size - filter_h x filter_w int stride_h_3d, stride_w_3d; // Stride int pad_h_3d, pad_w_3d; // Padding int dilation_3d; // dilation factor int reluflag_3d; // ReLU enabled/disabled int group_3d; // int has_bias_3d; // If this convolution has bias_term or not int ip_bw_3d; int ip_fl_3d; int op_bw_3d; int op_fl_3d; int wt_bw_3d; int wt_fl_3d; vector<string> weightsPath_3d; // All weight file names are stored in this. vector<string> biasPath_3d; // All bias file paths are stored in this vector< vector<float> > weights_3d; vector< vector<float> > bias_3d; vector< vector<int> > weightsDim_3d; vector< vector<int> > biasDim_3d; float th_layer_in_3d; float th_layer_out_3d; vector<float> th_params_3d; // Constructor 1 ConvolutionParameter() :reluflag(0), extra_reluflag(0),has_software_fuse(0) {} // Destructor ~ConvolutionParameter() { // cout << "deleting Convolution Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Convolution: F = " + filterDimToString() + "; "; tmp += "S = " + to_string(stride_h) + "; "; tmp += "P = " + to_string(pad_h) + "; "; tmp += "D = " + to_string(dilation) + "; "; tmp += "Group = " + to_string(group) + "; "; tmp += "ReLU = " + to_string(reluflag) + "; "; tmp += "HasBias = " + to_string(has_bias) + "; "; tmp += "Weights = " + stringVectorToString(weightsPath) + "; "; tmp += "Bias = " + stringVectorToString(biasPath) + "; "; tmp += "WDim = " + dimVectorToString(weightsDim) + "; "; tmp += "BDim = " + dimVectorToString(biasDim) + "; "; return tmp; } // compute output dims // TODO : @ARK : The constraint on number of bottoms & tops wouldn't work // when consecutive layer fusion comes. So get rid of it in future void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Convolution", bottom, top, 1, 1); // Compute vector<int> bottomShape = bottom.at(0).blob->shape; int num_input_channels = bottomShape.at(1); int input_height = bottomShape.at(2); int input_width = bottomShape.at(3); int num_output_channels = M; int filter_extent_h = dilation * (filter_h - 1) + 1; int filter_extent_w = dilation * (filter_w - 1) + 1; int output_height = (input_height - filter_extent_h + 2 * pad_h) / stride_h + 1; int output_width = (input_width - filter_extent_w + 2 * pad_w) / stride_w + 1; top.at(0).blob->shape.resize(4); top.at(0).blob->shape.at(0) = 1; top.at(0).blob->shape.at(1) = num_output_channels; top.at(0).blob->shape.at(2) = output_height; top.at(0).blob->shape.at(3) = output_width; } string filterDimToString() { return to_string(M) + "x" + to_string(N/group) + "x" + to_string(filter_h) + "x" + to_string(filter_w); } }; class DeconvolutionParameter { public: // fields int N; // Input Feature Maps, it doesn't come from user, we have to compute from input blob int M; // Output Feature Maps int filter_h, filter_w; // Filter size - filter_h x filter_w int stride_h, stride_w; // Stride int pad_h, pad_w; // Padding int dilation; // dilation factor int reluflag; // ReLU enabled/disabled int group; int has_bias; // if it has the bias_term vector<string> weightsPath; // All weight file names are stored in this. vector<string> biasPath; // All bias file paths are stored in this vector< vector<float> > weights; vector< vector<float> > bias; vector< vector<int> > weightsDim; vector< vector<int> > biasDim; // Constructor 1 DeconvolutionParameter() {} // Destructor ~DeconvolutionParameter() { // cout << "deleting Deconvolution Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Deconvolution: F = " + filterDimToString() + "; "; tmp += "S = " + to_string(stride_h) + "; "; tmp += "P = " + to_string(pad_h) + "; "; tmp += "D = " + to_string(dilation) + "; "; tmp += "ReLU = " + to_string(reluflag) + "; "; tmp += "HasBias = " + to_string(has_bias) + " "; tmp += "Weights = " + stringVectorToString(weightsPath) + "; "; tmp += "Bias = " + stringVectorToString(biasPath) + "; "; tmp += "WDim = " + dimVectorToString(weightsDim) + "; "; tmp += "BDim = " + dimVectorToString(biasDim) + "; "; return tmp; } // compute output dims // TODO : @ARK : The constraint on number of bottoms & tops wouldn't work // when consecutive layer fusion comes. So get rid of it in future void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Deconvolution", bottom, top, 1, 1); // Compute vector<int> bottomShape = bottom.at(0).blob->shape; int num_input_channels = bottomShape.at(1); int input_height = bottomShape.at(2); int input_width = bottomShape.at(3); int num_output_channels = M; int filter_extent_h = dilation * (filter_h - 1) + 1; int filter_extent_w = dilation * (filter_w - 1) + 1; int output_height = stride_h * (input_height - 1) + filter_h - 2 * pad_h; int output_width = stride_w * (input_width - 1) + filter_w - 2 * pad_w; top.at(0).blob->shape.resize(4); top.at(0).blob->shape.at(0) = 1; top.at(0).blob->shape.at(1) = num_output_channels; top.at(0).blob->shape.at(2) = output_height; top.at(0).blob->shape.at(3) = output_width; } string filterDimToString() { return to_string(M) + "x" + to_string(N/group) + "x" + to_string(filter_h) + "x" + to_string(filter_w); } }; class ReLUParameter { public: // fields bool inPlace; // Constructor 1 ReLUParameter() {} // Constructor 2 ReLUParameter(bool _inPlace) : inPlace(_inPlace) {} // Destructor ~ReLUParameter() { // cout << "deleting ReLU Parameter" << endl;} } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "ReLU: "; tmp += "inPlace = " + to_string(inPlace); return tmp; } // Compute the output blob dimension void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check number of top and bottom checkNumberOfTopAndBottom("ReLU", bottom, top, 1, 1); if(inPlace == false) // Copy bottom blob dimensions as such top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class FCLayerParameter { public: // fields int N; // Number of input elements int M; // Number of output elements int reluflag; // ReLU enabled/disabled int has_bias; // if it has the bias_term vector<string> weightsPath; // All weight file names are stored in this. vector<string> biasPath; // All bias file paths are stored in this vector< vector<float> > weights; vector< vector<float> > bias; vector< vector<int> > weightsDim; vector< vector<int> > biasDim; // Constructor 1 FCLayerParameter() :reluflag(0) {} // Destructor ~FCLayerParameter() { // cout << "deleting FC Layer Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "InnerProduct: "; tmp += "W = " + filterDimToString() + "; "; tmp += "ReLU = " + to_string(reluflag) + "; "; tmp += "HasBias = " + to_string(has_bias) + "; "; tmp += "Weights = " + stringVectorToString(weightsPath) + "; "; tmp += "Bias = " + stringVectorToString(biasPath) + "; "; tmp += "WDim = " + dimVectorToString(weightsDim) + "; "; tmp += "BDim = " + dimVectorToString(biasDim) + "; "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("InnerProduct", bottom, top, 1, 1); // Compute vector<int> bottomShape = bottom.at(0).blob->shape; // But whatever comes, FC Layer output is 1x1x1xM top.at(0).blob->shape.resize(2); top.at(0).blob->shape.at(0) = 1; top.at(0).blob->shape.at(1) = M; } // TODO // NB : Input to FC layer might be coming from a convolution layer. // Convolution top blob has shape like this : 1 x C x H x W // But FC layer expects input blob of shape like this : 1 x 1 x 1 x C*H*W // There is no problem here, but while passing to host-code remember this. string filterDimToString() { return to_string(M) + "x" + to_string(N); } }; class SoftmaxParameter { public: // fields Engine device ; int axis; int nclasses; int nboxes; // Constructor 1 SoftmaxParameter() {} // Destructor ~SoftmaxParameter() { // cout << "deleting Softmax Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Softmax: "; tmp += "axis = " + to_string(axis) + ", "; tmp += "nclasses= " + to_string(nclasses) + ", "; tmp += "nboxes = " + to_string(nboxes) + ", "; return tmp; } // Compute the output blob dimension void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check number of top and bottom checkNumberOfTopAndBottom("Softmax", bottom, top, 1, 1); vector<int> bottomShape = bottom.at(0).blob->shape; if(axis >= bottomShape.size()) { cerr << "[EX010] axis < bottomDim for Softmax Layer : " << axis << " v/s " << bottomShape.size() << endl; exit(-1); } // Copy bottom blob dimensions as such top.at(0).blob->shape = bottomShape; } }; class ArgmaxParameter { public: // fields int top_k; // output top k Classes int axis; int nclasses; int nboxes; // Constructor 1 ArgmaxParameter() {} // Destructor ~ArgmaxParameter() { // cout << "deleting Argmax Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Argmax: "; tmp += "top_k = " + to_string(top_k) + ", "; tmp += "axis = " + to_string(axis) + ", "; tmp += "nclasses= " + to_string(nclasses) + ", "; tmp += "nboxes = " + to_string(nboxes) + ", "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Argmax", bottom, top, 1, 1); vector<int> topShape = bottom.at(0).blob->shape; int tmp_top_k = top_k; // axis should be less than bottom blob shape dim if(axis >= topShape.size()) { cerr << "[EX011] Argmax axis should be smaller than the bottom blob dims : " << axis << " v/s " << topShape.size() << endl; exit(-1); } // top_k should be less than bottom blob shape dim if(top_k >= topShape.at(axis)) { cerr << "[EX012] Argmax top_k should be smaller than the number of elements : " << top_k << " v/s " << topShape.size() << endl; exit(-1); } topShape.at(axis) = tmp_top_k; top.at(0).blob->shape = topShape; } }; class PoolingParameter { public: // fields int kernel_h, kernel_w; int stride_h, stride_w; int pad_h, pad_w; PoolingType PoolType; int N; // number of I/O planes // Constructor 1 PoolingParameter() {} // Destructor ~PoolingParameter() { // cout << "deleting Pooling Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; string type = PoolType == 0 ? "MAXPOOL" : "AVGPOOL"; tmp += "Pooling : "; tmp += "PoolType = " + type + "; "; tmp += "N = " + to_string(N) + "; "; tmp += "K = " + to_string(kernel_h) + "; "; tmp += "S = " + to_string(stride_h) + "; "; tmp += "P = " + to_string(pad_h) ; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Pooling", bottom, top, 1, 1); // Compute vector<int> bottomShape = bottom.at(0).blob->shape; int num_input_channels = bottomShape.at(1); int input_height = bottomShape.at(2); int input_width = bottomShape.at(3); int num_output_channels = num_input_channels; int output_height = int(ceil((input_height - kernel_h + 2 * pad_h) / float(stride_h))) + 1; int output_width = int(ceil((input_width - kernel_w + 2 * pad_w) / float(stride_w))) + 1; top.at(0).blob->shape.resize(4); top.at(0).blob->shape.at(0) = 1; top.at(0).blob->shape.at(1) = num_output_channels; top.at(0).blob->shape.at(2) = output_height; top.at(0).blob->shape.at(3) = output_width; } }; class DropoutParameter { public: // fields bool inPlace; float dropout_ratio; // Constructor 1 DropoutParameter() {} // Destructor ~DropoutParameter() { // cout << "deleting Dropout Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "DropOut : ratio = " + to_string(dropout_ratio); return tmp; } // Compute the output blob dimension void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check number of bottom and top blobs checkNumberOfTopAndBottom("Dropout", bottom, top, 1, 1); if(inPlace == false) // Copy bottom blob dimensions as such top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class InputParameter { public: // fields vector<int> dim; // Constructor 1 InputParameter() {} // Destructor ~InputParameter() { // cout << "deleting Input Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Input Layer: dim = " + TensorDimToString(dim); return tmp; } // Compute the output blob dimension void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check number of bottom and top blobs checkNumberOfTopAndBottom("Input", bottom, top, 0, 1); // Copy bottom blob dimensions as such top.at(0).blob->shape = dim; } }; class LRNParameter { public: // fields int lsize; float alpha; float beta; float k; LRNType type; // Constructor 1 LRNParameter() {} // Destructor ~LRNParameter() { // cout << "deleting LRN Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; string tmptype = (type == ACROSS_CHANNELS) ? "ACROSS_CHANNEL" : "WITHIN_CHANNEL" ; tmp += "LRN Layer: "; tmp += "size = " + to_string(lsize) + " "; tmp += "alpha = " + to_string(alpha) + " "; tmp += "beta = " + to_string(beta) + " "; tmp += "k = " + to_string(k) + " "; tmp += "type = " + tmptype + " "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("LRN Layer", bottom, top, 1, 1); // Compute top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class ConcatParameter { public: // fields int axis; // axis along concatenation, default = 1 (channels) // Constructor 1 ConcatParameter() {} // Destructor ~ConcatParameter() { // cout << "deleting Concat Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Concat Layer: "; tmp += "Axis = " + to_string(axis) + "; " ; return tmp; } // Compute the output blob dimension void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check number of top and bottom checkNumberOfTopAndBottom("Concat", bottom, top, -1, 1); // XXX : @ARK : Concat layer needs atleast one bottom, which is not ensured in above check if(bottom.size() == 0) { cerr << "[EX004] Concat Layer doesn't have a blob in bottom" << endl; exit(-1); } // Make sure all bottoms have same spatical dimension, i.e same height x width // Take first bottom as reference // int h = bottom.at(0).blob->shape[2]; // int w = bottom.at(0).blob->shape[3]; // int c = 0; // for(int i=0; i<bottom.size(); i++) // { // if((bottom.at(i).blob->shape[2] != h) || (bottom.at(i).blob->shape[3] != w)) // { // cerr << "[EX005] Height & Width of bottom blobs of Concat layer doesn't match" << endl; // exit(-1); // } // else // { // c += bottom.at(i).blob->shape[1]; // Accumulate all channels // } // } vector<int> shape = bottom.at(0).blob->shape; // Axis shouldn't be more than the blob size if(axis >= shape.size()) { cerr << "[EX013] axis should be smaller than the blob dims : " << axis << " v/s " << shape.size() << endl; exit(-1); } for(int i=1; i<bottom.size(); i++) { // To concatenate along an axis, remaining dimension(if any) should be same for both blobs for(int j=axis+1; j<shape.size(); j++) { if(bottom.at(i).blob->shape.at(j) != shape.at(j)) { cerr << "[EX005] Shape Mismatch for bottom blobs of Concat Layer. " << TensorDimToString(shape) << " v/s " << TensorDimToString(bottom.at(i).blob->shape) << endl; exit(-1); } } shape.at(axis) += bottom.at(i).blob->shape.at(axis); } top.at(0).blob->shape = shape; //top.at(0).blob->shape.resize(4); //top.at(0).blob->shape.at(0) = 1; top.at(0).blob->shape.at(1) = c; //top.at(0).blob->shape.at(2) = h; top.at(0).blob->shape.at(3) = w; } }; class CropParameter { public: // fields // TODO : @ARK : Supporting only spatial cropping with same offset on X & Y direction int axis; int offset; int crop_height, crop_width; // Constructor 1 CropParameter() {} // Destructor ~CropParameter() { // cout << "deleting Crop Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Crop : "; tmp += "axis = " + to_string(axis) + "; "; tmp += "offset = " + to_string(offset) + "; "; tmp += "crop_HxW = " + to_string(crop_height) + "x" + to_string(crop_width) + "; "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Crop", bottom, top, 2, 1); // Compute // first bottom is to be cropped, second bottom is the reference. vector<int> refBottomShape = bottom.at(1).blob->shape; vector<int> testBottomShape = bottom.at(0).blob->shape; // Basically, crop needs a lot of checking. // #1. Spatial size of test should be more than the reference by atleast "offset" pixels. if((testBottomShape[2] < refBottomShape[2] + offset) || testBottomShape[3] < refBottomShape[3] + offset) { cerr << "[EX006] Bottom to be cropped is not large enough." << endl; exit(-1); } vector<int> topShape = refBottomShape; topShape.at(1) = testBottomShape.at(1); top.at(0).blob->shape = topShape; } }; class FlattenParameter { public: // fields // TODO : @ARK : Flatten in Caffe supports multiple varieties of flatten // based on the axis & end_axis provided values. // Since the i/p dimension & o/p dimension will vary depending upon the axis & end_axis // we need to support atleast axis (because SSD uses it) int axis; int end_axis; // Constructor 1 FlattenParameter() {} // Destructor ~FlattenParameter() { // cout << "deleting Flatten Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Flatten : "; tmp += "axis = " + to_string(axis) + "; "; tmp += "end_axis = " + to_string(end_axis) + "; "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Flatten", bottom, top, 1, 1); // Compute // first bottom is to be cropped, second bottom is the reference. vector<int> bottomShape = bottom.at(0).blob->shape; vector<int> shape; if(axis >= bottomShape.size()) { cerr << "[EX014] Flatten Layer: axis < number of axes in bottom blob. " << axis << "v/s" << bottomShape.size() << endl; exit(-1); } // copy the dimension before specified axis as such for(int i=0; i<axis; i++) { shape.push_back(bottomShape.at(i)); } // accumulate the dimension after specified axis int prod = 1; for(int i=axis; i<bottomShape.size(); i++) { prod *= bottomShape.at(i); } shape.push_back(prod); top.at(0).blob->shape = shape; } }; class PermuteParameter { public: // fields // TODO : @ARK : Permute Layer is introduced in SSD. // It basically rearranges the data based on the order of axis given // If I am correct, currently we support only permute for order (0, 2, 3, 1) which is in SSD // But I think we need a generic Permute kernel, but need to see if any HW specific optimization is provided. vector<int> order; // Constructor 1 PermuteParameter() {} // Destructor ~PermuteParameter() { // cout << "deleting Permute Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Permute: "; tmp += "order : " + TensorDimToString(order); return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Permute", bottom, top, 1, 1); // Compute // first bottom is to be cropped, second bottom is the reference. vector<int> bottomShape = bottom.at(0).blob->shape; vector<int>topShape(4); for(int i=0; i<topShape.size(); i++) { topShape.at(i) = bottomShape.at(order.at(i)); } top.at(0).blob->shape = topShape; } }; class L2NormalizeParameter { public: // fields // across_spatial // If True, squared sum is taken over all the pixels. (Output = 1 value) // If False, squared sum is taken across channels only.(Output = HxW values) bool across_spatial; // channel_shared - If it is true, gamma will have one value. // If it is false, each channel will have its own gamma value (like bias values) bool channel_shared; // A small addition constant to avoid Zero-SquareRoot float eps; // Trained scale values vector<float> gamma; string gammaFile; // Constructor 1 L2NormalizeParameter() {} // Destructor ~L2NormalizeParameter() { // cout << "deleting Normalize Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "L2-Normalize: "; tmp += "gamma_size : " + to_string(gamma.size()) + " "; tmp += "gamma file : " + gammaFile; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("L2Normalize", bottom, top, 1, 1); // Compute top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class PriorBoxParameter { public: // fields // string codeType; // = CORNER/CENTER_SIZE/CORNER_SIZE vector<float> min_size; // Min. box size in px vector<float> max_size; // Max. box size in px vector<float> aspect_ratio; // Aspect ratios, default = 1 bool flip; // If true, reciprocal of aspect ratio is also considered bool clip; // If true, prior box is clipped b/w [0, 1] vector<float> variance; // It will be a 4D vector int img_size; // Either mention [img_size] or [img_h, img_w]. Not both !! int img_h; int img_w; float step; // Either mention [step] or [step_h, step_w]. Not both !! float step_h; float step_w; float offset; // Offset to the top left corner of each cell. vector<float> pbox; // pbox is the precomputed priorBoxes and Variances. Shape [1 x 2 x nboxes*4] vector<int> pboxShape; // pboxShape is same as top.shape, but last dimension gives number of elements in each file // Constructor 1 PriorBoxParameter() {} // Destructor ~PriorBoxParameter() { // cout << "deleting PriorBox Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "PriorBox : "; tmp += "ar: " + TensorDimToString(aspect_ratio, ", ") + " "; tmp += "var: " + TensorDimToString(variance, ", ") + " "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("PriorBox", bottom, top, 2, 1); // First bottom is the intermediate feature map, second bottom is the 'data' // This way, if 'step' is not mentioned in deploy, they can calculate it by comparing sizes // TODO : @ARK : There is lot of confusion within diff version of SSD, especially number of ARs. int layer_width = bottom.at(0).blob->shape.at(3); int layer_height= bottom.at(0).blob->shape.at(2); vector<int> topShape(3); topShape.at(0) = 1; topShape.at(1) = 2; int totalar = 1; if(flip) totalar += 2*aspect_ratio.size(); else totalar += aspect_ratio.size(); if(max_size.size() > 0) { totalar += 1; } // cerr << "PriorBox : " << totalar << endl; topShape.at(2) = totalar * 4 * layer_width * layer_height; top.at(0).blob->shape = topShape; } }; class ReshapeParameter { public: // fields vector<int> shape; // Output Shape int axis; // TODO : @ARK : Currently, only axis = 0 is supported int num_axes; // TODO : @ARK : Currently, only num_axis = -1 is supported // Constructor 1 ReshapeParameter() {} // Destructor ~ReshapeParameter() { // cout << "deleting Reshape Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Reshape : "; tmp += "shape : " + TensorDimToString(shape, ", ") + " "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Reshape", bottom, top, 1, 1); vector<int> bottomShape = bottom.at(0).blob->shape; int totalElems = getSize(bottomShape); vector<int> topShape(shape.size()); // Simply copy direct shapes int minusOneIndex = -1; for(int i=0; i<shape.size(); i++) { if(shape.at(i) != -1) { // if shape[i] = 0, simply copy bottom[i] to top[i], else top[i] = shape[i] topShape.at(i) = (shape.at(i) == 0) ? bottomShape.at(i) : shape.at(i); } else { minusOneIndex = i; } } // Special care for -1 case if(minusOneIndex != -1) { if(getSize(bottomShape) % getSizeExcludingAxis(topShape, minusOneIndex) == 0) { topShape.at(minusOneIndex) = getSize(bottomShape) / getSizeExcludingAxis(topShape, minusOneIndex); } else { cerr << "[EX015] Total number of elements should be maintained during Reshape. " << TensorDimToString(bottomShape) << " vs " << TensorDimToString(shape) << endl; exit(-1); } } // cerr << "Reshape output shape : " << TensorDimToString(topShape) << endl; top.at(0).blob->shape = topShape; } }; class NMSParameter { public: // fields int num_classes; // Number of classes to be predicted. Required! bool share_location; // [true] If true, bounding box are shared among different classes, [true] int background_label_id; // [0] Background label id. If there is no background class,set it as -1. [0] float nms_threshold; // [0.3] Threshold to be used in nms int nms_top_k; // Maximum number of NMS results to be kept float nms_eta; // [1.0] Parameter for adaptive nms PriorBoxType code_type; // [CORNER] Type of coding method for bbox. bool variance_encoded_in_target; // [false] If true, variance is encoded in target; otherwise we need to adjust the predicted offset accordingly. int keep_top_k; // [-1] Number of top-scoring boxes to keep after NMS. -1 means keep all float confidence_threshold; // only consider detection with confidence more than this. If not provided, consider all. // File details for priorbox & variance string pboxFile; vector<int> pboxShape; vector<float> pbox; string varFile; vector<int> varShape; vector<float> var; // Constructor 1 NMSParameter() {} // Destructor ~NMSParameter() { // cout << "deleting NMS Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; string tmp_code_type = (code_type == CORNER) ? "CORNER" : (code_type == CENTER_SIZE) ? "CENTER_SIZE" : (code_type == CORNER_SIZE) ? "CORNER_SIZE" : "Unidentified"; tmp += "NMS : "; tmp += "classes: " + to_string(num_classes) + ", "; tmp += "nms_thresh: " + to_string(nms_threshold) + ", "; tmp += "nms_top_k: " + to_string(nms_top_k) + ", "; tmp += "code_type: " + tmp_code_type + ", "; tmp += "keep_top_k: " + to_string(keep_top_k) + ", "; tmp += "conf_thresh: " + to_string(confidence_threshold) + ", "; tmp += "pboxFile: " + pboxFile + ", "; tmp += "pboxShape: " + TensorDimToString(pboxShape) + ", "; tmp += "varFile: " + varFile + ", "; tmp += "varShape: " + TensorDimToString(varShape) + ", "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("NMS", bottom, top, 3, 1); // bottoms in order - [loc, conf, prior_box] // We can't really pre-compute the number of output boxes detected. // But we can calculate the worst-case size, which is total number of boxes = loc[1]/4 int total_boxes = keep_top_k < bottom.at(0).blob->shape.at(1) ? keep_top_k : bottom.at(0).blob->shape.at(1); vector<int> topShape(4, 1); topShape.at(2) = total_boxes; topShape.at(3) = 7; top.at(0).blob->shape = topShape; } }; class TransformationParameter { public: // fields int resize_height; int resize_width; // Constructor 1 TransformationParameter() :resize_height(0), resize_width(0) {} // Destructor ~TransformationParameter() { // cout << "deleting Transformation Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "resize_height = " + to_string(resize_height) + ", "; tmp += "resize_width = " + to_string(resize_width) + ", "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) {} }; class EltwiseParameter { public: // fields EltOpType type; vector<float> coeff; bool reluflag; // Constructor 1 EltwiseParameter() :reluflag(false) {} // Destructor ~EltwiseParameter() { // cout << "deleting Eltwise Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; string type_str; switch (type) { case ELT_PROD: type_str = "ELT_PROD"; break; case ELT_SUM: type_str = "ELT_SUM"; break; case ELT_MAX: type_str = "ELT_MAX"; break; //case MIN: // type_str = "MIN"; // break; default: cerr << "[EX061] Unsupported operation type for Eltwise" << endl; exit(0); } tmp += "Eltwise Layer: "; tmp += "Type of Operation = " + type_str ; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Eltwise", bottom, top, 2, 1); top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class BatchNormParameter { public: // fields bool global_stats; float eps; bool inPlace; bool reluflag; vector<string> meanPath; // All weight file names are stored in this. vector<string> variancePath; // All bias file paths are stored in this vector< vector<float> > mean; vector< vector<float> > variance; vector< vector<int> > meanDim; vector< vector<int> > varianceDim; // Constructor 1 BatchNormParameter() {} // Destructor ~BatchNormParameter() { // cout << "deleting BatchNorm Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "BatchNorm Layer: "; tmp += "global_stats: " + to_string(global_stats) + ", "; tmp += "eps: " + to_string(eps) + ", "; tmp += "inPlace: " + to_string(inPlace); return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("BatchNorm Layer", bottom, top, 1, 1); // Compute if(!inPlace) top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class ScaleParameter { public: // fields int axis; int num_axes; bool inPlace; bool reluflag; int has_bias; // if it has the bias_term vector<string> gammaPath; // All weight file names are stored in this. vector<string> betaPath; // All bias file paths are stored in this vector< vector<float> > gamma; vector< vector<float> > beta; vector< vector<int> > gammaDim; vector< vector<int> > betaDim; // Constructor 1 ScaleParameter() {} // Destructor ~ScaleParameter() { // cout << "deleting Scale Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Scale Layer: "; tmp += "axis: " + to_string(axis) + ", "; tmp += "num_axes: " + to_string(num_axes) + ", "; tmp += "inPlace: " + to_string(inPlace); return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Scale Layer", bottom, top, 1, 1); // Compute if(!inPlace) top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class PowerParameter { public: // fields float power; float scale; float shift; bool inPlace; // Constructor 1 PowerParameter() {} // Destructor ~PowerParameter() { // cout << "deleting Power Parameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "Power Layer: "; tmp += "power: " + to_string(power) + ", "; tmp += "scale: " + to_string(scale) + ", "; tmp += "shift: " + to_string(shift); return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { // Check if number of bottom and top blobs are correct. checkNumberOfTopAndBottom("Power Layer", bottom, top, 1, 1); // Compute top.at(0).blob->shape = bottom.at(0).blob->shape; } }; class XCustomParameter { public: // fields string type; // The actual layer type coming from user bool inPlace; // whether it does an inplace operation vector<vector<int> > input_dims;// Dimesions of input blobs vector<vector<int> > output_dims;// Dimesions of input blobs vector<int> output_dim; // Output dimension should come from the user vector<float> float_args; // All float, int and boolean args from prototxt will be here vector<string> string_args; // All string args from prototxt will be here. vector<vector<float> > params; // Trained parameters of the layer vector<vector<int> > params_dims;// dimensions of parameters bool reluflag; // Constructor 1 XCustomParameter():reluflag(0) {} // Destructor ~XCustomParameter() { // cout << "deleting XCustomParameter" << endl; } // Helper function to return a string representation of XLayer string str() { string tmp = ""; tmp += "XCustom Layer: "; tmp += "type: " + type + "; "; tmp += "string_args : " + stringVectorToString(string_args) + "; "; tmp += "float_args : " + TensorDimToString(float_args, ", ") + "; "; // for(int i=0; i<params.size(); ++i) // { // tmp += "\nparams_" + to_string(i) + ":\n" + TensorDimToString(params[i], ", "); // } return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { top.at(0).blob->shape = output_dim; } }; class XPackParameter { public: int pack; // To pack incoming data, pack=true. To unpack incoming data, pack=false int fbits; vector<Port_info> in_port_vec; vector<Port_info> out_port_vec; // Constructor 1 XPackParameter() {} // Destructor ~XPackParameter() {} // Helper function to return a string representation of XLayer string str() { string operation = pack ? "Pack" : "Unpack"; string tmp = ""; tmp += "XPack Layer: "; tmp += "Operation: " + operation + "; "; return tmp; } // compute output dims void computeOutputDim(vector<nameIndex>& bottom, vector<nameIndex>& top) { top.at(0).blob->shape = bottom.at(0).blob->shape; } }; #endif // __XPARAMETER_HPP__
[ "klunics97@gmail.com" ]
klunics97@gmail.com
4700f24c5e635d9e4226b8fdd04faa2df1961eb0
c4d88caa442fa2e9fd3ed56360ccd99480b6ee63
/graph/DialogGLHandlers/stdafx.cpp
08aeac4f708780aaf6ed7637693583e86a76d2c6
[]
no_license
zjwork01/graph
c8137062052cd0d9cdc2d1b5f254c57132760ff1
5b941bcfb60d3ac7de98dfee2d26716db165df4e
refs/heads/master
2021-01-25T05:10:23.591965
2017-06-07T07:41:16
2017-06-07T07:41:16
93,518,341
0
0
null
null
null
null
UTF-8
C++
false
false
207
cpp
// stdafx.cpp : source file that includes just the standard includes // DialogGLHandlers.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "zj1109929354@163.com" ]
zj1109929354@163.com
5fd6929bc5adf8056fd4a349aca0ba5e733ed113
c676bcf38a8e3833699752cf03f361b74fcc3e20
/tutorials/tut_layout_buttons.cpp
f4c90dddc63286ec430bd2cac310212bbacf29f3
[ "BSD-3-Clause" ]
permissive
rocee/CanvasCV
9fa619e9a5f6398f28cad76682f8c9364ac33e15
85235e5c6270df0feb6f960254b67a04653f1221
refs/heads/master
2021-04-15T10:31:51.462153
2017-07-26T11:41:40
2017-07-26T11:41:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,597
cpp
#include <canvascv/canvas.h> #include <canvascv/widgets/button.h> #include <canvascv/widgets/verticallayout.h> using namespace cv; using namespace canvascv; int main(int argc, char **argv) { --argc; ++argv; if (! argc) { Canvas::fatal("Must get a path to an image as a parameter" , -1); } Mat image = imread(argv[0]); if (image.empty()) { Canvas::fatal(string("Cannot load image ") + argv[0], -2); } namedWindow("LayoutButtons", WINDOW_AUTOSIZE); // disable mouse resize moveWindow("LayoutButtons", 10, 10); Canvas c("LayoutButtons", image.size()); c.setMouseCallback(); c.enableStatusMsg(); auto vLayout = VerticalLayout::create(c, {100,100}); Button::create(*vLayout, // on the canvas "First Button", // displayed on button "one"); // displayed during mouse hover Button::create(*vLayout, // on the canvas "Second Button", // displayed on button "two"); // displayed during mouse hover Button::create(*vLayout, // on the canvas "Third Button", // displayed on button "three"); // displayed during mouse hover vLayout->at<Button>(0)->setStretchX(true); vLayout->at<Button>(1)->setStretchX(true); vLayout->at<Button>(2)->setStretchX(true); int key = 0; c.setImage(image); do { key = c.waitKeyEx(); // GUI and callbacks happen here } while (key != 'q'); destroyAllWindows(); return 0; }
[ "sagi.zeevi@gmail.com" ]
sagi.zeevi@gmail.com
a3252be11d018594aba93da7bc359fc302305c20
88935ce124c354acdb013df9a499067444829ca0
/solutions/1913.cpp
621dc027a7414448bf890301dd0509f223c5be23
[]
no_license
pascal-the-elf/TIOJ-ASE
6883e4d0d0a23f02d3f2efe58bf5bd9537952384
181ba41b732d52f9c8c728be247961dda3bd4398
refs/heads/main
2023-06-04T11:40:20.715491
2021-06-27T16:35:40
2021-06-27T16:35:40
377,033,735
0
0
null
null
null
null
UTF-8
C++
false
false
1,005
cpp
#pragma g++ optimize("Ofast") #pragma loop_opt(on) #include <cstdio> inline char readchar() { constexpr int B = 1<<20; static char buf[B], *p=buf, *q=buf; if(p == q && (q=(p=buf)+fread(buf,1,B,stdin)) == buf) return EOF; return *p++; } inline int nextint() { int x = 0, c = readchar(); while('0'>c || c>'9') c = readchar(); while('0'<=c&&c<='9') x=x*10+(c^'0'), c=readchar(); return x; } int v[5001]; inline void solve() { int n = nextint(); for(int i = 1; i <= n; i++) v[i] = nextint(); int ans = 0; for(int i = 1; i <= n; i++) { int mx = -1, mn = n+1; for(int j = i; j <= n; j++) { mx = (mx > v[j] ? mx : v[j]); mn = (mn < v[j] ? mn : v[j]); int MX = v[i] > v[j] ? v[i] : v[j]; int MN = v[i] < v[j] ? v[i] : v[j]; if(i!=j && MX-MN == j-i && MX == mx && MN == mn) ++ans; } } printf("%d\n", ans); } signed main() { int t = nextint(); while(t--) solve(); }
[ "jacoblincool@gmail.com" ]
jacoblincool@gmail.com
d73fb22c2c730725bde362fae7f582e617f049ff
b4c0b4a5441d48cd81e9468804b67c083dd3945b
/Tools/Maths.h
d2505eb4dfb79252c8165aee8486e5249caf7e9c
[]
no_license
mikeharfoot/Madingley-1
40678438e297eec47eda71c21e214b39415ed9db
1bb5d9cd57bc5376d2f2fc81304ad493e2a8efa0
refs/heads/master
2020-07-14T18:50:58.658564
2019-08-30T10:33:46
2019-08-30T10:33:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,541
h
#ifndef MATH #define MATH #include "Types.h" #include "Constants.h" #include <typeinfo> class Maths { public: ~Maths( ); static Types::MathsPointer Get( ); long double Pi( ) const; int Floor( const double& ) const; int Ceil( const double& ) const; int Round( const double& ) const; double Abs( const double& ) const; double Min( const double&, const double& ) const; double Max( const double&, const double& ) const; double Log( const double& ) const; double Log10( const double& ) const; double Exp( const double& ) const; double Pow( const double&, const double& ) const; double NthRoot( const double&, const double& ) const; unsigned Mod( const unsigned&, const unsigned& ) const; template< class T > int Sum( const std::vector< T >& values ) const { int sum = 0; for( unsigned index = 0; index < values.size( ); ++index ) { sum += values[ index ]; } return sum; } template< class T > int Product( const std::vector< T >& values ) const { int product; for( unsigned index = 0; index < values.size( ); ++index ) { if( index == 0 ) { product = values[ index ]; } else { product *= values[ index ]; } } return product; } private: Maths( ); static Types::MathsPointer mThis; long double mPi; }; #endif
[ "noreply@github.com" ]
mikeharfoot.noreply@github.com
17fee6cda44bde97c566467855543088d933893b
8bfc760af6a5dd970a7045a5d9927be251c62bc3
/Training/train5_NETWORKS.cpp
f084c5098586a77456bd23c5d0633931b8af3177
[]
no_license
sonnv0812/ttud.20192
9a23eff68e25dd74735ea68108c2bb20a71cfbd4
e0b0443c7e7b729a4ff6e28bc8c5b41379a30c72
refs/heads/master
2023-01-08T22:31:01.957357
2020-11-05T05:05:07
2020-11-05T05:05:07
310,195,328
1
0
null
null
null
null
UTF-8
C++
false
false
732
cpp
#include<bits/stdc++.h> using namespace std; #define ii pair<int,int> int n,k,m; vector<ii> adj[10011]; int f[10011]; int ans = __INT32_MAX__; void dfs(int x, int p, int depth){ if (depth == k) { ans = min(ans, f[x]); return; } for(auto i: adj[x]){ int y = i.first; if (y == p) { continue; } f[y] = i.second + f[x]; dfs(y,x, depth+1); } } int main(){ cin >> n >> k >> m; while (m--) { int x,y,w; cin >> x >> y >> w; adj[x].push_back(ii(y,w)); adj[y].push_back(ii(x,w)); } for (int i = 0; i < n; i++) { f[i] = 0; dfs(i,0,0); } cout << ans; }
[ "vansonducchinh@gmail.com" ]
vansonducchinh@gmail.com
e1fa7cce792fcce0a5925c368d83fd9a1eb17e21
011006ca59cfe75fb3dd84a50b6c0ef6427a7dc3
/codeforces/AIM-TECH-5/b.cpp
e91de244e74edf22e22efe1cb3fd9f86f7af88b1
[]
no_license
ay2306/Competitive-Programming
34f35367de2e8623da0006135cf21ba6aec34049
8cc9d953b09212ab32b513acf874dba4fa1d2848
refs/heads/master
2021-06-26T16:46:28.179504
2021-01-24T15:32:57
2021-01-24T15:32:57
205,185,905
5
3
null
null
null
null
UTF-8
C++
false
false
1,966
cpp
/* ____________________________________________________________ | | | Author: ay2306 | |____________________________________________________________| */ #include <bits/stdc++.h> #define MOD 1000000007 #define test int t; cin>>t; while(t--) #define init(arr,val) memset(arr,val,sizeof(arr)) #define loop(i,a,b) for(int i=a;i<b;i++) #define loopr(i,a,b) for(int i=a;i>=b;i--) #define loops(i,a,b,step) for(int i=a;i<b;i+=step) #define looprs(i,a,b,step) for(int i=a;i>=b;i-=step) #define ull unsigned long long int #define ll long long int #define P pair #define PLL pair<long long, long long> #define PII pair<int, int> #define PUU pair<unsigned long long int, unsigned long long int> #define L list #define V vector #define D deque #define ST set #define MS multiset #define M map #define UM unordered_map #define mp make_pair #define pb push_back #define pf push_front #define MM multimap #define F first #define S second #define IT iterator #define RIT reverse_iterator #define FAST ios_base::sync_with_stdio(false);cin.tie();cout.tie(); #define FILE_READ freopen("input.txt","r",stdin);freopen("output.txt","w",stdout); #define MAXN 25 using namespace std; ll readInt () { bool minus = false; int result = 0; char ch; ch = getchar(); while (true) { if (ch == '-') break; if (ch >= '0' && ch <= '9') break; ch = getchar(); } if (ch == '-') minus = true; else result = ch-'0'; while (true) { ch = getchar(); if (ch < '0' || ch > '9') break; result = result*10 + (ch - '0'); } if (minus) return -result; else return result; } int main(){ int n,m; n = readInt(); m = readInt(); string a = ""; string b = ""; int sum = 0; while(sum < n){ sum+=9; a+="9"; } b = a; for(int i = 0; i+1 < a.length(); ++i)b+="0"; b+="1"; cout << a << endl << b; // cout << endl << a.length() << endl << b.length(); return 0; }
[ "mahajan.ayush2306@gmail.com" ]
mahajan.ayush2306@gmail.com
16d61c4579bf93dee9a458e4c822d298e1aee502
d51f23605ba300af47c5aef5f10282d74b05626a
/Operator Checker.cpp
e80a4870a7ebc31bdecf66614d738de85996d987
[]
no_license
TarekAhamed-LIV3D/Compiler
b5233d0c3374091b6fa07085d589a0f6d23e5be1
199b47e6499eb3d621c6880f8478e8cf43b4a86c
refs/heads/main
2023-01-03T15:12:52.007277
2020-10-28T07:56:55
2020-10-28T07:56:55
307,935,913
0
0
null
null
null
null
UTF-8
C++
false
false
4,471
cpp
#include <iostream> #include <cstring> #include <typeindex> int main(){ int i,l; cout << ("Lets"); char c,str[100]; puts("Enter the string and type $ to stop"); while((c=getchar()) != '$') str[i++] = c; str[i] = '\0'; i = 0; while(str[i] != '\0') { if(!isalpha(str[i]) && !isdigit(str[i])) switch(str[i]) { case '+': if(str[i] == '+' && str[i+1] != '=' && str[i+1] != '+') puts("Plus Operator +"); else if(str[i+1] == '=') { puts("Assignment Operator ="); i++; } else if(str[i+1] == '+') { puts("Increment Operator ++"); i++; } break; case '-': if(str[i] == '-' && str[i+1] != '=' && str[i+1] != '-') puts("Minus Operator -"); else if(str[i+1] == '=') { puts("Assignment Operator -="); i++; } else if(str[i+1] == '-') { puts("Decrement Operator --"); i++; } break; case '*': if(str[i] == '*' && str[i+1] != '=') puts("Multiply Operator *"); else if(str[i+1] == '=') { puts("Assignment Operator *="); i++; } break; case '/': if(str[i] == '/' && str[i+1] != '=') puts("Devided Operator /"); else if(str[i+1] == '=') { puts("Assignment Operator /="); i++; } break; case '%': if(str[i] == '%' && str[i+1] != '=') puts("Arithmetic Operator %"); else if(str[i+1] == '=') { puts("Assignment Operator %="); i++; } break; case '^': if(str[i] == '^' && str[i+1] != '=') puts("Arithmetic Operator ^"); else if(str[i+1] == '=') { puts("Assignment Operator ^="); i++; } break; case '|': if(str[i] == '|' && str[i+1] != '=' && str[i+1] != '!') puts("Bitwise Or Operator !"); else if(str[i+1] == '=') { puts("Assignment Operator |="); i++; } else if(str[i+1] == '!') { puts("Logical Or Operator ||"); i++; } break; case '<': if(str[i] == '<' && str[i+1] != '=' && str[i+1] != '<') puts("Less than Operator <"); else if(str[i+1] == '=') { puts("Less than or equal Operator <="); i++; } else if(str[i+1] == '<') { puts("Left shift Operator <<"); i++; } break; case '>': if(str[i] == '>' && str[i+1] != '=' && str[i+1] != '>') puts("Greater than Operator >"); else if(str[i+1] == '=') { puts("Greater than or equal Operator <="); i++; } else if(str[i+1] == '>') { puts("Right shift Operator >>"); i++; } break; case '&': if(str[i] == '&' && str[i+1] != '=' && str[i+1] != '&') puts("Bitwise And Operator &"); else if(str[i+1] == '=') { puts("Assignment Operator ^="); i++; } else if(str[i+1] == '&') { puts("Logical And Operator &&"); i++; } break; case '!': if(str[i] == '!' && str[i+1] != '=') puts("Logical Not Operator !"); else if(str[i+1] == '=') { puts("Not Equal to Operator !="); i++; } break; case '=': if(str[i] == '=' && str[i+1] != '=') puts("Assignment Operator !"); else if(str[i+1] == '=') { puts("Equal to Operator =="); i++; } break; } i++; } }
[ "64723695+TarekAhamed-LIV3D@users.noreply.github.com" ]
64723695+TarekAhamed-LIV3D@users.noreply.github.com
213885d32680b8084efc91057d9de4421bc41b56
48c387082fe9dd34bd1a6e6ed7b38abfce7cdf11
/src/headers/MeshGeometry.h
bdfa8b67b98cdbb8cb89afaeebb9d475eb3efd2c
[ "Unlicense" ]
permissive
benpigchu/CG-RayTracing
279b1400f40838e3bb2f8acd4ea227e67a993667
4e5f2bea6e3f537ac0ef109d5b503595c2898516
refs/heads/master
2020-12-31T06:10:03.120902
2017-06-24T22:51:13
2017-06-24T22:51:13
80,618,684
1
0
null
null
null
null
UTF-8
C++
false
false
574
h
#ifndef MESHGEOMETRY_H #define MESHGEOMETRY_H #include <vector> #include "Geometry.h" #include "Vector3.h" #include "Ray.h" #include "Mesh.h" #include "Triangle.h" #include "MeshIntersectOptimiser.h" class MeshGeometry:public Geometry{ static const bool USE_KDTREE_OPTIMISE=true; MeshIntersectOptimiser kdTree; ::std::vector<Triangle> triangles; public: MeshGeometry(Mesh mesh,Vector3 scale=Vector3(1,1,1))noexcept{ setMesh(mesh,scale); } void setMesh(Mesh mesh,Vector3 scale)noexcept; IntersectInfo testIntersect(Ray r)const noexcept; }; #endif //MESHGEOMETRY_H
[ "benpichu@gmail.com" ]
benpichu@gmail.com
818b3f8ff5d3eb8b3ccb3a5b653566068e8ed58b
93c44a30e10cd3d8d3785b869cca4ed1f9974ff7
/Project1/Code/RTS/AI/LuaScript/Commands/ProjectByUnitRange.cpp
c1bb10442e7a8738f7df03aa68434717ffa3acb7
[]
no_license
AlamoEngine-Tools/GlyphX-Reference
f321c2e74ddac848b20fd7f9d1ef01f9b5537e62
9541b8c183e540d05bbcf199921f6d71c33181e9
refs/heads/master
2023-02-11T12:14:15.582026
2021-01-13T19:20:38
2021-01-13T19:20:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,036
cpp
// $Id: //depot/Projects/StarWars_Steam/FOC/Code/RTS/AI/LuaScript/Commands/ProjectByUnitRange.cpp#1 $ /////////////////////////////////////////////////////////////////////////////////////////////////// // // (C) Petroglyph Games, Inc. // // // ***** ** * * // * ** * * * // * * * * * // * * * * * * * * // * * *** ****** * ** **** *** * * * ***** * *** // * ** * * * ** * ** ** * * * * ** ** ** * // *** ***** * * * * * * * * ** * * * * // * * * * * * * * * * * * * * * // * * * * * * * * * * ** * * * * // * ** * * ** * ** * * ** * * * * // ** **** ** * **** ***** * ** *** * * // * * * // * * * // * * * // * * * * // **** * * // /////////////////////////////////////////////////////////////////////////////////////////////////// // C O N F I D E N T I A L S O U R C E C O D E -- D O N O T D I S T R I B U T E /////////////////////////////////////////////////////////////////////////////////////////////////// // // $File: //depot/Projects/StarWars_Steam/FOC/Code/RTS/AI/LuaScript/Commands/ProjectByUnitRange.cpp $ // // Original Author: James Yarrow // // $Author: Brian_Hayes $ // // $Change: 637819 $ // // $DateTime: 2017/03/22 10:16:16 $ // // $Revision: #1 $ // /////////////////////////////////////////////////////////////////////////////////////////////////// /** @file */ #pragma hdrstop #include "ProjectByUnitRange.h" #include "AI/LuaScript/GameObjectWrapper.h" #include "GameObject.h" #include "AI/LuaScript/PositionWrapper.h" #include "GameModeManager.h" #include "GameMode.h" #include "HardPoint.h" PG_IMPLEMENT_RTTI(ProjectByUnitRangeClass, LuaUserVar); LuaTable *ProjectByUnitRangeClass::Function_Call(LuaScriptClass *script, LuaTable *params) { if (params->Value.size() != 2) { script->Script_Error("Project_By_Unit_Range -- invalid number of parameters. Expected 2 got %d.", params->Value.size()); return NULL; } if (!GameModeManager.Get_Active_Mode()->Is_Sub_Type_Tactical()) { script->Script_Error("Project_By_Unit_Range -- this function is only valid in tactical."); return NULL; } SmartPtr<GameObjectWrapper> target = PG_Dynamic_Cast<GameObjectWrapper>(params->Value[0]); if (!target) { script->Script_Error("Project_By_Unit_Range -- invalid type for parameter 1. Expected game object."); return NULL; } if (!target->Get_Object()) { script->Script_Error("Project_By_Unit_Range -- target is already dead."); return NULL; } Vector3 project_through_position; if (!Lua_Extract_Position(params->Value[1], project_through_position)) { script->Script_Error("Project_By_Unit_Range -- unable to extract a position from parameter 2."); return NULL; } Vector3 project_direction = project_through_position - target->Get_Object()->Get_Position(); if (project_direction == VECTOR3_NONE) { script->Script_Warning("Project_By_Unit_Range -- unable to project: positions are identical."); return NULL; } project_direction.Fast_Normalize(); GameObjectClass *targeting_object = target->Get_Object(); if (targeting_object->Behaves_Like(BEHAVIOR_TEAM)) { targeting_object = targeting_object->Get_Team_Data()->Get_Team_Leader(); } if (!targeting_object) { return Return_Variable(PositionWrapper::Create(project_through_position)); } float project_range = targeting_object->Get_Type()->Get_Targeting_Max_Attack_Distance(targeting_object); for (int i = 0; i < targeting_object->Get_Total_Hard_Points(); ++i) { HardPointClass *hard_point = targeting_object->Get_Hard_Point_By_Index(i); FAIL_IF(!hard_point) { continue; } if (hard_point->Is_Destroyable() && hard_point->Is_Destroyed()) { continue; } if (hard_point->Get_Type() < HARD_POINT_WEAPON_FIRST || hard_point->Get_Type() > HARD_POINT_WEAPON_LAST) { continue; } project_range = Max(project_range, hard_point->Get_Max_Range()); } Vector3 projected_position = project_through_position + project_range * project_direction; Box3Class world_bounds = GameModeManager.Get_Active_Mode()->Get_Map_Bounds(); projected_position.X = PGMath::Clamp(projected_position.X, world_bounds.Get_XMin(), world_bounds.Get_XMax()); projected_position.Y = PGMath::Clamp(projected_position.Y, world_bounds.Get_YMin(), world_bounds.Get_YMax()); return Return_Variable(PositionWrapper::Create(projected_position)); }
[ "63470275+PG-SteveT@users.noreply.github.com" ]
63470275+PG-SteveT@users.noreply.github.com
5bb2fd1d79feb2bd69721cc96f36be580ff1ccfb
67f5d0e6b1a42f8c6151e287087d473f43f0bc2f
/include/ice/base.hpp
09c970596c7222479d238f45fa6d3c96722d378b
[ "LicenseRef-scancode-mit-taylor-variant", "LicenseRef-scancode-ibm-dhcp", "BSD-3-Clause", "LicenseRef-scancode-gary-s-brown", "MIT", "ISC", "BSL-1.0", "BSD-2-Clause" ]
permissive
qis/ice-old
cf5fd48dba8831d8c40718afa653f0f1a47953e7
50b5b1ce05b823a501573ed30a9ac6bd62bcc349
refs/heads/master
2022-12-18T06:14:39.077931
2020-09-18T04:14:53
2020-09-18T04:14:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,684
hpp
// ISC License // // Copyright (c) 2017 by Alexej Harm // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS AL WARRANTIES // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. // Portions Copyright (c) 1996-1999 by Internet Software Consortium. // // Permission to use, copy, modify, and distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS // ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES // OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE // CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL // DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR // PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS // ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS // SOFTWARE. // Portions Copyright (c) 1995 by International Business Machines, Inc. // // International Business Machines, Inc. (hereinafter called IBM) grants // permission under its copyrights to use, copy, modify, and distribute this // Software with or without fee, provided that the above copyright notice and // all paragraphs of this notice appear in all copies, and that the name of IBM // not be used in connection with the marketing of any product incorporating // the Software or modifications thereof, without specific, written prior // permission. // // To the extent it has a right to do so, IBM grants an immunity from suit // under its patents, if any, for the use, sale or manufacture of products to // the extent that such products are used for performing Domain Name System // dynamic updates in TCP/IP networks by means of the Software. No immunity is // granted for any product per se or for any other function of any product. // // THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES, // INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A // PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, // DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING // OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN // IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. #pragma once #include <algorithm> #include <string> #include <string_view> #include <cctype> #include <cstdint> namespace ice { namespace base { constexpr const char table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; constexpr const char padding = '='; inline std::string encode(std::string_view data) { auto src = data.data(); auto size = data.size(); std::string dst; dst.resize(4 * (size / 3) + (size % 3 != 0 ? 4 : 0)); std::size_t pos = 0; std::uint8_t o[3]; while (2 < size) { o[0] = static_cast<std::uint8_t>(*src++); o[1] = static_cast<std::uint8_t>(*src++); o[2] = static_cast<std::uint8_t>(*src++); size -= 3; dst[pos++] = table[o[0] >> 2]; dst[pos++] = table[((o[0] & 0x03) << 4) + (o[1] >> 4)]; dst[pos++] = table[((o[1] & 0x0f) << 2) + (o[2] >> 6)]; dst[pos++] = table[o[2] & 0x3f]; } if (size != 0) { o[0] = size > 0 ? static_cast<std::uint8_t>(*src++) : 0; o[1] = size > 1 ? static_cast<std::uint8_t>(*src++) : 0; o[2] = size > 2 ? static_cast<std::uint8_t>(*src++) : 0; dst[pos++] = table[o[0] >> 2]; dst[pos++] = table[((o[0] & 0x03) << 4) + (o[1] >> 4)]; dst[pos++] = size == 1 ? padding : table[((o[1] & 0x0f) << 2) + (o[2] >> 6)]; dst[pos++] = padding; } return dst; } inline std::string encode(std::basic_string_view<unsigned char> data) { return encode(std::string_view(reinterpret_cast<const char*>(data.data()), data.size())); } inline std::string decode(std::string_view data) { constexpr auto begin = std::begin(table); constexpr auto end = std::end(table); std::string dst; dst.reserve(data.size() / 4 * 3); auto state = 0; for (const auto c : data) { if (std::isspace(c)) { continue; // skip spaces } if (c == padding) { if (state > 1) { dst.resize(dst.size() - 1); } break; // ignore padding } const auto it = std::find(begin, end, c); if (it == end) { return {}; } const auto value = static_cast<std::uint8_t>(it - begin); switch (state) { case 0: dst.push_back(value << 2); state = 1; break; case 1: dst.back() |= value >> 4; dst.push_back((value & 0x0f) << 4); state = 2; break; case 2: dst.back() |= value >> 2; dst.push_back((value & 0x03) << 6); state = 3; break; case 3: dst.back() |= value; state = 0; break; } } return dst; } inline std::string decode(std::basic_string_view<unsigned char> data) { return decode(std::string_view(reinterpret_cast<const char*>(data.data()), data.size())); } } // namespace base } // namespace ice
[ "alexej.h@xiphos.de" ]
alexej.h@xiphos.de
df2c981e2274f506e27fb381833ffb9f566bf3dc
d6face59a153b062f1a86b75fc377fdb5f5a52d4
/src/out/linux-x64x11_devel/gen/bindings/browser/source/cobalt/dom/v8c_screen.h
4ca942640cc6d001facc290c6a106adbba193b57
[ "BSD-3-Clause" ]
permissive
blockspacer/cobalt-clone-28052019
27fd44e64104e84a4a72d67ceaa8bafcfa72b4a8
b94e4f78f0ba877fc15310648c72c9c4df8b0ae2
refs/heads/master
2022-10-26T04:35:33.702874
2019-05-29T11:07:12
2019-05-29T11:54:58
188,976,123
0
2
null
2022-10-03T12:37:17
2019-05-28T07:22:56
null
UTF-8
C++
false
false
1,528
h
// Copyright 2019 The Cobalt Authors. All Rights Reserved. // // 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. // clang-format off // This file has been auto-generated by bindings/code_generator_cobalt.py. DO NOT MODIFY! // Auto-generated from template: bindings/v8c/templates/interface.h.template #ifndef V8cScreen_h #define V8cScreen_h #include "base/containers/hash_tables.h" #include "base/lazy_instance.h" #include "base/memory/ref_counted.h" #include "base/threading/thread_checker.h" #include "cobalt/base/polymorphic_downcast.h" #include "cobalt/script/wrappable.h" #include "cobalt/dom/screen.h" #include "cobalt/script/v8c/v8c_global_environment.h" #include "v8/include/v8.h" namespace cobalt { namespace dom { class V8cScreen { public: static v8::Local<v8::Object> CreateWrapper(v8::Isolate* isolate, const scoped_refptr<script::Wrappable>& wrappable); static v8::Local<v8::FunctionTemplate> GetTemplate(v8::Isolate* isolate); }; } // namespace dom } // namespace cobalt #endif // V8cScreen_h
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
bfe62c8ca27755c8421be4697601a375e66b04b2
72ef41c37a0a25c042fd6faaee35fcd8533e9ef8
/src/serialize.h
ba47cba1ffa487b66d57f60c1248c7b0215105e8
[ "MIT" ]
permissive
pokecoin/PokeCoin
c42fd85b635d86c49cacc7fd587a1ba55814219b
116c699c4ec8d33152bcc48d1944e0cc0669ff2a
refs/heads/master
2021-01-10T19:02:56.577479
2014-03-12T06:42:21
2014-03-12T06:42:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
46,499
h
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2013-2014 Pokécoin Developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_SERIALIZE_H #define BITCOIN_SERIALIZE_H #include <string> #include <vector> #include <map> #include <set> #include <cassert> #include <limits> #include <cstring> #include <cstdio> #include <boost/type_traits/is_fundamental.hpp> #include <boost/tuple/tuple.hpp> #include <boost/tuple/tuple_comparison.hpp> #include <boost/tuple/tuple_io.hpp> #include "allocators.h" #include "version.h" typedef long long int64; typedef unsigned long long uint64; class CScript; class CDataStream; class CAutoFile; static const unsigned int MAX_SIZE = 0x02000000; // Used to bypass the rule against non-const reference to temporary // where it makes sense with wrappers such as CFlatData or CTxDB template<typename T> inline T& REF(const T& val) { return const_cast<T&>(val); } ///////////////////////////////////////////////////////////////// // // Templates for serializing to anything that looks like a stream, // i.e. anything that supports .read(char*, int) and .write(char*, int) // enum { // primary actions SER_NETWORK = (1 << 0), SER_DISK = (1 << 1), SER_GETHASH = (1 << 2), }; #define IMPLEMENT_SERIALIZE(statements) \ unsigned int GetSerializeSize(int nType, int nVersion) const \ { \ CSerActionGetSerializeSize ser_action; \ const bool fGetSize = true; \ const bool fWrite = false; \ const bool fRead = false; \ unsigned int nSerSize = 0; \ ser_streamplaceholder s; \ assert(fGetSize||fWrite||fRead); /* suppress warning */ \ s.nType = nType; \ s.nVersion = nVersion; \ {statements} \ return nSerSize; \ } \ template<typename Stream> \ void Serialize(Stream& s, int nType, int nVersion) const \ { \ CSerActionSerialize ser_action; \ const bool fGetSize = false; \ const bool fWrite = true; \ const bool fRead = false; \ unsigned int nSerSize = 0; \ assert(fGetSize||fWrite||fRead); /* suppress warning */ \ {statements} \ } \ template<typename Stream> \ void Unserialize(Stream& s, int nType, int nVersion) \ { \ CSerActionUnserialize ser_action; \ const bool fGetSize = false; \ const bool fWrite = false; \ const bool fRead = true; \ unsigned int nSerSize = 0; \ assert(fGetSize||fWrite||fRead); /* suppress warning */ \ {statements} \ } #define READWRITE(obj) (nSerSize += ::SerReadWrite(s, (obj), nType, nVersion, ser_action)) // // Basic types // #define WRITEDATA(s, obj) s.write((char*)&(obj), sizeof(obj)) #define READDATA(s, obj) s.read((char*)&(obj), sizeof(obj)) inline unsigned int GetSerializeSize(char a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(signed char a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(unsigned char a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(signed short a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(unsigned short a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(signed int a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(unsigned int a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(signed long a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(unsigned long a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(int64 a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(uint64 a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(float a, int, int=0) { return sizeof(a); } inline unsigned int GetSerializeSize(double a, int, int=0) { return sizeof(a); } template<typename Stream> inline void Serialize(Stream& s, char a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, signed char a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, unsigned char a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, signed short a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, unsigned short a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, signed int a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, unsigned int a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, signed long a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, unsigned long a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, int64 a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, uint64 a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, float a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Serialize(Stream& s, double a, int, int=0) { WRITEDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, char& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, signed char& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, unsigned char& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, signed short& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, unsigned short& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, signed int& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, unsigned int& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, signed long& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, unsigned long& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, int64& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, uint64& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, float& a, int, int=0) { READDATA(s, a); } template<typename Stream> inline void Unserialize(Stream& s, double& a, int, int=0) { READDATA(s, a); } inline unsigned int GetSerializeSize(bool a, int, int=0) { return sizeof(char); } template<typename Stream> inline void Serialize(Stream& s, bool a, int, int=0) { char f=a; WRITEDATA(s, f); } template<typename Stream> inline void Unserialize(Stream& s, bool& a, int, int=0) { char f; READDATA(s, f); a=f; } // // Compact size // size < 253 -- 1 byte // size <= USHRT_MAX -- 3 bytes (253 + 2 bytes) // size <= UINT_MAX -- 5 bytes (254 + 4 bytes) // size > UINT_MAX -- 9 bytes (255 + 8 bytes) // inline unsigned int GetSizeOfCompactSize(uint64 nSize) { if (nSize < 253) return sizeof(unsigned char); else if (nSize <= std::numeric_limits<unsigned short>::max()) return sizeof(unsigned char) + sizeof(unsigned short); else if (nSize <= std::numeric_limits<unsigned int>::max()) return sizeof(unsigned char) + sizeof(unsigned int); else return sizeof(unsigned char) + sizeof(uint64); } template<typename Stream> void WriteCompactSize(Stream& os, uint64 nSize) { if (nSize < 253) { unsigned char chSize = nSize; WRITEDATA(os, chSize); } else if (nSize <= std::numeric_limits<unsigned short>::max()) { unsigned char chSize = 253; unsigned short xSize = nSize; WRITEDATA(os, chSize); WRITEDATA(os, xSize); } else if (nSize <= std::numeric_limits<unsigned int>::max()) { unsigned char chSize = 254; unsigned int xSize = nSize; WRITEDATA(os, chSize); WRITEDATA(os, xSize); } else { unsigned char chSize = 255; uint64 xSize = nSize; WRITEDATA(os, chSize); WRITEDATA(os, xSize); } return; } template<typename Stream> uint64 ReadCompactSize(Stream& is) { unsigned char chSize; READDATA(is, chSize); uint64 nSizeRet = 0; if (chSize < 253) { nSizeRet = chSize; } else if (chSize == 253) { unsigned short xSize; READDATA(is, xSize); nSizeRet = xSize; } else if (chSize == 254) { unsigned int xSize; READDATA(is, xSize); nSizeRet = xSize; } else { uint64 xSize; READDATA(is, xSize); nSizeRet = xSize; } if (nSizeRet > (uint64)MAX_SIZE) throw std::ios_base::failure("ReadCompactSize() : size too large"); return nSizeRet; } // Variable-length integers: bytes are a MSB base-128 encoding of the number. // The high bit in each byte signifies whether another digit follows. To make // the encoding is one-to-one, one is subtracted from all but the last digit. // Thus, the byte sequence a[] with length len, where all but the last byte // has bit 128 set, encodes the number: // // (a[len-1] & 0x7F) + sum(i=1..len-1, 128^i*((a[len-i-1] & 0x7F)+1)) // // Properties: // * Very small (0-127: 1 byte, 128-16511: 2 bytes, 16512-2113663: 3 bytes) // * Every integer has exactly one encoding // * Encoding does not depend on size of original integer type // * No redundancy: every (infinite) byte sequence corresponds to a list // of encoded integers. // // 0: [0x00] 256: [0x81 0x00] // 1: [0x01] 16383: [0xFE 0x7F] // 127: [0x7F] 16384: [0xFF 0x00] // 128: [0x80 0x00] 16511: [0x80 0xFF 0x7F] // 255: [0x80 0x7F] 65535: [0x82 0xFD 0x7F] // 2^32: [0x8E 0xFE 0xFE 0xFF 0x00] template<typename I> inline unsigned int GetSizeOfVarInt(I n) { int nRet = 0; while(true) { nRet++; if (n <= 0x7F) break; n = (n >> 7) - 1; } return nRet; } template<typename Stream, typename I> void WriteVarInt(Stream& os, I n) { unsigned char tmp[(sizeof(n)*8+6)/7]; int len=0; while(true) { tmp[len] = (n & 0x7F) | (len ? 0x80 : 0x00); if (n <= 0x7F) break; n = (n >> 7) - 1; len++; } do { WRITEDATA(os, tmp[len]); } while(len--); } template<typename Stream, typename I> I ReadVarInt(Stream& is) { I n = 0; while(true) { unsigned char chData; READDATA(is, chData); n = (n << 7) | (chData & 0x7F); if (chData & 0x80) n++; else return n; } } #define FLATDATA(obj) REF(CFlatData((char*)&(obj), (char*)&(obj) + sizeof(obj))) #define VARINT(obj) REF(WrapVarInt(REF(obj))) /** Wrapper for serializing arrays and POD. */ class CFlatData { protected: char* pbegin; char* pend; public: CFlatData(void* pbeginIn, void* pendIn) : pbegin((char*)pbeginIn), pend((char*)pendIn) { } char* begin() { return pbegin; } const char* begin() const { return pbegin; } char* end() { return pend; } const char* end() const { return pend; } unsigned int GetSerializeSize(int, int=0) const { return pend - pbegin; } template<typename Stream> void Serialize(Stream& s, int, int=0) const { s.write(pbegin, pend - pbegin); } template<typename Stream> void Unserialize(Stream& s, int, int=0) { s.read(pbegin, pend - pbegin); } }; template<typename I> class CVarInt { protected: I &n; public: CVarInt(I& nIn) : n(nIn) { } unsigned int GetSerializeSize(int, int) const { return GetSizeOfVarInt<I>(n); } template<typename Stream> void Serialize(Stream &s, int, int) const { WriteVarInt<Stream,I>(s, n); } template<typename Stream> void Unserialize(Stream& s, int, int) { n = ReadVarInt<Stream,I>(s); } }; template<typename I> CVarInt<I> WrapVarInt(I& n) { return CVarInt<I>(n); } // // Forward declarations // // string template<typename C> unsigned int GetSerializeSize(const std::basic_string<C>& str, int, int=0); template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string<C>& str, int, int=0); template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string<C>& str, int, int=0); // vector template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&); template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&); template<typename T, typename A> inline unsigned int GetSerializeSize(const std::vector<T, A>& v, int nType, int nVersion); template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&); template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&); template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v, int nType, int nVersion); template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&); template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&); template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v, int nType, int nVersion); // others derived from vector extern inline unsigned int GetSerializeSize(const CScript& v, int nType, int nVersion); template<typename Stream> void Serialize(Stream& os, const CScript& v, int nType, int nVersion); template<typename Stream> void Unserialize(Stream& is, CScript& v, int nType, int nVersion); // pair template<typename K, typename T> unsigned int GetSerializeSize(const std::pair<K, T>& item, int nType, int nVersion); template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item, int nType, int nVersion); template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item, int nType, int nVersion); // 3 tuple template<typename T0, typename T1, typename T2> unsigned int GetSerializeSize(const boost::tuple<T0, T1, T2>& item, int nType, int nVersion); template<typename Stream, typename T0, typename T1, typename T2> void Serialize(Stream& os, const boost::tuple<T0, T1, T2>& item, int nType, int nVersion); template<typename Stream, typename T0, typename T1, typename T2> void Unserialize(Stream& is, boost::tuple<T0, T1, T2>& item, int nType, int nVersion); // 4 tuple template<typename T0, typename T1, typename T2, typename T3> unsigned int GetSerializeSize(const boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion); template<typename Stream, typename T0, typename T1, typename T2, typename T3> void Serialize(Stream& os, const boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion); template<typename Stream, typename T0, typename T1, typename T2, typename T3> void Unserialize(Stream& is, boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion); // map template<typename K, typename T, typename Pred, typename A> unsigned int GetSerializeSize(const std::map<K, T, Pred, A>& m, int nType, int nVersion); template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m, int nType, int nVersion); template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m, int nType, int nVersion); // set template<typename K, typename Pred, typename A> unsigned int GetSerializeSize(const std::set<K, Pred, A>& m, int nType, int nVersion); template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m, int nType, int nVersion); template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m, int nType, int nVersion); // // If none of the specialized versions above matched, default to calling member function. // "int nType" is changed to "long nType" to keep from getting an ambiguous overload error. // The compiler will only cast int to long if none of the other templates matched. // Thanks to Boost serialization for this idea. // template<typename T> inline unsigned int GetSerializeSize(const T& a, long nType, int nVersion) { return a.GetSerializeSize((int)nType, nVersion); } template<typename Stream, typename T> inline void Serialize(Stream& os, const T& a, long nType, int nVersion) { a.Serialize(os, (int)nType, nVersion); } template<typename Stream, typename T> inline void Unserialize(Stream& is, T& a, long nType, int nVersion) { a.Unserialize(is, (int)nType, nVersion); } // // string // template<typename C> unsigned int GetSerializeSize(const std::basic_string<C>& str, int, int) { return GetSizeOfCompactSize(str.size()) + str.size() * sizeof(str[0]); } template<typename Stream, typename C> void Serialize(Stream& os, const std::basic_string<C>& str, int, int) { WriteCompactSize(os, str.size()); if (!str.empty()) os.write((char*)&str[0], str.size() * sizeof(str[0])); } template<typename Stream, typename C> void Unserialize(Stream& is, std::basic_string<C>& str, int, int) { unsigned int nSize = ReadCompactSize(is); str.resize(nSize); if (nSize != 0) is.read((char*)&str[0], nSize * sizeof(str[0])); } // // vector // template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&) { return (GetSizeOfCompactSize(v.size()) + v.size() * sizeof(T)); } template<typename T, typename A> unsigned int GetSerializeSize_impl(const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&) { unsigned int nSize = GetSizeOfCompactSize(v.size()); for (typename std::vector<T, A>::const_iterator vi = v.begin(); vi != v.end(); ++vi) nSize += GetSerializeSize((*vi), nType, nVersion); return nSize; } template<typename T, typename A> inline unsigned int GetSerializeSize(const std::vector<T, A>& v, int nType, int nVersion) { return GetSerializeSize_impl(v, nType, nVersion, boost::is_fundamental<T>()); } template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&) { WriteCompactSize(os, v.size()); if (!v.empty()) os.write((char*)&v[0], v.size() * sizeof(T)); } template<typename Stream, typename T, typename A> void Serialize_impl(Stream& os, const std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&) { WriteCompactSize(os, v.size()); for (typename std::vector<T, A>::const_iterator vi = v.begin(); vi != v.end(); ++vi) ::Serialize(os, (*vi), nType, nVersion); } template<typename Stream, typename T, typename A> inline void Serialize(Stream& os, const std::vector<T, A>& v, int nType, int nVersion) { Serialize_impl(os, v, nType, nVersion, boost::is_fundamental<T>()); } template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::true_type&) { // Limit size per read so bogus size value won't cause out of memory v.clear(); unsigned int nSize = ReadCompactSize(is); unsigned int i = 0; while (i < nSize) { unsigned int blk = std::min(nSize - i, (unsigned int)(1 + 4999999 / sizeof(T))); v.resize(i + blk); is.read((char*)&v[i], blk * sizeof(T)); i += blk; } } template<typename Stream, typename T, typename A> void Unserialize_impl(Stream& is, std::vector<T, A>& v, int nType, int nVersion, const boost::false_type&) { v.clear(); unsigned int nSize = ReadCompactSize(is); unsigned int i = 0; unsigned int nMid = 0; while (nMid < nSize) { nMid += 5000000 / sizeof(T); if (nMid > nSize) nMid = nSize; v.resize(nMid); for (; i < nMid; i++) Unserialize(is, v[i], nType, nVersion); } } template<typename Stream, typename T, typename A> inline void Unserialize(Stream& is, std::vector<T, A>& v, int nType, int nVersion) { Unserialize_impl(is, v, nType, nVersion, boost::is_fundamental<T>()); } // // others derived from vector // inline unsigned int GetSerializeSize(const CScript& v, int nType, int nVersion) { return GetSerializeSize((const std::vector<unsigned char>&)v, nType, nVersion); } template<typename Stream> void Serialize(Stream& os, const CScript& v, int nType, int nVersion) { Serialize(os, (const std::vector<unsigned char>&)v, nType, nVersion); } template<typename Stream> void Unserialize(Stream& is, CScript& v, int nType, int nVersion) { Unserialize(is, (std::vector<unsigned char>&)v, nType, nVersion); } // // pair // template<typename K, typename T> unsigned int GetSerializeSize(const std::pair<K, T>& item, int nType, int nVersion) { return GetSerializeSize(item.first, nType, nVersion) + GetSerializeSize(item.second, nType, nVersion); } template<typename Stream, typename K, typename T> void Serialize(Stream& os, const std::pair<K, T>& item, int nType, int nVersion) { Serialize(os, item.first, nType, nVersion); Serialize(os, item.second, nType, nVersion); } template<typename Stream, typename K, typename T> void Unserialize(Stream& is, std::pair<K, T>& item, int nType, int nVersion) { Unserialize(is, item.first, nType, nVersion); Unserialize(is, item.second, nType, nVersion); } // // 3 tuple // template<typename T0, typename T1, typename T2> unsigned int GetSerializeSize(const boost::tuple<T0, T1, T2>& item, int nType, int nVersion) { unsigned int nSize = 0; nSize += GetSerializeSize(boost::get<0>(item), nType, nVersion); nSize += GetSerializeSize(boost::get<1>(item), nType, nVersion); nSize += GetSerializeSize(boost::get<2>(item), nType, nVersion); return nSize; } template<typename Stream, typename T0, typename T1, typename T2> void Serialize(Stream& os, const boost::tuple<T0, T1, T2>& item, int nType, int nVersion) { Serialize(os, boost::get<0>(item), nType, nVersion); Serialize(os, boost::get<1>(item), nType, nVersion); Serialize(os, boost::get<2>(item), nType, nVersion); } template<typename Stream, typename T0, typename T1, typename T2> void Unserialize(Stream& is, boost::tuple<T0, T1, T2>& item, int nType, int nVersion) { Unserialize(is, boost::get<0>(item), nType, nVersion); Unserialize(is, boost::get<1>(item), nType, nVersion); Unserialize(is, boost::get<2>(item), nType, nVersion); } // // 4 tuple // template<typename T0, typename T1, typename T2, typename T3> unsigned int GetSerializeSize(const boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion) { unsigned int nSize = 0; nSize += GetSerializeSize(boost::get<0>(item), nType, nVersion); nSize += GetSerializeSize(boost::get<1>(item), nType, nVersion); nSize += GetSerializeSize(boost::get<2>(item), nType, nVersion); nSize += GetSerializeSize(boost::get<3>(item), nType, nVersion); return nSize; } template<typename Stream, typename T0, typename T1, typename T2, typename T3> void Serialize(Stream& os, const boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion) { Serialize(os, boost::get<0>(item), nType, nVersion); Serialize(os, boost::get<1>(item), nType, nVersion); Serialize(os, boost::get<2>(item), nType, nVersion); Serialize(os, boost::get<3>(item), nType, nVersion); } template<typename Stream, typename T0, typename T1, typename T2, typename T3> void Unserialize(Stream& is, boost::tuple<T0, T1, T2, T3>& item, int nType, int nVersion) { Unserialize(is, boost::get<0>(item), nType, nVersion); Unserialize(is, boost::get<1>(item), nType, nVersion); Unserialize(is, boost::get<2>(item), nType, nVersion); Unserialize(is, boost::get<3>(item), nType, nVersion); } // // map // template<typename K, typename T, typename Pred, typename A> unsigned int GetSerializeSize(const std::map<K, T, Pred, A>& m, int nType, int nVersion) { unsigned int nSize = GetSizeOfCompactSize(m.size()); for (typename std::map<K, T, Pred, A>::const_iterator mi = m.begin(); mi != m.end(); ++mi) nSize += GetSerializeSize((*mi), nType, nVersion); return nSize; } template<typename Stream, typename K, typename T, typename Pred, typename A> void Serialize(Stream& os, const std::map<K, T, Pred, A>& m, int nType, int nVersion) { WriteCompactSize(os, m.size()); for (typename std::map<K, T, Pred, A>::const_iterator mi = m.begin(); mi != m.end(); ++mi) Serialize(os, (*mi), nType, nVersion); } template<typename Stream, typename K, typename T, typename Pred, typename A> void Unserialize(Stream& is, std::map<K, T, Pred, A>& m, int nType, int nVersion) { m.clear(); unsigned int nSize = ReadCompactSize(is); typename std::map<K, T, Pred, A>::iterator mi = m.begin(); for (unsigned int i = 0; i < nSize; i++) { std::pair<K, T> item; Unserialize(is, item, nType, nVersion); mi = m.insert(mi, item); } } // // set // template<typename K, typename Pred, typename A> unsigned int GetSerializeSize(const std::set<K, Pred, A>& m, int nType, int nVersion) { unsigned int nSize = GetSizeOfCompactSize(m.size()); for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it) nSize += GetSerializeSize((*it), nType, nVersion); return nSize; } template<typename Stream, typename K, typename Pred, typename A> void Serialize(Stream& os, const std::set<K, Pred, A>& m, int nType, int nVersion) { WriteCompactSize(os, m.size()); for (typename std::set<K, Pred, A>::const_iterator it = m.begin(); it != m.end(); ++it) Serialize(os, (*it), nType, nVersion); } template<typename Stream, typename K, typename Pred, typename A> void Unserialize(Stream& is, std::set<K, Pred, A>& m, int nType, int nVersion) { m.clear(); unsigned int nSize = ReadCompactSize(is); typename std::set<K, Pred, A>::iterator it = m.begin(); for (unsigned int i = 0; i < nSize; i++) { K key; Unserialize(is, key, nType, nVersion); it = m.insert(it, key); } } // // Support for IMPLEMENT_SERIALIZE and READWRITE macro // class CSerActionGetSerializeSize { }; class CSerActionSerialize { }; class CSerActionUnserialize { }; template<typename Stream, typename T> inline unsigned int SerReadWrite(Stream& s, const T& obj, int nType, int nVersion, CSerActionGetSerializeSize ser_action) { return ::GetSerializeSize(obj, nType, nVersion); } template<typename Stream, typename T> inline unsigned int SerReadWrite(Stream& s, const T& obj, int nType, int nVersion, CSerActionSerialize ser_action) { ::Serialize(s, obj, nType, nVersion); return 0; } template<typename Stream, typename T> inline unsigned int SerReadWrite(Stream& s, T& obj, int nType, int nVersion, CSerActionUnserialize ser_action) { ::Unserialize(s, obj, nType, nVersion); return 0; } struct ser_streamplaceholder { int nType; int nVersion; }; typedef std::vector<char, zero_after_free_allocator<char> > CSerializeData; /** Double ended buffer combining vector and stream-like interfaces. * * >> and << read and write unformatted data using the above serialization templates. * Fills with data in linear time; some stringstream implementations take N^2 time. */ class CDataStream { protected: typedef CSerializeData vector_type; vector_type vch; unsigned int nReadPos; short state; short exceptmask; public: int nType; int nVersion; typedef vector_type::allocator_type allocator_type; typedef vector_type::size_type size_type; typedef vector_type::difference_type difference_type; typedef vector_type::reference reference; typedef vector_type::const_reference const_reference; typedef vector_type::value_type value_type; typedef vector_type::iterator iterator; typedef vector_type::const_iterator const_iterator; typedef vector_type::reverse_iterator reverse_iterator; explicit CDataStream(int nTypeIn, int nVersionIn) { Init(nTypeIn, nVersionIn); } CDataStream(const_iterator pbegin, const_iterator pend, int nTypeIn, int nVersionIn) : vch(pbegin, pend) { Init(nTypeIn, nVersionIn); } #if !defined(_MSC_VER) || _MSC_VER >= 1300 CDataStream(const char* pbegin, const char* pend, int nTypeIn, int nVersionIn) : vch(pbegin, pend) { Init(nTypeIn, nVersionIn); } #endif CDataStream(const vector_type& vchIn, int nTypeIn, int nVersionIn) : vch(vchIn.begin(), vchIn.end()) { Init(nTypeIn, nVersionIn); } CDataStream(const std::vector<char>& vchIn, int nTypeIn, int nVersionIn) : vch(vchIn.begin(), vchIn.end()) { Init(nTypeIn, nVersionIn); } CDataStream(const std::vector<unsigned char>& vchIn, int nTypeIn, int nVersionIn) : vch((char*)&vchIn.begin()[0], (char*)&vchIn.end()[0]) { Init(nTypeIn, nVersionIn); } void Init(int nTypeIn, int nVersionIn) { nReadPos = 0; nType = nTypeIn; nVersion = nVersionIn; state = 0; exceptmask = std::ios::badbit | std::ios::failbit; } CDataStream& operator+=(const CDataStream& b) { vch.insert(vch.end(), b.begin(), b.end()); return *this; } friend CDataStream operator+(const CDataStream& a, const CDataStream& b) { CDataStream ret = a; ret += b; return (ret); } std::string str() const { return (std::string(begin(), end())); } // // Vector subset // const_iterator begin() const { return vch.begin() + nReadPos; } iterator begin() { return vch.begin() + nReadPos; } const_iterator end() const { return vch.end(); } iterator end() { return vch.end(); } size_type size() const { return vch.size() - nReadPos; } bool empty() const { return vch.size() == nReadPos; } void resize(size_type n, value_type c=0) { vch.resize(n + nReadPos, c); } void reserve(size_type n) { vch.reserve(n + nReadPos); } const_reference operator[](size_type pos) const { return vch[pos + nReadPos]; } reference operator[](size_type pos) { return vch[pos + nReadPos]; } void clear() { vch.clear(); nReadPos = 0; } iterator insert(iterator it, const char& x=char()) { return vch.insert(it, x); } void insert(iterator it, size_type n, const char& x) { vch.insert(it, n, x); } void insert(iterator it, std::vector<char>::const_iterator first, std::vector<char>::const_iterator last) { assert(last - first >= 0); if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos) { // special case for inserting at the front when there's room nReadPos -= (last - first); memcpy(&vch[nReadPos], &first[0], last - first); } else vch.insert(it, first, last); } #if !defined(_MSC_VER) || _MSC_VER >= 1300 void insert(iterator it, const char* first, const char* last) { assert(last - first >= 0); if (it == vch.begin() + nReadPos && (unsigned int)(last - first) <= nReadPos) { // special case for inserting at the front when there's room nReadPos -= (last - first); memcpy(&vch[nReadPos], &first[0], last - first); } else vch.insert(it, first, last); } #endif iterator erase(iterator it) { if (it == vch.begin() + nReadPos) { // special case for erasing from the front if (++nReadPos >= vch.size()) { // whenever we reach the end, we take the opportunity to clear the buffer nReadPos = 0; return vch.erase(vch.begin(), vch.end()); } return vch.begin() + nReadPos; } else return vch.erase(it); } iterator erase(iterator first, iterator last) { if (first == vch.begin() + nReadPos) { // special case for erasing from the front if (last == vch.end()) { nReadPos = 0; return vch.erase(vch.begin(), vch.end()); } else { nReadPos = (last - vch.begin()); return last; } } else return vch.erase(first, last); } inline void Compact() { vch.erase(vch.begin(), vch.begin() + nReadPos); nReadPos = 0; } bool Rewind(size_type n) { // Rewind by n characters if the buffer hasn't been compacted yet if (n > nReadPos) return false; nReadPos -= n; return true; } // // Stream subset // void setstate(short bits, const char* psz) { state |= bits; if (state & exceptmask) throw std::ios_base::failure(psz); } bool eof() const { return size() == 0; } bool fail() const { return state & (std::ios::badbit | std::ios::failbit); } bool good() const { return !eof() && (state == 0); } void clear(short n) { state = n; } // name conflict with vector clear() short exceptions() { return exceptmask; } short exceptions(short mask) { short prev = exceptmask; exceptmask = mask; setstate(0, "CDataStream"); return prev; } CDataStream* rdbuf() { return this; } int in_avail() { return size(); } void SetType(int n) { nType = n; } int GetType() { return nType; } void SetVersion(int n) { nVersion = n; } int GetVersion() { return nVersion; } void ReadVersion() { *this >> nVersion; } void WriteVersion() { *this << nVersion; } CDataStream& read(char* pch, int nSize) { // Read from the beginning of the buffer assert(nSize >= 0); unsigned int nReadPosNext = nReadPos + nSize; if (nReadPosNext >= vch.size()) { if (nReadPosNext > vch.size()) { setstate(std::ios::failbit, "CDataStream::read() : end of data"); memset(pch, 0, nSize); nSize = vch.size() - nReadPos; } memcpy(pch, &vch[nReadPos], nSize); nReadPos = 0; vch.clear(); return (*this); } memcpy(pch, &vch[nReadPos], nSize); nReadPos = nReadPosNext; return (*this); } CDataStream& ignore(int nSize) { // Ignore from the beginning of the buffer assert(nSize >= 0); unsigned int nReadPosNext = nReadPos + nSize; if (nReadPosNext >= vch.size()) { if (nReadPosNext > vch.size()) { setstate(std::ios::failbit, "CDataStream::ignore() : end of data"); nSize = vch.size() - nReadPos; } nReadPos = 0; vch.clear(); return (*this); } nReadPos = nReadPosNext; return (*this); } CDataStream& write(const char* pch, int nSize) { // Write to the end of the buffer assert(nSize >= 0); vch.insert(vch.end(), pch, pch + nSize); return (*this); } template<typename Stream> void Serialize(Stream& s, int nType, int nVersion) const { // Special case: stream << stream concatenates like stream += stream if (!vch.empty()) s.write((char*)&vch[0], vch.size() * sizeof(vch[0])); } template<typename T> unsigned int GetSerializeSize(const T& obj) { // Tells the size of the object if serialized to this stream return ::GetSerializeSize(obj, nType, nVersion); } template<typename T> CDataStream& operator<<(const T& obj) { // Serialize to this stream ::Serialize(*this, obj, nType, nVersion); return (*this); } template<typename T> CDataStream& operator>>(T& obj) { // Unserialize from this stream ::Unserialize(*this, obj, nType, nVersion); return (*this); } void GetAndClear(CSerializeData &data) { vch.swap(data); CSerializeData().swap(vch); } }; /** RAII wrapper for FILE*. * * Will automatically close the file when it goes out of scope if not null. * If you're returning the file pointer, return file.release(). * If you need to close the file early, use file.fclose() instead of fclose(file). */ class CAutoFile { protected: FILE* file; short state; short exceptmask; public: int nType; int nVersion; CAutoFile(FILE* filenew, int nTypeIn, int nVersionIn) { file = filenew; nType = nTypeIn; nVersion = nVersionIn; state = 0; exceptmask = std::ios::badbit | std::ios::failbit; } ~CAutoFile() { fclose(); } void fclose() { if (file != NULL && file != stdin && file != stdout && file != stderr) ::fclose(file); file = NULL; } FILE* release() { FILE* ret = file; file = NULL; return ret; } operator FILE*() { return file; } FILE* operator->() { return file; } FILE& operator*() { return *file; } FILE** operator&() { return &file; } FILE* operator=(FILE* pnew) { return file = pnew; } bool operator!() { return (file == NULL); } // // Stream subset // void setstate(short bits, const char* psz) { state |= bits; if (state & exceptmask) throw std::ios_base::failure(psz); } bool fail() const { return state & (std::ios::badbit | std::ios::failbit); } bool good() const { return state == 0; } void clear(short n = 0) { state = n; } short exceptions() { return exceptmask; } short exceptions(short mask) { short prev = exceptmask; exceptmask = mask; setstate(0, "CAutoFile"); return prev; } void SetType(int n) { nType = n; } int GetType() { return nType; } void SetVersion(int n) { nVersion = n; } int GetVersion() { return nVersion; } void ReadVersion() { *this >> nVersion; } void WriteVersion() { *this << nVersion; } CAutoFile& read(char* pch, size_t nSize) { if (!file) throw std::ios_base::failure("CAutoFile::read : file handle is NULL"); if (fread(pch, 1, nSize, file) != nSize) setstate(std::ios::failbit, feof(file) ? "CAutoFile::read : end of file" : "CAutoFile::read : fread failed"); return (*this); } CAutoFile& write(const char* pch, size_t nSize) { if (!file) throw std::ios_base::failure("CAutoFile::write : file handle is NULL"); if (fwrite(pch, 1, nSize, file) != nSize) setstate(std::ios::failbit, "CAutoFile::write : write failed"); return (*this); } template<typename T> unsigned int GetSerializeSize(const T& obj) { // Tells the size of the object if serialized to this stream return ::GetSerializeSize(obj, nType, nVersion); } template<typename T> CAutoFile& operator<<(const T& obj) { // Serialize to this stream if (!file) throw std::ios_base::failure("CAutoFile::operator<< : file handle is NULL"); ::Serialize(*this, obj, nType, nVersion); return (*this); } template<typename T> CAutoFile& operator>>(T& obj) { // Unserialize from this stream if (!file) throw std::ios_base::failure("CAutoFile::operator>> : file handle is NULL"); ::Unserialize(*this, obj, nType, nVersion); return (*this); } }; /** Wrapper around a FILE* that implements a ring buffer to * deserialize from. It guarantees the ability to rewind * a given number of bytes. */ class CBufferedFile { private: FILE *src; // source file uint64 nSrcPos; // how many bytes have been read from source uint64 nReadPos; // how many bytes have been read from this uint64 nReadLimit; // up to which position we're allowed to read uint64 nRewind; // how many bytes we guarantee to rewind std::vector<char> vchBuf; // the buffer short state; short exceptmask; protected: void setstate(short bits, const char *psz) { state |= bits; if (state & exceptmask) throw std::ios_base::failure(psz); } // read data from the source to fill the buffer bool Fill() { unsigned int pos = nSrcPos % vchBuf.size(); unsigned int readNow = vchBuf.size() - pos; unsigned int nAvail = vchBuf.size() - (nSrcPos - nReadPos) - nRewind; if (nAvail < readNow) readNow = nAvail; if (readNow == 0) return false; size_t read = fread((void*)&vchBuf[pos], 1, readNow, src); if (read == 0) { setstate(std::ios_base::failbit, feof(src) ? "CBufferedFile::Fill : end of file" : "CBufferedFile::Fill : fread failed"); return false; } else { nSrcPos += read; return true; } } public: int nType; int nVersion; CBufferedFile(FILE *fileIn, uint64 nBufSize, uint64 nRewindIn, int nTypeIn, int nVersionIn) : src(fileIn), nSrcPos(0), nReadPos(0), nReadLimit((uint64)(-1)), nRewind(nRewindIn), vchBuf(nBufSize, 0), state(0), exceptmask(std::ios_base::badbit | std::ios_base::failbit), nType(nTypeIn), nVersion(nVersionIn) { } // check whether no error occurred bool good() const { return state == 0; } // check whether we're at the end of the source file bool eof() const { return nReadPos == nSrcPos && feof(src); } // read a number of bytes CBufferedFile& read(char *pch, size_t nSize) { if (nSize + nReadPos > nReadLimit) throw std::ios_base::failure("Read attempted past buffer limit"); if (nSize + nRewind > vchBuf.size()) throw std::ios_base::failure("Read larger than buffer size"); while (nSize > 0) { if (nReadPos == nSrcPos) Fill(); unsigned int pos = nReadPos % vchBuf.size(); size_t nNow = nSize; if (nNow + pos > vchBuf.size()) nNow = vchBuf.size() - pos; if (nNow + nReadPos > nSrcPos) nNow = nSrcPos - nReadPos; memcpy(pch, &vchBuf[pos], nNow); nReadPos += nNow; pch += nNow; nSize -= nNow; } return (*this); } // return the current reading position uint64 GetPos() { return nReadPos; } // rewind to a given reading position bool SetPos(uint64 nPos) { nReadPos = nPos; if (nReadPos + nRewind < nSrcPos) { nReadPos = nSrcPos - nRewind; return false; } else if (nReadPos > nSrcPos) { nReadPos = nSrcPos; return false; } else { return true; } } bool Seek(uint64 nPos) { long nLongPos = nPos; if (nPos != (uint64)nLongPos) return false; if (fseek(src, nLongPos, SEEK_SET)) return false; nLongPos = ftell(src); nSrcPos = nLongPos; nReadPos = nLongPos; state = 0; return true; } // prevent reading beyond a certain position // no argument removes the limit bool SetLimit(uint64 nPos = (uint64)(-1)) { if (nPos < nReadPos) return false; nReadLimit = nPos; return true; } template<typename T> CBufferedFile& operator>>(T& obj) { // Unserialize from this stream ::Unserialize(*this, obj, nType, nVersion); return (*this); } // search for a given byte in the stream, and remain positioned on it void FindByte(char ch) { while (true) { if (nReadPos == nSrcPos) Fill(); if (vchBuf[nReadPos % vchBuf.size()] == ch) break; nReadPos++; } } }; #endif
[ "snowfiregaming@gmail.com" ]
snowfiregaming@gmail.com
2ac8c236fc531ebfe76ef137688925fcc20fa1de
8a8744104d9d2b50d350239dbc8a9f09a8ecc03a
/Code/CPlusPlus/Engine/PCEngine.h
cc88c9268a898d6aaa8ddc1a9f4257c20c95744e
[]
no_license
JonnyRivers/rorn
fadd039b13fd95de5033d25e4552c456ab2eaa13
ea3dab1d42838917c29d81f7ff92c11fc312a62e
refs/heads/master
2016-08-12T19:55:18.729619
2014-09-11T21:20:30
2014-09-11T21:20:30
52,677,620
0
0
null
null
null
null
UTF-8
C++
false
false
1,352
h
#pragma once #include <Windows.h> #include "Interfaces/IEngine.h" #include "Subsystems/Diagnostics/PCDiagnostics.h" #include "Subsystems/FileSystem/PCFileSystem.h" #include "Subsystems/Input/DirectXInputManager.h" #include "Subsystems/Physics/BulletPhysicsSystem.h" #include "Subsystems/Renderer/DirectXRenderer.h" #include "Subsystems/Timekeeper/PCTimekeeper.h" namespace Rorn { namespace Engine { class PCEngine : public IEngine { public: static IEngine* Startup(HWND windowHandle); static void Shutdown(IEngine* engine); virtual IDiagnostics* GetDiagnostics(); virtual IFileSystem* GetFileSystem(); virtual const IKeyboard* GetKeyboard() const; virtual const IMouse* GetMouse() const; virtual IPhysicsSystem* GetPhysicsSystem(); virtual IRenderer* GetRenderer(); virtual float StartFrame(); virtual void EndFrame(); virtual float GetFramerate() const;// Need to move this sonewhere more sensible once we have more similar data private: PCEngine(HWND windowHandle); ~PCEngine(); PCEngine(PCEngine&); PCEngine& operator=(PCEngine&); PCDiagnostics diagnostics_; PCTimekeeper timekeeper_; PCFileSystem fileSystem_; BulletPhysicsSystem physicsSystem_; DirectXInputManager inputManager_; DirectXRenderer renderer_; }; } }
[ "ca6jri@4fafbd65-2c19-2041-7f78-9da6aaec0f04" ]
ca6jri@4fafbd65-2c19-2041-7f78-9da6aaec0f04
2656ad10dcddf5a621102b1be1279ddacdb66564
6852aaee94c44b8f63fb052d04ceb0d73b4ce196
/libGME/gme save 20130721/Spc_Cpu.cpp
26b1139bdcc188d2c46cf5e2aa28a2d0607fa1fd
[]
no_license
QiuZhiFei/modizer
9c66abf11f3df79dfdc50d17d91272f7f93a256b
14aace66ea3791dec19b414203780f239d49971c
refs/heads/master
2020-12-03T00:30:22.433753
2015-01-11T18:41:02
2015-01-11T18:41:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
17,401
cpp
// Core SPC emulation: CPU, timers, SMP registers, memory // snes_spc $vers. http://www.slack.net/~ant/ #include "Snes_Spc.h" /* Copyright (C) 2004-2007 Shay Green. This module is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This module 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this module; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "blargg_source.h" #define RAM (m.ram.ram) #define REGS (m.smp_regs [0]) #define REGS_IN (m.smp_regs [1]) // (n ? n : 256) #define IF_0_THEN_256( n ) ((uint8_t) ((n) - 1) + 1) // Note: SPC_MORE_ACCURACY exists mainly so I can run my validation tests, which // do crazy echo buffer accesses. #ifndef SPC_MORE_ACCURACY #define SPC_MORE_ACCURACY 0 #endif //// Timers #if SPC_DISABLE_TEMPO #define TIMER_DIV( t, n ) ((n) >> t->prescaler) #define TIMER_MUL( t, n ) ((n) << t->prescaler) #else #define TIMER_DIV( t, n ) ((n) / t->prescaler) #define TIMER_MUL( t, n ) ((n) * t->prescaler) #endif Snes_Spc::Timer* Snes_Spc::run_timer_( Timer* t, rel_time_t time ) { int elapsed = TIMER_DIV( t, time - t->next_time ) + 1; t->next_time += TIMER_MUL( t, elapsed ); if ( t->enabled ) { int remain = IF_0_THEN_256( t->period - t->divider ); int divider = t->divider + elapsed; int over = elapsed - remain; if ( over >= 0 ) { int n = over / t->period; t->counter = (t->counter + 1 + n) & 0x0F; divider = over - n * t->period; } t->divider = (uint8_t) divider; } return t; } inline Snes_Spc::Timer* Snes_Spc::run_timer( Timer* t, rel_time_t time ) { if ( time >= t->next_time ) t = run_timer_( t, time ); return t; } //// ROM void Snes_Spc::enable_rom( int enable ) { if ( m.rom_enabled != enable ) { m.rom_enabled = enable; if ( enable ) memcpy( m.hi_ram, &RAM [rom_addr], sizeof m.hi_ram ); memcpy( &RAM [rom_addr], (enable ? m.rom : m.hi_ram), rom_size ); // TODO: ROM can still get overwritten when DSP writes to echo buffer } } //// DSP #if SPC_LESS_ACCURATE int const max_reg_time = 29; /* Fast DSP only runs every 32nd clock. By adjusting the end time based on which register is being accessed, in most cases the register access is emulated at the precise time. */ signed char const Snes_Spc::reg_times_ [256] = { -1, 0,-11,-10,-15,-11, -2, -2, 4, 3, 14, 14, 26, 26, 14, 22, 2, 3, 0, 1,-12, 0, 1, 1, 7, 6, 14, 14, 27, 14, 14, 23, 5, 6, 3, 4, -1, 3, 4, 4, 10, 9, 14, 14, 26, -5, 14, 23, 8, 9, 6, 7, 2, 6, 7, 7, 13, 12, 14, 14, 27, -4, 14, 24, 11, 12, 9, 10, 5, 9, 10, 10, 16, 15, 14, 14, -2, -4, 14, 24, 14, 15, 12, 13, 8, 12, 13, 13, 19, 18, 14, 14, -2,-36, 14, 24, 17, 18, 15, 16, 11, 15, 16, 16, 22, 21, 14, 14, 28, -3, 14, 25, 20, 21, 18, 19, 14, 18, 19, 19, 25, 24, 14, 14, 14, 29, 14, 25, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, }; #define RUN_DSP( time, offset ) \ int count = (time) - (offset) - m.dsp_time;\ if ( count >= 0 )\ {\ int clock_count = (count & ~(clocks_per_sample - 1)) + clocks_per_sample;\ m.dsp_time += clock_count;\ dsp.run( clock_count );\ } #else #define RUN_DSP( time, offset ) \ {\ int count = (time) - m.dsp_time;\ if ( !SPC_MORE_ACCURACY || count )\ {\ assert( count > 0 );\ m.dsp_time = (time);\ dsp.run( count );\ }\ } #endif int Snes_Spc::dsp_read( rel_time_t time ) { RUN_DSP( time, reg_times [REGS [r_dspaddr] & 0x7F] ); int result = dsp.read( REGS [r_dspaddr] & 0x7F ); #ifdef SPC_DSP_READ_HOOK SPC_DSP_READ_HOOK( spc_time + time, (REGS [r_dspaddr] & 0x7F), result ); #endif return result; } inline void Snes_Spc::dsp_write( int data, rel_time_t time ) { RUN_DSP( time, reg_times [REGS [r_dspaddr]] ) #if SPC_LESS_ACCURATE else if ( m.dsp_time == skipping_time ) { int r = REGS [r_dspaddr]; if ( r == Spc_Dsp::r_kon ) m.skipped_kon |= data & ~dsp.read( Spc_Dsp::r_koff ); if ( r == Spc_Dsp::r_koff ) { m.skipped_koff |= data; m.skipped_kon &= ~data; } } #endif #ifdef SPC_DSP_WRITE_HOOK SPC_DSP_WRITE_HOOK( m.spc_time + time, REGS [r_dspaddr], (uint8_t) data ); #endif if ( REGS [r_dspaddr] <= 0x7F ) { if ( REGS [r_dspaddr] != Spc_Dsp::r_flg ) dsp.write( REGS [r_dspaddr], data ); else { int prev = dsp.read( Spc_Dsp::r_flg ); dsp.write( Spc_Dsp::r_flg, data ); if ( ( data & 0x20 ) == ( ( data ^ prev ) & 0x20 ) ) clear_echo(); } } else if ( !SPC_MORE_ACCURACY ) dprintf( "SPC wrote to DSP register > $7F\n" ); } //// Memory access extras #if SPC_MORE_ACCURACY #define MEM_ACCESS( time, addr ) \ {\ if ( time >= m.dsp_time )\ {\ RUN_DSP( time, max_reg_time );\ }\ } #elif !defined (NDEBUG) // Debug-only check for read/write within echo buffer, since this might result in // inaccurate emulation due to the DSP not being caught up to the present. bool Snes_Spc::check_echo_access( int addr ) { if ( !(dsp.read( Spc_Dsp::r_flg ) & 0x20) ) { int start = 0x100 * dsp.read( Spc_Dsp::r_esa ); int size = 0x800 * (dsp.read( Spc_Dsp::r_edl ) & 0x0F); int end = start + (size ? size : 4); if ( start <= addr && addr < end ) { if ( !m.echo_accessed ) { m.echo_accessed = 1; return true; } } } return false; } #define MEM_ACCESS( time, addr ) check( !check_echo_access( (uint16_t) addr ) ); #else #define MEM_ACCESS( time, addr ) #endif //// CPU write #if SPC_MORE_ACCURACY static unsigned char const glitch_probs [3] [256] = { 0xC3,0x92,0x5B,0x1C,0xD1,0x92,0x5B,0x1C,0xDB,0x9C,0x72,0x18,0xCD,0x5C,0x38,0x0B, 0xE1,0x9C,0x74,0x17,0xCF,0x75,0x45,0x0C,0xCF,0x6E,0x4A,0x0D,0xA3,0x3A,0x1D,0x08, 0xDB,0xA0,0x82,0x19,0xD9,0x73,0x3C,0x0E,0xCB,0x76,0x52,0x0B,0xA5,0x46,0x1D,0x09, 0xDA,0x74,0x55,0x0F,0xA2,0x3F,0x21,0x05,0x9A,0x40,0x20,0x07,0x63,0x1E,0x10,0x01, 0xDF,0xA9,0x85,0x1D,0xD3,0x84,0x4B,0x0E,0xCF,0x6F,0x49,0x0F,0xB3,0x48,0x1E,0x05, 0xD8,0x77,0x52,0x12,0xB7,0x49,0x23,0x06,0xAA,0x45,0x28,0x07,0x7D,0x28,0x0F,0x07, 0xCC,0x7B,0x4A,0x0E,0xB2,0x4F,0x24,0x07,0xAD,0x43,0x2C,0x06,0x86,0x29,0x11,0x07, 0xAE,0x48,0x1F,0x0A,0x76,0x21,0x19,0x05,0x76,0x21,0x14,0x05,0x44,0x11,0x0B,0x01, 0xE7,0xAD,0x96,0x23,0xDC,0x86,0x59,0x0E,0xDC,0x7C,0x5F,0x15,0xBB,0x53,0x2E,0x09, 0xD6,0x7C,0x4A,0x16,0xBB,0x4A,0x25,0x08,0xB3,0x4F,0x28,0x0B,0x8E,0x23,0x15,0x08, 0xCF,0x7F,0x57,0x11,0xB5,0x4A,0x23,0x0A,0xAA,0x42,0x28,0x05,0x7D,0x22,0x12,0x03, 0xA6,0x49,0x28,0x09,0x82,0x2B,0x0D,0x04,0x7A,0x20,0x0F,0x04,0x3D,0x0F,0x09,0x03, 0xD1,0x7C,0x4C,0x0F,0xAF,0x4E,0x21,0x09,0xA8,0x46,0x2A,0x07,0x85,0x1F,0x0E,0x07, 0xA6,0x3F,0x26,0x07,0x7C,0x24,0x14,0x07,0x78,0x22,0x16,0x04,0x46,0x12,0x0A,0x02, 0xA6,0x41,0x2C,0x0A,0x7E,0x28,0x11,0x05,0x73,0x1B,0x14,0x05,0x3D,0x11,0x0A,0x02, 0x70,0x22,0x17,0x05,0x48,0x13,0x08,0x03,0x3C,0x07,0x0D,0x07,0x26,0x07,0x06,0x01, 0xE0,0x9F,0xDA,0x7C,0x4F,0x18,0x28,0x0D,0xE9,0x9F,0xDA,0x7C,0x4F,0x18,0x1F,0x07, 0xE6,0x97,0xD8,0x72,0x64,0x13,0x26,0x09,0xDC,0x67,0xA9,0x38,0x21,0x07,0x15,0x06, 0xE9,0x91,0xD2,0x6B,0x63,0x14,0x2B,0x0E,0xD6,0x61,0xB7,0x41,0x2B,0x0E,0x10,0x09, 0xCF,0x59,0xB0,0x2F,0x35,0x08,0x0F,0x07,0xB6,0x30,0x7A,0x21,0x17,0x07,0x09,0x03, 0xE7,0xA3,0xE5,0x6B,0x65,0x1F,0x34,0x09,0xD8,0x6B,0xBE,0x45,0x27,0x07,0x10,0x07, 0xDA,0x54,0xB1,0x39,0x2E,0x0E,0x17,0x08,0xA9,0x3C,0x86,0x22,0x16,0x06,0x07,0x03, 0xD4,0x51,0xBC,0x3D,0x38,0x0A,0x13,0x06,0xB2,0x37,0x79,0x1C,0x17,0x05,0x0E,0x06, 0xA7,0x31,0x74,0x1C,0x11,0x06,0x0C,0x02,0x6D,0x1A,0x38,0x10,0x0B,0x05,0x06,0x03, 0xEB,0x9A,0xE1,0x7A,0x6F,0x13,0x34,0x0E,0xE6,0x75,0xC5,0x45,0x3E,0x0B,0x1A,0x05, 0xD8,0x63,0xC1,0x40,0x3C,0x1B,0x19,0x06,0xB3,0x42,0x83,0x29,0x18,0x0A,0x08,0x04, 0xD4,0x58,0xBA,0x43,0x3F,0x0A,0x1F,0x09,0xB1,0x33,0x8A,0x1F,0x1F,0x06,0x0D,0x05, 0xAF,0x3C,0x7A,0x1F,0x16,0x08,0x0A,0x01,0x72,0x1B,0x52,0x0D,0x0B,0x09,0x06,0x01, 0xCF,0x63,0xB7,0x47,0x40,0x10,0x14,0x06,0xC0,0x41,0x96,0x20,0x1C,0x09,0x10,0x05, 0xA6,0x35,0x82,0x1A,0x20,0x0C,0x0E,0x04,0x80,0x1F,0x53,0x0F,0x0B,0x02,0x06,0x01, 0xA6,0x31,0x81,0x1B,0x1D,0x01,0x08,0x08,0x7B,0x20,0x4D,0x19,0x0E,0x05,0x07,0x03, 0x6B,0x17,0x49,0x07,0x0E,0x03,0x0A,0x05,0x37,0x0B,0x1F,0x06,0x04,0x02,0x07,0x01, 0xF0,0xD6,0xED,0xAD,0xEC,0xB1,0xEB,0x79,0xAC,0x22,0x47,0x1E,0x6E,0x1B,0x32,0x0A, 0xF0,0xD6,0xEA,0xA4,0xED,0xC4,0xDE,0x82,0x98,0x1F,0x50,0x13,0x52,0x15,0x2A,0x0A, 0xF1,0xD1,0xEB,0xA2,0xEB,0xB7,0xD8,0x69,0xA2,0x1F,0x5B,0x18,0x55,0x18,0x2C,0x0A, 0xED,0xB5,0xDE,0x7E,0xE6,0x85,0xD3,0x59,0x59,0x0F,0x2C,0x09,0x24,0x07,0x15,0x09, 0xF1,0xD6,0xEA,0xA0,0xEC,0xBB,0xDA,0x77,0xA9,0x23,0x58,0x14,0x5D,0x12,0x2F,0x09, 0xF1,0xC1,0xE3,0x86,0xE4,0x87,0xD2,0x4E,0x68,0x15,0x26,0x0B,0x27,0x09,0x15,0x02, 0xEE,0xA6,0xE0,0x5C,0xE0,0x77,0xC3,0x41,0x67,0x1B,0x3C,0x07,0x2A,0x06,0x19,0x07, 0xE4,0x75,0xC6,0x43,0xCC,0x50,0x95,0x23,0x35,0x09,0x14,0x04,0x15,0x05,0x0B,0x04, 0xEE,0xD6,0xED,0xAD,0xEC,0xB1,0xEB,0x79,0xAC,0x22,0x56,0x14,0x5A,0x12,0x26,0x0A, 0xEE,0xBB,0xE7,0x7E,0xE9,0x8D,0xCB,0x49,0x67,0x11,0x34,0x07,0x2B,0x0B,0x14,0x07, 0xED,0xA7,0xE5,0x76,0xE3,0x7E,0xC4,0x4B,0x77,0x14,0x34,0x08,0x27,0x07,0x14,0x04, 0xE7,0x8B,0xD2,0x4C,0xCA,0x56,0x9E,0x31,0x36,0x0C,0x11,0x07,0x14,0x04,0x0A,0x02, 0xF0,0x9B,0xEA,0x6F,0xE5,0x81,0xC4,0x43,0x74,0x10,0x30,0x0B,0x2D,0x08,0x1B,0x06, 0xE6,0x83,0xCA,0x48,0xD9,0x56,0xA7,0x23,0x3B,0x09,0x12,0x09,0x15,0x07,0x0A,0x03, 0xE5,0x5F,0xCB,0x3C,0xCF,0x48,0x91,0x22,0x31,0x0A,0x17,0x08,0x15,0x04,0x0D,0x02, 0xD1,0x43,0x91,0x20,0xA9,0x2D,0x54,0x12,0x17,0x07,0x09,0x02,0x0C,0x04,0x05,0x03, }; #endif // Read/write handlers are divided into multiple functions to keep rarely-used // functionality separate so often-used functionality can be optimized better // by compiler. // If write isn't preceded by read, data has this added to it int const no_read_before_write = 0x2000; void Snes_Spc::cpu_write_smp_reg_( int data, rel_time_t time, int addr ) { switch ( addr ) { case r_t0target: case r_t1target: case r_t2target: { Timer* t = &m.timers [addr - r_t0target]; int period = IF_0_THEN_256( data ); if ( t->period != period ) { t = run_timer( t, time ); #if SPC_MORE_ACCURACY // Insane behavior when target is written just after counter is // clocked and counter matches new period and new period isn't 1, 2, 4, or 8 if ( t->divider == (period & 0xFF) && t->next_time == time + TIMER_MUL( t, 1 ) && ((period - 1) | ~0x0F) & period ) { //dprintf( "SPC pathological timer target write\n" ); // If the period is 3, 5, or 9, there's a probability this behavior won't occur, // based on the previous period int prob = 0xFF; int old_period = t->period & 0xFF; if ( period == 3 ) prob = glitch_probs [0] [old_period]; if ( period == 5 ) prob = glitch_probs [1] [old_period]; if ( period == 9 ) prob = glitch_probs [2] [old_period]; // The glitch suppresses incrementing of one of the counter bits, based on // the lowest set bit in the new period int b = 1; while ( !(period & b) ) b <<= 1; if ( (rand() >> 4 & 0xFF) <= prob ) t->divider = (t->divider - b) & 0xFF; } #endif t->period = period; } break; } case r_t0out: case r_t1out: case r_t2out: if ( !SPC_MORE_ACCURACY ) dprintf( "SPC wrote to counter %d\n", (int) addr - r_t0out ); if ( data < no_read_before_write / 2 ) run_timer( &m.timers [addr - r_t0out], time - 1 )->counter = 0; break; // Registers that act like RAM case 0x8: case 0x9: REGS_IN [addr] = (uint8_t) data; break; case r_test: if ( (uint8_t) data != 0x0A ) dprintf( "SPC wrote to test register\n" ); break; case r_control: // port clears if ( data & 0x10 ) { REGS_IN [r_cpuio0] = 0; REGS_IN [r_cpuio1] = 0; } if ( data & 0x20 ) { REGS_IN [r_cpuio2] = 0; REGS_IN [r_cpuio3] = 0; } // timers { for ( int i = 0; i < timer_count; i++ ) { Timer* t = &m.timers [i]; int enabled = data >> i & 1; if ( t->enabled != enabled ) { t = run_timer( t, time ); t->enabled = enabled; if ( enabled ) { t->divider = 0; t->counter = 0; } } } } enable_rom( data & 0x80 ); break; } } void Snes_Spc::cpu_write_smp_reg( int data, rel_time_t time, int addr ) { if ( addr == r_dspdata ) // 99% dsp_write( data, time ); else cpu_write_smp_reg_( data, time, addr ); } void Snes_Spc::cpu_write_high( int data, int i, rel_time_t time ) { if ( i < rom_size ) { m.hi_ram [i] = (uint8_t) data; if ( m.rom_enabled ) RAM [i + rom_addr] = m.rom [i]; // restore overwritten ROM } else { assert( RAM [i + rom_addr] == (uint8_t) data ); RAM [i + rom_addr] = cpu_pad_fill; // restore overwritten padding cpu_write( data, i + rom_addr - 0x10000, time ); } } int const bits_in_int = CHAR_BIT * sizeof (int); void Snes_Spc::cpu_write( int data, int addr, rel_time_t time ) { MEM_ACCESS( time, addr ) // RAM RAM [addr] = (uint8_t) data; int reg = addr - 0xF0; if ( reg >= 0 ) // 64% { // $F0-$FF if ( reg < reg_count ) // 87% { REGS [reg] = (uint8_t) data; // Ports #ifdef SPC_PORT_WRITE_HOOK if ( (unsigned) (reg - r_cpuio0) < port_count ) SPC_PORT_WRITE_HOOK( m.spc_time + time, (reg - r_cpuio0), (uint8_t) data, &REGS [r_cpuio0] ); #endif // Registers other than $F2 and $F4-$F7 //if ( reg != 2 && reg != 4 && reg != 5 && reg != 6 && reg != 7 ) // TODO: this is a bit on the fragile side if ( ((~0x2F00 << (bits_in_int - 16)) << reg) < 0 ) // 36% cpu_write_smp_reg( data, time, reg ); } // High mem/address wrap-around else { reg -= rom_addr - 0xF0; if ( reg >= 0 ) // 1% in IPL ROM area or address wrapped around cpu_write_high( data, reg, time ); } } } //// CPU read inline int Snes_Spc::cpu_read_smp_reg( int reg, rel_time_t time ) { int result = REGS_IN [reg]; reg -= r_dspaddr; // DSP addr and data if ( (unsigned) reg <= 1 ) // 4% 0xF2 and 0xF3 { result = REGS [r_dspaddr]; if ( (unsigned) reg == 1 ) result = dsp_read( time ); // 0xF3 } return result; } int Snes_Spc::cpu_read( int addr, rel_time_t time ) { MEM_ACCESS( time, addr ) // RAM int result = RAM [addr]; int reg = addr - 0xF0; if ( reg >= 0 ) // 40% { reg -= 0x10; if ( (unsigned) reg >= 0xFF00 ) // 21% { reg += 0x10 - r_t0out; // Timers if ( (unsigned) reg < timer_count ) // 90% { Timer* t = &m.timers [reg]; if ( time >= t->next_time ) t = run_timer_( t, time ); result = t->counter; t->counter = 0; } // Other registers else if ( reg < 0 ) // 10% { result = cpu_read_smp_reg( reg + r_t0out, time ); } else // 1% { assert( reg + (r_t0out + 0xF0 - 0x10000) < 0x100 ); result = cpu_read( reg + (r_t0out + 0xF0 - 0x10000), time ); } } } return result; } //// Run // Prefix and suffix for CPU emulator function #define SPC_CPU_RUN_FUNC \ BOOST::uint8_t* Snes_Spc::run_until_( time_t end_time )\ {\ rel_time_t rel_time = m.spc_time - end_time;\ assert( rel_time <= 0 );\ m.spc_time = end_time;\ m.dsp_time += rel_time;\ m.timers [0].next_time += rel_time;\ m.timers [1].next_time += rel_time;\ m.timers [2].next_time += rel_time; #define SPC_CPU_RUN_FUNC_END \ m.spc_time += rel_time;\ m.dsp_time -= rel_time;\ m.timers [0].next_time -= rel_time;\ m.timers [1].next_time -= rel_time;\ m.timers [2].next_time -= rel_time;\ assert( m.spc_time <= end_time );\ return &REGS [r_cpuio0];\ } int const cpu_lag_max = 12 - 1; // DIV YA,X takes 12 clocks void Snes_Spc::end_frame( time_t end_time ) { // Catch CPU up to as close to end as possible. If final instruction // would exceed end, does NOT execute it and leaves m.spc_time < end. if ( end_time > m.spc_time ) run_until_( end_time ); m.spc_time -= end_time; m.extra_clocks += end_time; // Greatest number of clocks early that emulation can stop early due to // not being able to execute current instruction without going over // allowed time. assert( -cpu_lag_max <= m.spc_time && m.spc_time <= 0 ); // Catch timers up to CPU for ( int i = 0; i < timer_count; i++ ) run_timer( &m.timers [i], 0 ); // Catch DSP up to CPU if ( m.dsp_time < 0 ) { RUN_DSP( 0, max_reg_time ); } // Save any extra samples beyond what should be generated if ( m.buf_begin ) save_extra(); } // Inclusion here allows static memory access functions and better optimization #include "Spc_Cpu.h"
[ "ymagnien@gmail.com" ]
ymagnien@gmail.com
a312d49f7751987ac7126d6046b829e6f7596014
c81744584846f965f02ee62ddf6c1ae69d256d66
/main.cpp
ce6c575cb7a83d8d50049d52b0f556499a41268b
[]
no_license
ddxxsx/plane
65a36fb0dea9df3d55ba3a658464d081012a6d7d
ed1d7dbe49f699f38d2cb327901b8dfa5d896d8e
refs/heads/main
2023-01-09T09:28:16.300650
2020-11-12T06:00:42
2020-11-12T06:00:42
312,180,529
0
0
null
null
null
null
UTF-8
C++
false
false
14,349
cpp
/******************************** 调用了EGE图形库 *******************************/ #include <iostream> #include <graphics.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #define LENGTH 640 #define WIDTH 800 #define PLANESIZE 70 #define BULLETSIZE 30 #define E_BLOOD 3 #define P_BLOOD 20 #define SCORESIZE 40 int q=0; int e=0; FILE *fp; struct player1 { int blood,x,y; PIMAGE pic; }player; struct { int x,y; PIMAGE pic; } ebullets[40],bullets[40]; struct { int x,y,blood; PIMAGE pic; }enemys[10]; PIMAGE background; PIMAGE bullet; PIMAGE enemy; PIMAGE ebullet; PIMAGE endbackground,helpbackground,startbackground,startbackground1; PIMAGE hp; PIMAGE hpnum[11]; PIMAGE score; PIMAGE scorenum[11]; PIMAGE enemy1; PIMAGE enemy2; PIMAGE bullet1; MUSIC bgmmusic,bulletsound,boom; mouse_msg msg;//存放鼠标状态的数据类型,在graphics.h中定义的 int bulletnum=0,enemynum=0,ebulletnum=0,score1=0; void init();//初始化 void getZoomImage(PIMAGE pimg, const char* fileName, int width, int height);//图片缩放 void putpic();//打印图片 void creatbullet(int num);//创建新的玩家子弹 void createbullet(int x,int y,int num);//创建新的敌人子弹 void createnemy(int num);//创建新的敌人 void doenemy(int num);//敌人运算逻辑 void doebullet(int num);//敌人子弹运算逻辑 void doplayer();//玩家运算逻辑 void dobullet(int num);//子弹运算逻辑 void cleanenemy(int i,int num);//清除敌人 void cleanbullet(int i,int num);//清除子弹 void cleanebullet(int i,int num);//清楚敌人子弹 void start();//开始界面 void help();//帮助界面 void endgame();//结束界面 int main() { init(); start(); closegraph(); return 0; } void creatbullet(int num) { bullets[num].x=player.x; bullets[num].y=player.y; e++; if (e==1) bullets[num].pic=bullet1; else (bullets[num].pic=bullet); if (e==2) e=-1; } void createbullet(int x,int y,int num) { ebullets[num].x=x; ebullets[num].y=y; } void createnemy(int num) { int a; a=rand()%LENGTH; enemys[num].x=a; enemys[num].y=0; enemys[num].blood=E_BLOOD; q++; if (q==0) enemys[num].pic=enemy; else if (q==1) enemys[num].pic=enemy1; else if (q==2) { enemys[num].pic=enemy2; q=-1; } } void doenemy(int num) { int i,j; for (i=1;i<=num;i++) { enemys[i].y=enemys[i].y+1; for (j=1;j<=bulletnum;j++) if ((enemys[i].x>=bullets[j].x-PLANESIZE&&enemys[i].x<=bullets[j].x+BULLETSIZE) &&(enemys[i].y<=bullets[j].y+BULLETSIZE&&enemys[i].y>=bullets[j].y-PLANESIZE)) { enemys[i].blood--; cleanbullet(j,bulletnum); break; } if (enemys[i].y>WIDTH||enemys[i].blood<=0) { DWORD playstatus3=boom.GetPlayStatus(); if (playstatus3==MUSIC_MODE_STOP) boom.Play(500); cleanenemy(i,num); } } } void dobullet(int num) { int i,j; for (i=1;i<=num;i++) { bullets[i].y=bullets[i].y-3; if (bullets[i].y<=0) cleanbullet(i,num); } } void doebullet(int num) { int i,j; for (i=1;i<=num;i++) { ebullets[i].y=ebullets[i].y+3; if (ebullets[i].y>=WIDTH) cleanebullet(i,num); } } void doplayer() { int i,j; for (i=1;i<=ebulletnum;i++) if ((player.x>=ebullets[i].x-PLANESIZE&&player.x<=ebullets[i].x+BULLETSIZE) &&(player.y<=ebullets[i].y+BULLETSIZE&&player.y>=ebullets[i].y-PLANESIZE)) { cleanebullet(i,ebulletnum); player.blood--; } for (i=1;i<=enemynum;i++) if ((player.x>=enemys[i].x-PLANESIZE&&player.x<=enemys[i].x+PLANESIZE) &&(player.y<=enemys[i].y+PLANESIZE&&player.y>=enemys[i].y-PLANESIZE)) { cleanenemy(i,enemynum); player.blood=player.blood-3; } if (player.blood<=0) endgame(); } void cleanbullet(int i,int num) { int j; for (j=1;j<=num-1;j++) bullets[j]=bullets[j+1]; bullets[num].x=0;bullets[num].y=0; bulletnum--; } void cleanenemy(int i,int num) { int j; for (j=i;j<=num-1;j++) enemys[j]=enemys[j+1]; enemys[num].x=0;enemys[num].y=0; enemynum--;score1++; } void cleanebullet(int i,int num) { int j; for (j=i;j<=num-1;j++) ebullets[j]=ebullets[j+1]; ebullets[num].x=0;ebullets[num].y=0; ebulletnum--; } void start() { fp=fopen("high_scores.txt","w+"); for (; is_run();delay_fps(144)) { cleardevice();//清空屏幕 putimage(0,0,startbackground); putimage(420,586,startbackground1); while (mousemsg())//鼠标是否产生信息 { msg=getmouse(); if (msg.is_left()&& msg.x>=215&&msg.x<=425 &&msg.y>=644&&msg.y<=691) { bulletnum=0;enemynum=0;ebulletnum=0;score1=0; player.blood=P_BLOOD; putpic(); } if (msg.is_left()&& msg.x>=420&&msg.x<=476&& msg.y>=586&&msg.y<=636) { help(); } } } } void help() { for (; is_run(); delay_fps(144)) { cleardevice(); putimage(0,0,helpbackground); while (mousemsg()) { msg=getmouse(); if (msg.is_left()&& msg.x>=208&&msg.x<=416 &&msg.y>=480&&msg.y<=600) { start(); } } } } void endgame() { int score5; fscanf(fp,"%d",score5); if (score5<score1) fprintf(fp,"%d",score1); fclose(fp); for (; is_run(); delay_fps(144)) { cleardevice(); putimage(0,0,endbackground); while (mousemsg()) { msg=getmouse(); if (msg.is_left()&& msg.x>=208&&msg.x<=416 &&msg.y>=480&&msg.y<=600) { start(); } } } } void init() { int i; char filename[30]; initgraph(LENGTH, WIDTH); bgmmusic.OpenFile("sources\\sound\\bgm.mp3"); boom.OpenFile("sources\\sound\\boom.mp3"); bulletsound.OpenFile("sources\\sound\\bullet.mp3"); player.pic=newimage(50,50);//graphics.h background=newimage(LENGTH,WIDTH); endbackground=newimage(LENGTH,WIDTH); startbackground=newimage(LENGTH,WIDTH); helpbackground=newimage(LENGTH,WIDTH); startbackground1=newimage(LENGTH,WIDTH); bullet1=newimage(20,20); enemy1=newimage(50,50); enemy2=newimage(50,50); enemy=newimage(50,50); bullet=newimage(20,20); ebullet=newimage(20,20); hp=newimage(50,50); score=newimage(50,50); player.blood=P_BLOOD;//初始化玩家血量 getZoomImage(enemy1,"sources\\enemy1.jpg",PLANESIZE,PLANESIZE); getZoomImage(enemy2,"sources\\enemy2.jpg",PLANESIZE,PLANESIZE); getZoomImage(player.pic,"sources\\player.jpg",PLANESIZE,PLANESIZE);//为了防止读取文件出错,采用相对路径 getZoomImage(bullet,"sources\\bullet.jpg",BULLETSIZE,BULLETSIZE); getZoomImage(bullet1,"sources\\bullet1.jpg",BULLETSIZE,BULLETSIZE); getZoomImage(enemy,"sources\\enemy.jpg",PLANESIZE,PLANESIZE); getZoomImage(ebullet,"sources\\ebullet.jpg",BULLETSIZE,BULLETSIZE); getZoomImage(background,"sources\\background.jpg",LENGTH,WIDTH); getZoomImage(endbackground,"sources\\endbackground.jpg",LENGTH,WIDTH); getZoomImage(startbackground,"sources\\startbackground.jpg",LENGTH,WIDTH); getZoomImage(helpbackground,"sources\\helpbackground.jpg",LENGTH,WIDTH); getZoomImage(startbackground1,"sources\\startbackground1.jpg",50,50); for (i=0;i<=9;i++) { hpnum[i]=newimage(50,50); scorenum[i]=newimage(50,50); sprintf(filename,"sources\\hp\\%d.jpg",i);//库文件里面 getZoomImage(hpnum[i],filename,SCORESIZE,SCORESIZE); sprintf(filename,"sources\\score\\%d.jpg",i); getZoomImage(scorenum[i],filename,SCORESIZE,SCORESIZE); } getZoomImage(hp,"sources\\hp\\hp.jpg",SCORESIZE*2,SCORESIZE); getZoomImage(score,"sources\\score\\score.jpg",SCORESIZE*3,SCORESIZE); srand((unsigned) time(NULL));//生成随机种子 for (i=1;i<=9;i++) { if (i%3==0) enemys[i].pic=enemy; else if (i%3==1) enemys[i].pic=enemy1; else if (i%3==2) enemys[i].pic=enemy2; } for (i=1;i<=19;i++) { bullets[i].pic=bullet; ebullets[i].pic=ebullet; } } void putpic() { int count1=0,count2=0,i,j,k; bgmmusic.Play(3000);//第3000ms开始播放 for (; is_run(); delay_fps(144))//最高刷新率144HZ { DWORD playstatus=bgmmusic.GetPlayStatus(); if (playstatus==MUSIC_MODE_STOP) bgmmusic.Play(3000);//如果BGM播放完了 while (mousemsg()) { msg=getmouse();//获取当前鼠标信息 player.x=msg.x-35; player.y=msg.y-35; } if (count1>=50) { DWORD playstatus2=bulletsound.GetPlayStatus(); if (playstatus2==MUSIC_MODE_STOP) bulletsound.Play(800); //播放子弹音乐 bulletnum++; creatbullet(bulletnum); for (i=1;i<=enemynum;i++) { ebulletnum++; createbullet(enemys[i].x,enemys[i].y,ebulletnum); } count1=0; } else count1++; if (count2>=150){enemynum++;createnemy(enemynum);count2=0;} else count2++; cleardevice();//graphc.h putimage(0,0,background); putimage(0,0,score); j=score1%10;k=score1/10; switch(k) { case(0):putimage_withalpha(NULL,scorenum[0],SCORESIZE*3,0);break; case(1):putimage_withalpha(NULL,scorenum[1],SCORESIZE*3,0);break; case(2):putimage_withalpha(NULL,scorenum[2],SCORESIZE*3,0);break; case(3):putimage_withalpha(NULL,scorenum[3],SCORESIZE*3,0);break; case(4):putimage_withalpha(NULL,scorenum[4],SCORESIZE*3,0);break; case(5):putimage_withalpha(NULL,scorenum[5],SCORESIZE*3,0);break; case(6):putimage_withalpha(NULL,scorenum[6],SCORESIZE*3,0);break; case(7):putimage_withalpha(NULL,scorenum[7],SCORESIZE*3,0);break; case(8):putimage_withalpha(NULL,scorenum[8],SCORESIZE*3,0);break; case(9):putimage_withalpha(NULL,scorenum[9],SCORESIZE*3,0);break; default: break; } switch(j) { case(0):putimage_withalpha(NULL,scorenum[0],SCORESIZE*4,0);break; case(1):putimage_withalpha(NULL,scorenum[1],SCORESIZE*4,0);break; case(2):putimage_withalpha(NULL,scorenum[2],SCORESIZE*4,0);break; case(3):putimage_withalpha(NULL,scorenum[3],SCORESIZE*4,0);break; case(4):putimage_withalpha(NULL,scorenum[4],SCORESIZE*4,0);break; case(5):putimage_withalpha(NULL,scorenum[5],SCORESIZE*4,0);break; case(6):putimage_withalpha(NULL,scorenum[6],SCORESIZE*4,0);break; case(7):putimage_withalpha(NULL,scorenum[7],SCORESIZE*4,0);break; case(8):putimage_withalpha(NULL,scorenum[8],SCORESIZE*4,0);break; case(9):putimage_withalpha(NULL,scorenum[9],SCORESIZE*4,0);break; default: break; } putimage_withalpha(NULL,hp,450,700); j=player.blood%10;k=player.blood/10; switch(k) { case(0):putimage_withalpha(NULL,hpnum[0],450+SCORESIZE*2,700);break; case(1):putimage_withalpha(NULL,hpnum[1],450+SCORESIZE*2,700);break; case(2):putimage_withalpha(NULL,hpnum[2],450+SCORESIZE*2,700);break; case(3):putimage_withalpha(NULL,hpnum[3],450+SCORESIZE*2,700);break; case(4):putimage_withalpha(NULL,hpnum[4],450+SCORESIZE*2,700);break; case(5):putimage_withalpha(NULL,hpnum[5],450+SCORESIZE*2,700);break; case(6):putimage_withalpha(NULL,hpnum[6],450+SCORESIZE*2,700);break; case(7):putimage_withalpha(NULL,hpnum[7],450+SCORESIZE*2,700);break; case(8):putimage_withalpha(NULL,hpnum[8],450+SCORESIZE*2,700);break; case(9):putimage_withalpha(NULL,hpnum[9],450+SCORESIZE*2,700);break; default: break; } switch(j) { case(0):putimage_withalpha(NULL,hpnum[0],450+SCORESIZE*3,700);break; case(1):putimage_withalpha(NULL,hpnum[1],450+SCORESIZE*3,700);break; case(2):putimage_withalpha(NULL,hpnum[2],450+SCORESIZE*3,700);break; case(3):putimage_withalpha(NULL,hpnum[3],450+SCORESIZE*3,700);break; case(4):putimage_withalpha(NULL,hpnum[4],450+SCORESIZE*3,700);break; case(5):putimage_withalpha(NULL,hpnum[5],450+SCORESIZE*3,700);break; case(6):putimage_withalpha(NULL,hpnum[6],450+SCORESIZE*3,700);break; case(7):putimage_withalpha(NULL,hpnum[7],450+SCORESIZE*3,700);break; case(8):putimage_withalpha(NULL,hpnum[8],450+SCORESIZE*3,700);break; case(9):putimage_withalpha(NULL,hpnum[9],450+SCORESIZE*3,700);break; default: break; } // if (/*msg.is_move()*/1) doplayer(); putimage_withalpha(NULL,player.pic,player.x,player.y);/////////////////////////// dobullet(bulletnum); for (i=1;i<=bulletnum;i++) { putimage_withalpha(NULL, bullets[i].pic, bullets[i].x,bullets[i].y); } doenemy(enemynum); for (i=1;i<=enemynum;i++) { putimage_withalpha(NULL,enemys[i].pic,enemys[i].x,enemys[i].y); } doebullet(ebulletnum); for (i=1;i<=ebulletnum;i++) { putimage_withalpha(NULL,ebullets[i].pic,ebullets[i].x,ebullets[i].y); } } } void getZoomImage(PIMAGE pimg, const char* fileName, int width, int height)//缩放图片 { PIMAGE temp = newimage(); getimage(temp, fileName); if (getwidth(pimg) != width || getheight(pimg) != height) resize(pimg, width, height); putimage(pimg, 0, 0, width, height, temp, 0, 0, getwidth(temp), getheight(temp)); delimage(temp); }
[ "noreply@github.com" ]
ddxxsx.noreply@github.com
1c0d3010b139f77cf2ce10718a6cae20c79aa53c
28ff033953ede63a4440a8c240d6b635c8331b72
/lib/src/tags/tag.cpp
481212e7e7b2ce24fe13fc46be3c3bf813eb7476
[ "Apache-2.0" ]
permissive
QtWorks/imgbrd-grabber
17f60acc45957b0d6da455b1ac7f385bfeca13e9
f3f51c56c38765f3c03b61daa3b30c418a9754ec
refs/heads/master
2021-04-15T08:52:41.861364
2018-02-19T22:57:41
2018-02-20T15:09:41
126,835,586
1
0
null
null
null
null
UTF-8
C++
false
false
4,699
cpp
#include "tag.h" #include <QTextDocument> #include <QSettings> #include <QSet> #include <QRegularExpression> #include "models/favorite.h" #include "models/profile.h" Tag::Tag() : m_type(TagType("unknown")), m_count(0) { } Tag::Tag(QString text, QString type, int count, QStringList related) : Tag(text, TagType(type), count, related) { } Tag::Tag(QString text, TagType type, int count, QStringList related) : Tag(0, text, type, count, related) { } Tag::Tag(int id, QString text, TagType type, int count, QStringList related) : m_id(id), m_type(type), m_count(count), m_related(related) { static QStringList weakTypes = QStringList() << "unknown" << "origin"; // Decode HTML entities in the tag text QTextDocument htmlEncoded; htmlEncoded.setHtml(text); m_text = htmlEncoded.toPlainText().replace(' ', '_'); // Sometimes a type is found with multiple words, only the first is relevant int typeSpace = m_type.name().indexOf(' '); if (typeSpace != -1) { m_type = TagType(m_type.name().left(typeSpace)); } // Some artist names end with " (artist)" so we can guess their type if (m_text.endsWith("(artist)") && weakTypes.contains(m_type.name())) { m_type = TagType("artist"); m_text = m_text.left(m_text.length() - 9); } int sepPos = m_text.indexOf(':'); if (sepPos != -1 && weakTypes.contains(m_type.name())) { QStringList prep = QStringList() << "artist" << "copyright" << "character" << "model" << "species" << "unknown" << "oc"; QString pre = Tag::GetType(m_text.left(sepPos), QStringList()); int prepIndex = prep.indexOf(pre); if (prepIndex != -1) { m_type = TagType(Tag::GetType(prep[prepIndex], prep)); m_text = m_text.mid(sepPos + 1); } } } Tag Tag::FromCapture(const QRegularExpressionMatch &match, const QStringList &groups) { // Tag QString tag; if (groups.contains("tag")) { tag = match.captured("tag").replace(" ", "_").replace("&amp;", "&").trimmed(); } // Type QString type; if (groups.contains("type")) { type = Tag::GetType(match.captured("type").trimmed(), QStringList() << "general" << "artist" << "unknown" << "copyright" << "character" << "species"); } if (type.isEmpty()) { type = "unknown"; } // Count int count = 0; if (groups.contains("count")) { QString countStr = match.captured("count").toLower().trimmed(); countStr.remove(','); count = countStr.endsWith('k', Qt::CaseInsensitive) ? countStr.left(countStr.length() - 1).toFloat() * 1000 : countStr.toInt(); } return Tag(tag, type, count); } QList<Tag> Tag::FromRegexp(QString rx, const QString &source) { QRegularExpression rxtags(rx); QList<Tag> ret; QSet<QString> got; auto matches = rxtags.globalMatch(source); while (matches.hasNext()) { auto match = matches.next(); Tag tag = Tag::FromCapture(match, rxtags.namedCaptureGroups()); if (!got.contains(tag.text())) { got.insert(tag.text()); ret.append(tag); } } return ret; } QString Tag::GetType(QString type, QStringList ids) { type = type.toLower().trimmed(); if (type.contains(", ")) type = type.split(", ").at(0).trimmed(); if (type == "series") return "copyright"; if (type == "mangaka") return "artist"; if (type == "game") return "copyright"; if (type == "studio") return "circle"; if (type == "source") return "general"; if (type == "character group") return "general"; if (type == "oc") return "character"; if (type.length() == 1) { int typeId = type.toInt(); if (typeId >= 0 && typeId < ids.count()) return ids[typeId]; } return type; } void Tag::setId(int id) { m_id = id; } void Tag::setText(const QString &text) { m_text = text; } void Tag::setType(const TagType &type) { m_type = type; } void Tag::setCount(int count) { m_count = count; } void Tag::setRelated(const QStringList &r) { m_related = r; } int Tag::id() const { return m_id; } QString Tag::text() const { return m_text; } TagType Tag::type() const { return m_type; } int Tag::count() const { return m_count; } QStringList Tag::related() const { return m_related; } bool sortTagsByType(Tag s1, Tag s2) { static QStringList typeOrder = QStringList() << "unknown" << "model" << "species" << "artist" << "character" << "copyright"; int t1 = typeOrder.indexOf(s1.type().name()); int t2 = typeOrder.indexOf(s2.type().name()); return t1 == t2 ? sortTagsByName(s1, s2) : t1 > t2; } bool sortTagsByName(Tag s1, Tag s2) { return s1.text().localeAwareCompare(s2.text()) < 0; } bool sortTagsByCount(Tag s1, Tag s2) { return s1.count() > s2.count(); } bool operator==(const Tag &t1, const Tag &t2) { return t1.text() == t2.text() && (t1.type() == t2.type() || t1.type().name() == "unknown" || t2.type().name() == "unknown"); }
[ "bio.nus@hotmail.fr" ]
bio.nus@hotmail.fr
a63247056ac37c35bcf4ecfdccd37884cb7988ab
9e845c388f03e978da93cc5e49011823ff8244ee
/Binary Searcch Tree/2.FindValueInBST.cpp
fef64de8f423782d6de381fb2f3cc9f88cdb743e
[]
no_license
chatu07/Love-Babbar-450-Programing-Course
b57201b8100c6c61c9c5bdc1fd2a62d30d028731
3e8ba849f1d9d33f5a02cf030be148e8a8bf9844
refs/heads/master
2023-01-31T08:55:57.254507
2020-12-05T14:22:41
2020-12-05T14:22:41
313,627,139
1
0
null
null
null
null
UTF-8
C++
false
false
1,910
cpp
#include<bits/stdc++.h> using namespace std; typedef struct Node{ Node* left = NULL; int data; Node* right = NULL; Node(int val){ data = val; } }Node; bool findElement(Node* root,int value){ bool elem = false; while(root){ if(value == root->data){ return true; } else if(value >=root->data){ root = root->right; } else{ root = root->left; } } return false; } void insertNode(Node* root,int value){ Node* node_Value=root; Node* prev_node; int flag = 1; // cout<<"Inside InsertNode"<<endl; while(node_Value!=NULL){ // cout<<"Node Value: "<<node_Value->data<<endl; if(value>=node_Value->data){ // cout<<"Greater Value"<<endl; prev_node = node_Value; node_Value = node_Value->right; } else{ // cout<<"Lesser Value"<<endl; prev_node = node_Value; node_Value = node_Value->left; } } if(value>=prev_node->data){ Node* newNode = new Node(value); prev_node->right = newNode; } else{ Node* newNode = new Node(value); prev_node->left = newNode; } return; } void inorderTraversal(Node* root){ if(root){ inorderTraversal(root->left); cout<<root->data<<" "; inorderTraversal(root->right); } } int main(){ int n; cin>>n; vector<int> vct(n); for(int i = 0;i<n;i++){ cin>>vct[i]; } Node *root = new Node(vct[0]); Node *ptr; for(int i = 1;i<n;i++){ insertNode(root,vct[i]); } cout<<"Inorder Traversal: "<<endl; inorderTraversal(root); cout<<endl; int value; cin>>value; if(findElement(root,value)){ cout<<"Element Found"; } else{ cout<<"Not Found"; } return 0; }
[ "chitranshchitransh2018@gmail.com" ]
chitranshchitransh2018@gmail.com
6b49b6c2cbbb746b23be8f93bc10c6c7c0c98d47
6e1ea8d65052f025060453f66819ac446a7592d8
/codeforces/527a.cpp
a0d894c0946cd8cc8398bc915190322b59d0fbd1
[]
no_license
csJd/oj-codes
bc38b79b9227b45d34139c84f9ef1e830f6b996c
2bd65d0070adc3400ee5bee8d1cf02a038de540b
refs/heads/master
2022-03-21T20:21:40.153833
2019-11-28T13:11:54
2019-11-28T13:11:54
47,266,594
2
0
null
null
null
null
UTF-8
C++
false
false
336
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll a, b, ans, t; int main() { while(~scanf("%lld%lld", &a, &b)) { ans = 0; while(b) { ans += a / b; t = a; a = b; b = t % a; } printf("%lld\n", ans); } return 0; }
[ "ddwust@gmail.com" ]
ddwust@gmail.com
43bf6d3c4b20dcc9415561185a3118a30bdce07c
b24b4f33dfa16d521ea8a40dd9a0c6a1a1bed4c1
/Lesson_3_smart_point_stack/Stack_Queue/Stack.cpp
6907e86dd0995924a91459d9c86e2a7f522d8b4f
[]
no_license
Annushka34/C_Plus_2020
af31e2405b1df4cf7d2406b8b3c8c674b40442b8
648fcad0d6d990d920cb23489f51431b08107bf1
refs/heads/master
2022-12-04T05:09:22.934776
2020-08-23T10:11:25
2020-08-23T10:11:25
268,220,331
0
0
null
null
null
null
UTF-8
C++
false
false
987
cpp
//#include"Header.h" //#include<stack> //#include"MyStack.h" // //void main() //{ // /*stack<double> st1; // st1.push(5.2); // st1.push(3.6); // st1.push(2); // st1.push(8.2); // st1.push(4.6); // st1.push(3.9); // cout << st1.top()<<endl; // cout << "size=" << st1.size()<<endl; // st1.pop(); // cout << st1.top()<<endl; // cout << "size=" << st1.size()<<endl; // cout << "-------------------------\n"; // while (!st1.empty()) // { // cout << st1.top() << endl; // st1.pop(); // } // cout << "size=" << st1.size() << endl;*/ // // MyStack<double> st2; // st2.push(5.2); // st2.push(3.6); // st2.push(2); // st2.push(8.2); // st2.push(4.6); // st2.push(3.9); // cout << st2.top() << endl; // cout << "size=" << st2.size() << endl; // st2.pop(); // cout << st2.top() << endl; // cout << "size=" << st2.size() << endl; // cout << "-------------------------\n"; // while (!st2.empty()) // { // cout << st2.top() << endl; // st2.pop(); // } // cout << "size=" << st2.size() << endl; //}
[ "annsamoluk82@gmail.com" ]
annsamoluk82@gmail.com
d8a1fb0574f00825fb2b0aaf11704d8a7e2e66df
16b142e8cd4a704c0488646c82141716409a698b
/Section3.3/fence.cpp
cf13f46b6e289a6dc7ea141d6003a297eb0f0f56
[]
no_license
BragCat/USACO
3ba602c50210e60ebda3653263d27eb34996e31d
db22e56e5d42c462ea38cf656c4dfba619f79265
refs/heads/master
2018-11-22T08:42:46.196513
2018-10-30T13:46:07
2018-10-30T13:46:07
100,441,033
0
0
null
null
null
null
UTF-8
C++
false
false
1,582
cpp
/* ID: bragcat1 LANG: C++11 TASK: fence */ #include <cstdio> #include <vector> #include <cstring> using namespace std; #define N 500 #define min(a,b) ((a)<(b))?(a):(b) vector<int> answer; void ride(int degrees[], int paths[][N], int node) { for (int i = 0; i < N; ++i) { if (paths[node][i] > 0) { --degrees[node]; --degrees[i]; --paths[node][i]; --paths[i][node]; ride(degrees, paths, i); } } answer.push_back(node); } int main(void) { int minNode = N + 1; int degrees[N]; int paths[N][N]; memset(degrees, 0, sizeof(degrees)); memset(paths, 0, sizeof(paths)); int fenceNumber; FILE *fin = fopen("fence.in", "r"); if (fin == NULL) { printf("open file failed.\n"); return 0; } fscanf(fin, "%d", &fenceNumber); for (int i = 0; i < fenceNumber; ++i) { int x, y; fscanf(fin, "%d%d", &x, &y); ++degrees[x - 1]; ++degrees[y - 1]; ++paths[x - 1][y - 1]; ++paths[y - 1][x - 1]; minNode = min(minNode, min(x - 1, y - 1)); } fclose(fin); int stNode = -1; for (int i = 0; i < N; ++i) { if (degrees[i] % 2 != 0) { stNode = i; break; } } if (stNode == -1) { stNode = minNode; } ride(degrees, paths, stNode); FILE *fout = fopen("fence.out", "w"); while (!answer.empty()) { fprintf(fout, "%d\n", answer.back() + 1); answer.pop_back(); } fclose(fout); return 0; }
[ "bragcat.li@gmail.com" ]
bragcat.li@gmail.com
51adfb3ae93d89de4cc1dacb3f2ce4bdf9e17067
5e135c34baf51eb8c17db4b7fa71fb4f21ab8b8c
/src/util/matrix_test.cpp
8680926966160a275f76c8fee305e61ebb65d0ee
[]
no_license
lmcoy/mypowheg
cd77ae40471272282e28da4a3b21ea12c2d9794c
f9f57e50ebed0d1756b1472e1ef29f4e5bf5dfb9
refs/heads/master
2021-01-12T08:07:54.918090
2018-09-30T16:53:51
2018-09-30T16:53:51
76,482,229
2
0
null
2017-04-27T09:28:32
2016-12-14T17:34:54
Fortran
UTF-8
C++
false
false
2,416
cpp
#include "gtest/gtest.h" #include "util/matrix.h" TEST(Matrix,Index) { Util::Matrix<4,4> m; for (int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { m[i][j] = (double)(i*(j+1)); } } EXPECT_DOUBLE_EQ( m[0][0], 0.0 ); EXPECT_DOUBLE_EQ( m[1][0], 1.0 ); EXPECT_DOUBLE_EQ( m[2][0], 2.0 ); EXPECT_DOUBLE_EQ( m[3][0], 3.0 ); EXPECT_DOUBLE_EQ( m[0][1], 0.0 ); EXPECT_DOUBLE_EQ( m[1][1], 2.0 ); EXPECT_DOUBLE_EQ( m[2][1], 4.0 ); EXPECT_DOUBLE_EQ( m[3][1], 6.0 ); EXPECT_DOUBLE_EQ( m[0][2], 0.0 ); EXPECT_DOUBLE_EQ( m[1][2], 3.0 ); EXPECT_DOUBLE_EQ( m[2][2], 6.0 ); EXPECT_DOUBLE_EQ( m[3][2], 9.0 ); EXPECT_DOUBLE_EQ( m[0][3], 0.0 ); EXPECT_DOUBLE_EQ( m[1][3], 4.0 ); EXPECT_DOUBLE_EQ( m[2][3], 8.0 ); EXPECT_DOUBLE_EQ( m[3][3], 12.0 ); } TEST(Matrix, Copy) { Util::Matrix<4,4> m; for (int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { m[i][j] = (double)(i*(j+1)); } } Util::Matrix<4,4> m2 = m; for (int i = 0; i < 4; i++) { for(int j = 0; j < 4; j++) { m2[i][j] = 0.0; } } EXPECT_DOUBLE_EQ( m[0][0], 0.0 ); EXPECT_DOUBLE_EQ( m[1][0], 1.0 ); EXPECT_DOUBLE_EQ( m[2][0], 2.0 ); EXPECT_DOUBLE_EQ( m[3][0], 3.0 ); EXPECT_DOUBLE_EQ( m[0][1], 0.0 ); EXPECT_DOUBLE_EQ( m[1][1], 2.0 ); EXPECT_DOUBLE_EQ( m[2][1], 4.0 ); EXPECT_DOUBLE_EQ( m[3][1], 6.0 ); EXPECT_DOUBLE_EQ( m[0][2], 0.0 ); EXPECT_DOUBLE_EQ( m[1][2], 3.0 ); EXPECT_DOUBLE_EQ( m[2][2], 6.0 ); EXPECT_DOUBLE_EQ( m[3][2], 9.0 ); EXPECT_DOUBLE_EQ( m[0][3], 0.0 ); EXPECT_DOUBLE_EQ( m[1][3], 4.0 ); EXPECT_DOUBLE_EQ( m[2][3], 8.0 ); EXPECT_DOUBLE_EQ( m[3][3], 12.0 ); EXPECT_DOUBLE_EQ( m2[0][0], 0.0 ); EXPECT_DOUBLE_EQ( m2[1][0], 0.0 ); EXPECT_DOUBLE_EQ( m2[2][0], 0.0 ); EXPECT_DOUBLE_EQ( m2[3][0], 0.0 ); EXPECT_DOUBLE_EQ( m2[0][1], 0.0 ); EXPECT_DOUBLE_EQ( m2[1][1], 0.0 ); EXPECT_DOUBLE_EQ( m2[2][1], 0.0 ); EXPECT_DOUBLE_EQ( m2[3][1], 0.0 ); EXPECT_DOUBLE_EQ( m2[0][2], 0.0 ); EXPECT_DOUBLE_EQ( m2[1][2], 0.0 ); EXPECT_DOUBLE_EQ( m2[2][2], 0.0 ); EXPECT_DOUBLE_EQ( m2[3][2], 0.0 ); EXPECT_DOUBLE_EQ( m2[0][3], 0.0 ); EXPECT_DOUBLE_EQ( m2[1][3], 0.0 ); EXPECT_DOUBLE_EQ( m2[2][3], 0.0 ); EXPECT_DOUBLE_EQ( m2[3][3], 0.0 ); }
[ "oymanns@physik.rwth-aachen.de" ]
oymanns@physik.rwth-aachen.de
b75bfd585ea67acaeaffeb1e2dae66121bfa857a
84e14f6522262721cf5a4905aa7d1fc88ebf2cbe
/src/light/slice.h
4425f9005290cdbffcd37d374a4ef635a90e8dfe
[ "MIT" ]
permissive
chemaoxian/light
765c0c35d61b02f52e857ce3c4b388bdd1c14a51
de917d0af2954914de3564ee2f017138c9da21ee
refs/heads/master
2021-01-02T22:29:44.152747
2017-11-22T09:25:48
2017-11-22T09:25:48
99,330,070
1
0
null
null
null
null
UTF-8
C++
false
false
3,451
h
// Copyright (c) 2011 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. See the AUTHORS file for names of contributors. // // Slice is a simple structure containing a pointer into some external // storage and a size. The user of a Slice must ensure that the slice // is not used after the corresponding external storage has been // deallocated. // // Multiple threads can invoke const methods on a Slice without // external synchronization, but if any of the threads may call a // non-const method, all threads accessing the same Slice must use // external synchronization. #ifndef _LGITH_SLICE_H_ #define _LGITH_SLICE_H_ #include <string.h> #include <assert.h> #include <string> namespace light { // Copy from leveldb project // @see https://github.com/google/leveldb/blob/master/include/leveldb/slice.h class Slice { public: typedef char value_type; public: // Create an empty slice. Slice() : data_(""), size_(0) {} // Create a slice that refers to d[0,n-1]. Slice(const char* d, size_t n) : data_(d), size_(n) {} // Create a slice that refers to the contents of "s" Slice(const std::string& s) : data_(s.data()), size_(s.size()) {} // Create a slice that refers to s[0,strlen(s)-1] Slice(const char* s) : data_(s), size_(strlen(s)) {} // Return a pointer to the beginning of the referenced data const char* data() const { return data_; } // Return the length (in bytes) of the referenced data size_t size() const { return size_; } // Return true if the length of the referenced data is zero bool empty() const { return size_ == 0; } // Return the ith byte in the referenced data. // REQUIRES: n < size() char operator[](size_t n) const { assert(n < size()); return data_[n]; } // Change this slice to refer to an empty array void clear() { data_ = ""; size_ = 0; } // Drop the first "n" bytes from this slice. void remove_prefix(size_t n) { assert(n <= size()); data_ += n; size_ -= n; } // Return a string that contains the copy of the referenced data. std::string ToString() const { return std::string(data_, size_); } // Three-way comparison. Returns value: // < 0 if "*this" < "b", // == 0 if "*this" == "b", // > 0 if "*this" > "b" int compare(const Slice& b) const; private: const char* data_; size_t size_; }; typedef Slice slice; //--------------------------------------------------------- //typedef Map<Slice, Slice> SliceSliceMap; //--------------------------------------------------------- inline bool operator==(const Slice& x, const Slice& y) { return ((x.size() == y.size()) && (memcmp(x.data(), y.data(), x.size()) == 0)); } inline bool operator!=(const Slice& x, const Slice& y) { return !(x == y); } inline bool operator<(const Slice& x, const Slice& y) { return x.compare(y) < 0; } inline int Slice::compare(const Slice& b) const { const size_t min_len = (size_ < b.size_) ? size_ : b.size_; int r = memcmp(data_, b.data_, min_len); if (r == 0) { if (size_ < b.size_) { r = -1; } else if (size_ > b.size_) { r = +1; } } return r; } } // namespace light #endif
[ "443224841@qq.com" ]
443224841@qq.com
eff7d307132e46386a5b05419596a94dd260b8fe
b703cb4f590af7b5f138f4a383b2f6f31209993b
/mef02-c07/positive.h
2d7381439219a87cdbcb34fcba1e2756a877364d
[]
no_license
Beasalman/mef
9d5e28a77d1dd25542174cd2e8a2289ec1167548
cd08c3b3cf7050fb76c38b7cd74c7e553faca025
refs/heads/master
2020-05-29T21:50:22.841664
2019-05-31T12:20:08
2019-05-31T12:20:08
189,392,446
0
0
null
null
null
null
UTF-8
C++
false
false
393
h
#include <iostream> using std::cout; using std::endl; #include <Eigen/Dense> using namespace Eigen; /* --------------------------------------------------------------------------- */ #ifndef positive_h_ #define positive_h_ double positive (double); VectorXd positive (VectorXd); #endif /* -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*- */
[ "bsm@stromboli.sc.cwi.nl" ]
bsm@stromboli.sc.cwi.nl
9830206385b435e31dc9e41fa0daec5bbcdb634c
26cca13846de9bbbe0672fe2a8e3d79368c6c62c
/interview/Trapping Rain Water.cpp
3bb416d19fe6f83580550d9f43e387fb209bf5f6
[]
no_license
meizhitu/pojExec
3531382d9bc1048a9af84a4d7780970e13e44be9
d86d73b22f5188635693592f70429fd0bcb6980b
refs/heads/master
2021-01-19T00:29:33.483674
2013-08-31T15:45:56
2013-08-31T15:45:56
null
0
0
null
null
null
null
UTF-8
C++
false
false
882
cpp
//先从左往右计算每个坐标左侧的max,然后从右往左计算,计算每个坐标右边的最大值,然后遍历每个坐标点,min(左边,右边)-A[i]即为每个坐标点的面积,求和。 #include <iostream> using namespace std; int trap(int A[], int n) { // Start typing your C/C++ solution below // DO NOT write int main() function if(n==0) return 0; int maxL = A[0]; int maxLeft[n]; maxLeft[0] = 0 ; for(int i = 1;i<n;i++) { maxLeft[i] = maxL; if(maxL < A[i]) maxL = A[i]; } int maxR = A[n-1]; int maxRight[n]; maxRight[n-1] = 0 ; int area = 0 ; for(int i = n-2;i>=0;i--){ maxRight[i] = maxR; int single = min(maxLeft[i],maxRight[i])-A[i]; if(single >0) area += single; if(maxR < A[i]) maxR = A[i]; } return area; } int main(){ int A[] = {0,1,0,2,1,0,1,3,2,1,2,1}; int n = 12; cout << trap(A,n)<<endl; }
[ "momoliu88@126.com" ]
momoliu88@126.com
ee324951cd8b755a0c8e1070cdcedaa60e72f8d3
6e78e5f322c23c58148774cbef56c9fbdc597063
/FlexEngine/include/Test.hpp
cfba292a6467dcc7e1595ddef54040460f2e6303
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
templeblock/FlexEngine
325630251f6ed0be60577a16f7b772943c0f9ad1
2d3bb41fb6a3e5e6815a4a2c338d22af1c77e9bf
refs/heads/master
2022-11-23T20:06:32.772425
2020-04-21T17:58:22
2020-04-21T17:58:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,400
hpp
#pragma once #include "JSONParser.hpp" #include "Helpers.hpp" IGNORE_WARNINGS_PUSH #include <glm/gtx/euler_angles.hpp> IGNORE_WARNINGS_POP namespace flex { class FlexTest { private: using TestFunc = void(*)(); #define JSON_UNIT_TEST(FuncName) static void FuncName() \ { \ const char* FunctionName = #FuncName; #define JSON_UNIT_TEST_END JSONParser::ClearErrors(); } #define UNIT_TEST(FuncName) static void FuncName() \ { \ const char* FunctionName = #FuncName; #define UNIT_TEST_END } template<class T> static void Expect(const char* funcName, int lineNumber, T val, T exp, const char* msg) { if (val != exp) { std::string msgStr = std::string(funcName) + " L" + std::to_string(lineNumber) + " - Expected " + std::to_string(exp) + ", got " + std::to_string(val) + ", error message:\n\t" + msg; throw std::runtime_error(msgStr.c_str()); } } static void Expect(const char* funcName, int lineNumber, glm::vec3 val, glm::vec3 exp, const char* msg) { if (val != exp) { std::string msgStr = std::string(funcName) + " L" + std::to_string(lineNumber) + " - Expected " + VecToString(exp) + ", got " + VecToString(val) + ", error message:\n\t" + msg; throw std::runtime_error(msgStr.c_str()); } } static void Expect(const char* funcName, int lineNumber, std::size_t val, std::size_t exp, const char* msg) { if (val != exp) { std::string msgStr = std::string(funcName) + " L" + std::to_string(lineNumber) + " - Expected " + std::to_string(exp) + ", got " + std::to_string(val) + ", error message:\n\t" + msg; throw std::runtime_error(msgStr.c_str()); } } static void Expect(const char* funcName, int lineNumber, const char* val, const char* exp, const char* msg) { if (strcmp(val, exp) != 0) { std::string msgStr = std::string(funcName) + " L" + std::to_string(lineNumber) + " - Expected " + std::string(exp) + ", got " + std::string(val) + ", error message:\n\t" + std::string(msg); throw std::runtime_error(msgStr.c_str()); } } static void Expect(const char* funcName, int lineNumber, JSONValue::Type val, JSONValue::Type exp, const char* msg) { Expect(funcName, lineNumber, (u32)val, (u32)exp, msg); } // // JSON tests // #define EXPECT(val, exp) Expect(FunctionName, __LINE__, val, exp, JSONParser::GetErrorString()); JSON_UNIT_TEST(EmptyFileIsParsed) { std::string jsonStr = R"()"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MinimalFileIsParsed) { std::string jsonStr = R"({ })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(OneFieldFileIsValid) { std::string jsonStr = R"({ "label" : "strValue" })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 1u); EXPECT(jsonObj.fields[0].label.c_str(), "label"); EXPECT(jsonObj.fields[0].value.type, JSONValue::Type::STRING); EXPECT(jsonObj.fields[0].value.strValue.c_str(), "strValue"); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MissingQuoteFailsToParse) { std::string jsonStr = R"({ "label" : "strValue })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, false); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(ObjectParsedCorrectly) { std::string jsonStr = R"( { "label" : { "sublabel" : "childValue1" } })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 1u); EXPECT(jsonObj.fields[0].label.c_str(), "label"); EXPECT(jsonObj.fields[0].value.type, JSONValue::Type::OBJECT); EXPECT(jsonObj.fields[0].value.objectValue.fields.size(), 1u); EXPECT(jsonObj.fields[0].value.objectValue.fields[0].label.c_str(), "sublabel"); EXPECT(jsonObj.fields[0].value.objectValue.fields[0].value.type, JSONValue::Type::STRING); EXPECT(jsonObj.fields[0].value.objectValue.fields[0].value.strValue.c_str(), "childValue1"); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(FieldArrayParsedCorrectly) { std::string jsonStr = R"( { "label" : [ "array elem 0" ] })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 1u); EXPECT(jsonObj.fields[0].label.c_str(), "label"); EXPECT(jsonObj.fields[0].value.type, JSONValue::Type::FIELD_ARRAY); EXPECT(jsonObj.fields[0].value.fieldArrayValue.size(), 1u); EXPECT(jsonObj.fields[0].value.fieldArrayValue[0].label.c_str(), "array elem 0"); EXPECT(jsonObj.fields[0].value.fieldArrayValue[0].value.type, JSONValue::Type::FIELD_ENTRY); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MissingSquareBracketFailsToParse) { std::string jsonStr = R"( { "label" : [ "array elem 0" })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, false); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MissingCurlyBracketFailsToParse) { std::string jsonStr = R"( { "label" : [ "array elem 0" ] )"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, false); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(LineCommentIgnored) { std::string jsonStr = R"( { // "ignored label" : "ignored field", "label" : [ "array elem 0" ] })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 1u); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MultipleFieldsParsedCorrectly) { std::string jsonStr = R"( { "label 0" : "value 0", "label 1" : "value 1" })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 2u); } JSON_UNIT_TEST_END; // TODO: Fix error detection and re-enable //JSON_UNIT_TEST(MissingCommaFailsParse) //{ // std::string jsonStr = R"( // { // "label 0" : "value 0" // "label 1" : "value 1" // })"; // JSONObject jsonObj; // bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); // EXPECT(bSuccess, false); //} //JSON_UNIT_TEST_END; JSON_UNIT_TEST(ArrayParsesCorrectly) { std::string jsonStr = R"( { "fields" : [ "label 0" : "value 0", "label 1" : "value 1" ] })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields[0].value.type, JSONValue::Type::FIELD_ARRAY); EXPECT(jsonObj.fields[0].value.fieldArrayValue.size(), 2u); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(MissingCommaInArrayFailsParse) { std::string jsonStr = R"( { "fields" : [ "label 0" : "value 0" "label 1" : "value 1" ] })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, false); } JSON_UNIT_TEST_END; JSON_UNIT_TEST(ComplexFileIsValid) { std::string jsonStr = R"( { "version" : 3, "name" : "scene_prop_test", "spawn player" : false, "objects" : [ { "name" : "Skybox", "type" : "skybox", "visible" : true, "transform" : { }, "materials" : [ "skybox 01" ], "skybox info" : { } }, { "name" : "Directional Light", "type" : "directional light", "visible" : true, "transform" : { "pos" : "0.000, 15.000, 0.000", "rot" : "-0.001, 0.365, 0.824" }, "directional light info" : { "rotation" : "-0.073, 0.166, 0.394, 0.901", "pos" : "0.000, 15.000, 0.000", "color" : "1.00, 1.00, 1.00", "enabled" : true, "brightness" : 3.047000, "cast shadows" : true, "shadow darkness" : 1.000000 } } ] })"; JSONObject jsonObj; bool bSuccess = JSONParser::Parse(jsonStr, jsonObj); EXPECT(bSuccess, true); EXPECT(jsonObj.fields.size(), 4u); EXPECT(jsonObj.fields[2].value.type, JSONValue::Type::BOOL); // Spawn player EXPECT(jsonObj.fields[2].value.boolValue, false); // Spawn player is false EXPECT(jsonObj.fields[3].value.type, JSONValue::Type::OBJECT_ARRAY); EXPECT(jsonObj.fields[3].value.objectArrayValue.size(), 2u); // 2 objects EXPECT(jsonObj.fields[3].value.objectArrayValue[0].fields.size(), 6u); // 6 fields in skybox object EXPECT(jsonObj.fields[3].value.objectArrayValue[0].fields[4].value.type, JSONValue::Type::FIELD_ARRAY); // skybox materials array EXPECT(jsonObj.fields[3].value.objectArrayValue[0].fields[4].value.fieldArrayValue.size(), 1u); // 1 material in materials array EXPECT(jsonObj.fields[3].value.objectArrayValue[1].fields[4].label.c_str(), "directional light info"); // Directional light info label EXPECT(jsonObj.fields[3].value.objectArrayValue[1].fields[4].value.objectValue.fields[4].value.type, JSONValue::Type::FLOAT); // Directional light brightness type EXPECT(jsonObj.fields[3].value.objectArrayValue[1].fields[4].value.objectValue.fields[4].value.floatValue, 3.047f); // Directional light brightness value } JSON_UNIT_TEST_END; #undef EXPECT // // Math tests // #define EXPECT(val, exp) Expect(FunctionName, __LINE__, val, exp, ""); UNIT_TEST(RayPlaneIntersectionOriginValid) { glm::vec3 axis(1.0f, 0.0f, 0.0f); glm::vec3 rayOrigin(0.0f, 0.0f, -1.0f); glm::vec3 rayEnd(0.0f, 0.0f, 1.0f); glm::vec3 planeOrigin(0.0f, 0.0f, 0.0f); glm::vec3 planeNorm(0.0f, 0.0f, -1.0f); glm::vec3 startPos(0.0f, 0.0f, 0.0f); glm::vec3 camForward(0.0f, 0.0f, 1.0f); real offset = 0.0f; glm::vec3 z(VEC3_ZERO); glm::vec3 constrainedIntersection = FlexEngine::CalculateRayPlaneIntersectionAlongAxis(axis, rayOrigin, rayEnd, planeOrigin, planeNorm, startPos, camForward, offset, false, z); EXPECT(constrainedIntersection, glm::vec3(0.0f, 0.0f, 0.0f)); } UNIT_TEST_END; UNIT_TEST(RayPlaneIntersectionXYValid) { glm::vec3 axis(1.0f, 0.0f, 0.0f); glm::vec3 rayOrigin(1.0f, 1.0f, -1.0f); glm::vec3 rayEnd(1.0f, 1.0f, 1.0f); glm::vec3 planeOrigin(0.0f, 0.0f, 0.0f); glm::vec3 planeNorm(0.0f, 0.0f, -1.0f); glm::vec3 startPos(0.0f, 0.0f, 0.0f); glm::vec3 camForward(0.0f, 0.0f, 1.0f); real offset = 0.0f; glm::vec3 z(VEC3_ZERO); glm::vec3 constrainedIntersection = FlexEngine::CalculateRayPlaneIntersectionAlongAxis(axis, rayOrigin, rayEnd, planeOrigin, planeNorm, startPos, camForward, offset, false, z); EXPECT(constrainedIntersection, glm::vec3(1.0f, 0.0f, 0.0f)); // intersection point should be (1, 1, 0), constrained to x axis: (1, 0, 0) } UNIT_TEST_END; UNIT_TEST(RayPlaneIntersectionXY2Valid) { glm::vec3 axis(0.0f, 1.0f, 0.0f); glm::vec3 rayOrigin(-1.0f, 3.0f, -1.0f); glm::vec3 rayEnd(-1.0f, 3.0f, 1.0f); glm::vec3 planeOrigin(0.0f, 0.0f, 0.0f); glm::vec3 planeNorm(0.0f, 0.0f, -1.0f); glm::vec3 startPos(0.0f, 0.0f, 0.0f); glm::vec3 camForward(0.0f, 0.0f, 1.0f); real offset = 0.0f; glm::vec3 z(VEC3_ZERO); glm::vec3 constrainedIntersection = FlexEngine::CalculateRayPlaneIntersectionAlongAxis(axis, rayOrigin, rayEnd, planeOrigin, planeNorm, startPos, camForward, offset, false, z); EXPECT(constrainedIntersection, glm::vec3(0.0f, 3.0f, 0.0f)); // intersection point should be (-1, 3, 0), constrained to y axis: (0, 3, 0) } UNIT_TEST_END; UNIT_TEST(RayPlaneIntersectionXY3Valid) { glm::vec3 axis(0.0f, 0.0f, 1.0f); glm::vec3 rayOrigin(1.0f, -100.0f, 3.0f); glm::vec3 rayEnd(-1.0f, -100.0f, 3.0f); glm::vec3 planeOrigin(0.0f, 0.0f, 0.0f); glm::vec3 planeNorm(1.0f, 0.0f, 0.0f); glm::vec3 startPos(0.0f, 0.0f, 0.0f); glm::vec3 camForward(-1.0f, 0.0f, 0.0f); real offset = 0.0f; glm::vec3 z(VEC3_ZERO); glm::vec3 constrainedIntersection = FlexEngine::CalculateRayPlaneIntersectionAlongAxis(axis, rayOrigin, rayEnd, planeOrigin, planeNorm, startPos, camForward, offset, false, z); EXPECT(constrainedIntersection, glm::vec3(0.0f, 0.0f, 3.0f)); // intersection point should be (0, -100, 3), constrained to z axis: (0, 0, 3) } UNIT_TEST_END; UNIT_TEST(MinComponentValid) { glm::vec2 a(1.0f, 2.0); real result = MinComponent(a); EXPECT(result, 1.0f); glm::vec2 b(-9.0f, -12.0f); result = MinComponent(b); EXPECT(result, -12.0f); glm::vec2 c(-100506.008f, -100506.009f); result = MinComponent(c); EXPECT(result, -100506.009f); } UNIT_TEST_END; UNIT_TEST(MaxComponentValid) { glm::vec2 a(1.0f, 2.0f); real result = MaxComponent(a); EXPECT(result, 2.0f); glm::vec2 b(-9.0f, -12.0f); result = MaxComponent(b); EXPECT(result, -9.0f); glm::vec2 c(-100506.008f, -100506.009f); result = MaxComponent(c); EXPECT(result, -100506.008f); } UNIT_TEST_END; UNIT_TEST(QuaternionsAreNearlyEqual) { glm::quat a(glm::vec3(PI + EPSILON, PI / 2.0f, EPSILON)); glm::quat b(glm::vec3(PI, PI / 2.0f - EPSILON, -EPSILON)); bool result = NearlyEquals(a, b, 0.0001f); EXPECT(result, true); glm::quat c(glm::vec3((1.0f - PI) * 2.0f, -PI / 2.0f, 1.0f + EPSILON)); glm::quat d(glm::vec3(2.0f - TWO_PI, -PI / 2.0f - EPSILON, 0.5 * 2.0f)); result = NearlyEquals(c, d, 0.0001f); EXPECT(result, true); glm::quat e(-glm::sin(PI / 2.0f), glm::sin(PI / 4.0f), 0.0f, 0.0f); glm::quat f(-glm::sin(TWO_PI / 4.0f), glm::sin(PI / 4.0f), 0.0f, 0.0f); result = NearlyEquals(e, f, 0.0001f); EXPECT(result, true); } UNIT_TEST_END; UNIT_TEST(QuaternionsAreNotNearlyEqual) { glm::quat a(glm::vec3(TWO_PI, 2.0f, 0.0f)); glm::quat b(glm::vec3(PI, PI / 2.0f, -EPSILON)); bool result = NearlyEquals(a, b, 0.0001f); EXPECT(result, false); glm::quat c(glm::vec3((1.0f - PI) * 2.0f, -PI / 2.0f, 0.01f)); glm::quat d(glm::vec3(2.0f - TWO_PI, -PI / 2.0f - EPSILON, -0.01f)); result = NearlyEquals(c, d, 0.0001f); EXPECT(result, false); glm::quat e(-glm::sin(PI / 4.0f), glm::sin(PI / 4.0f), 0.0f, 0.0f); glm::quat f(glm::sin(-TWO_PI / 2.0f), glm::sin(PI / 4.0f), 0.0f, 1.0f); result = NearlyEquals(e, f, 0.0001f); EXPECT(result, false); glm::quat g(0.0f, 0.0f, 0.0f, 0.0f); glm::quat h(1.0f, 0.0f, 0.0f, 0.0f); glm::quat i(0.0f, 1.0f, 0.0f, 0.0f); glm::quat j(0.0f, 0.0f, 1.0f, 0.0f); glm::quat k(0.0f, 0.0f, 0.0f, 1.0f); result = NearlyEquals(g, h, 0.0001f); EXPECT(result, false); result = NearlyEquals(g, i, 0.0001f); EXPECT(result, false); result = NearlyEquals(g, j, 0.0001f); EXPECT(result, false); result = NearlyEquals(g, k, 0.0001f); EXPECT(result, false); glm::quat l(0.0f, 0.0f, 0.0f, 0.0001f); glm::quat m(0.0f, 0.0f, 0.0f, -0.0001f); result = NearlyEquals(l, m, 0.0001f); EXPECT(result, false); glm::quat n(0.0f, 0.0f, 0.0f, -0.0001f); glm::quat o(0.0f, 0.0f, 0.0f, 0.0001f); result = NearlyEquals(n, o, 0.0001f); EXPECT(result, false); } UNIT_TEST_END; public: static void Run() { TestFunc funcs[] = { // JSON tests EmptyFileIsParsed, MinimalFileIsParsed, OneFieldFileIsValid, MissingQuoteFailsToParse, ObjectParsedCorrectly, FieldArrayParsedCorrectly, MissingSquareBracketFailsToParse, MissingCurlyBracketFailsToParse, LineCommentIgnored, MultipleFieldsParsedCorrectly, ArrayParsesCorrectly, MissingCommaInArrayFailsParse, ComplexFileIsValid, // Math tests RayPlaneIntersectionOriginValid, RayPlaneIntersectionXYValid, RayPlaneIntersectionXY2Valid, RayPlaneIntersectionXY3Valid, MinComponentValid, MaxComponentValid, QuaternionsAreNearlyEqual, QuaternionsAreNotNearlyEqual }; Print("Running %u tests...\n", (u32)ARRAY_LENGTH(funcs)); u32 failedTestCount = 0; for (auto func : funcs) { try { func(); } catch (std::exception e) { PrintError("%s\n", e.what()); failedTestCount += 1; } } if (failedTestCount > 0) { PrintError("%u test%s failed!\n", failedTestCount, failedTestCount > 1 ? "s" : ""); } else { Print("%u/%u tests passed\n", (u32)ARRAY_LENGTH(funcs), (u32)ARRAY_LENGTH(funcs)); } Print("\n"); } }; }
[ "ajweeks@shaw.ca" ]
ajweeks@shaw.ca
cb912f922cf5b1dc6428275324cbf5e628256552
6f96cbef7eff9750ae0dee888d67d52d296c3fab
/editwidget.cpp
07138281fc62d88ab8af70857569319bfa2d3fb2
[]
no_license
AbnerWater/QT-OsgViewer
3fb9179a1e7d7132d5d14cdb16e6401046beebc7
18bd0c41bffffd269209d48b7016234841070e3a
refs/heads/master
2020-07-28T21:05:34.880250
2019-09-19T11:40:29
2019-09-19T11:40:29
209,537,669
2
1
null
null
null
null
UTF-8
C++
false
false
1,136
cpp
#include "editwidget.h" #include<QFileDialog> #include "qdebug.h" #include<QPixmap> editwidget::editwidget(QWidget *parent) : QWidget(parent) { this->setGeometry(500,500,600,400); texture.setText("添加纹理"); texture.setGeometry(450,100,100,50); texture.setParent(this); texture.show(); apply.setText("应用"); apply.setGeometry(450,250,100,50); apply.setParent(this); apply.show(); review.setGeometry(0,0,400,400); review.setParent(this); texture_scene=new QGraphicsScene(this); //预览纹理图片 connect(&texture,&QPushButton::released, [=]() { texturepath=QFileDialog::getOpenFileName(this,"open","../","TEXTURE(*.jpg;*.png);;ALL(*.*)"); qDebug()<<texturepath; texture_scene->addPixmap(QPixmap(texturepath)); review.setScene(texture_scene); review.show(); }); //点击应用纹理 connect(&apply,&QPushButton::released, [=]() { emit applytexture(); review.close(); close(); }); this->setFixedSize(600,400); }
[ "noreply@github.com" ]
AbnerWater.noreply@github.com
149f3ad47a9cce6a696e7ac400df3dbcb8680441
6f874ccb136d411c8ec7f4faf806a108ffc76837
/code/Windows-classic-samples/Samples/Win7Samples/winbase/deployment/windowsdeploymentservices/multicast/consumer/main.cpp
faf74a02cb95ba82c59b02b3253a6bdd2acdd33f
[ "MIT" ]
permissive
JetAr/ZDoc
c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435
e81a3adc354ec33345e9a3303f381dcb1b02c19d
refs/heads/master
2022-07-26T23:06:12.021611
2021-07-11T13:45:57
2021-07-11T13:45:57
33,112,803
8
8
null
null
null
null
UTF-8
C++
false
false
9,453
cpp
/*++ Copyright (c) 2007 Microsoft Corporation Module Name: main.cpp Abstract: Sample code demonstrating the use of the WDS multicast client apis. Author: Blaine Young (blyoung) Environment: User Mode --*/ #include <windows.h> #include <wdstci.h> #include <stdio.h> #include <time.h> // // Handy macros. // #define EXIT_ON_HR_ERROR(x) do{if(FAILED(x)){hr = x; wprintf(L"Failing with error 0x%08x on line %d\n", hr, __LINE__); goto exit;}}while(0) #define EXIT_ON_MALLOC_ERROR(x) do{if(NULL == x){hr = E_OUTOFMEMORY; wprintf(L"Failing with error 0x%08x on line %d\n", hr, __LINE__); goto exit;}}while(0) #define EXIT_ON_WIN_ERROR(x) do{if(ERROR_SUCCESS != x){hr = HRESULT_FROM_WIN32(x); wprintf(L"Failing with error 0x%08x on line %d\n", hr, __LINE__); goto exit;}}while(0) VOID SessionStartCallback( __in HANDLE hSessionKey, __in PVOID pCallerData, __in PULARGE_INTEGER FileSize ) /*++ Routine Description: The PFN_WdsTransportClientSessionStart callback is called at the start of a multicast session to indicate file size and other server side information about the file to the consumer. Arguments: hSessionKey - The handle belonging to the session that is being started. pvCallerData - Pointer to the caller specific data for this session. This data was specified in the call to WdsTransportClientStartSession. FileSize - The total size of the file being transferred over multicast. --*/ { printf("File transfer started\n"); } VOID ReceiveContentsCallback( __in HANDLE hSessionKey, __in PVOID pCallerData, __in_bcount(ulSize) PVOID pContents, __in ULONG ulSize, __in PULARGE_INTEGER pContentOffset ) /*++ Routine Description: The PFN_WdsTransportClientReceiveContents callback is used by the multicast client to indicate that a block of data is ready to be consumed. Arguments: hSessionKey - The handle belonging to the session that is being started. pvCallerData - Pointer to the caller specific data for this session. This data was specified in the call to WdsTransportClientStartSession. pDataBlock - Buffer containing the data that the client received. This buffer belongs to the client and should not be modified, but the consumer may extend the lifetime of this buffer by calling WdsTransportClientReferenceBuffer on it. ulSize - The size of the data in pContents. pContentOffset - The offset in the data stream where this block of data starts. --*/ { HRESULT hr = S_OK; BOOL bResult = FALSE; DWORD dwError = ERROR_SUCCESS; HANDLE hFile = (HANDLE)pCallerData; OVERLAPPED Overlapped = {0}; ULONG ulBytesWritten = 0; // // Fill in the overlapped structure with the offset information for this // write. // Overlapped.Offset = pContentOffset->LowPart; Overlapped.OffsetHigh = pContentOffset->HighPart; // // Write the data to disk. // bResult = WriteFile(hFile, pContents, ulSize, &ulBytesWritten, &Overlapped); if (FALSE == bResult) { perror("Could not write data to disk"); hr = HRESULT_FROM_WIN32(GetLastError()); goto exit; } // // Inform the multicast client that it can release the cache associated // with this write. This function is associated with the receive throttling // provided by the multicast client. // // If this function is not called, the multicast client will stall once it // delivers n bytes (where n is the outstanding data limit that the // implementor specifies in the ulCacheSize member of the // WDS_TRANSPORTCLIENT_REQUEST structure). // dwError = WdsTransportClientCompleteReceive(hSessionKey, ulSize, pContentOffset); EXIT_ON_WIN_ERROR(dwError); exit: if (FAILED(hr)) { // // We failed somehow, so cancel the transfer. // WdsTransportClientCancelSession(hSessionKey); } return; } VOID SessionCompleteCallback( __in HANDLE hSessionKey, __in PVOID pCallerData, __in DWORD dwError ) /*++ Routine Description: The PFN_WdsTransportClientSessionCompete callback is used by the client to indicate that no more callbacks will be sent to the consumer and that the session either completed successfully or encountered a non-recoverable error. Arguments: hSessionKey - The handle belonging to the session that is being started. pvCallerData - Pointer to the caller specific data for this session. This data was specified in the call to WdsTransportClientStartSession. dwError - The overall status of the file transfer. If the session succeeded, this value will be set to ERROR_SUCCESS. If the session did not succeed, the appropriate error code for the session will be set. --*/ { printf("File transfer complete with result 0x%08x\n", dwError); } int __cdecl wmain( __in int argc, __in_ecount(argc) LPWSTR argv[] ) { HRESULT hr = S_OK; DWORD dwError = ERROR_SUCCESS; ULONG ulStatus = WDS_TRANSPORTCLIENT_STATUS_IN_PROGRESS; ULONG ulError = ERROR_SUCCESS; WDS_TRANSPORTCLIENT_REQUEST RequestParams = {0}; HANDLE hSession = NULL; HANDLE hFile = INVALID_HANDLE_VALUE; HANDLE hMCClientKey = NULL; clock_t StartTime = 0; if(argc < 5) { printf("Usage: tmc <server> <namespace> <remote file> <local file>\n"); dwError = ERROR_INVALID_PARAMETER; EXIT_ON_WIN_ERROR(dwError); } StartTime = clock(); // // Initialize the multicast client. This must occur before any calls into // the multicast client. // dwError = WdsTransportClientInitialize(); EXIT_ON_WIN_ERROR(dwError); // // Open a handle to the file that we will be writing to. We'll use the // file handle as our caller data. // hFile = CreateFile(argv[4], GENERIC_WRITE | GENERIC_READ, FILE_SHARE_READ, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (INVALID_HANDLE_VALUE == hFile) { hr = HRESULT_FROM_WIN32(GetLastError()); goto exit; } // // Fill out the request structure with the parameters that will be used // for this transfer. // RequestParams.ulLength = sizeof(RequestParams); RequestParams.ulApiVersion = WDS_TRANSPORTCLIENT_CURRENT_API_VERSION; RequestParams.ulAuthLevel = WDS_TRANSPORTCLIENT_AUTH; RequestParams.pwszServer = argv[1]; RequestParams.pwszNamespace = argv[2]; RequestParams.pwszObjectName = argv[3]; RequestParams.ulProtocol = WDS_TRANSPORTCLIENT_PROTOCOL_MULTICAST; RequestParams.pvProtocolData = NULL; RequestParams.ulProtocolDataLength = 0; // // Cache sizes are fairly arbitrary. You should test with a variety of // cache sizes to determine which best meets your performance and // application memory footprint needs. // RequestParams.ulCacheSize = 0x2000000; // // Initialize the session in the mc client. This WILL NOT start the // transfer, it will only initialize it in the client. // dwError = WdsTransportClientInitializeSession(&RequestParams, hFile, &hMCClientKey); EXIT_ON_WIN_ERROR(dwError); // // Register our callbacks with the multicast client. These callbacks MUST // be registered before we start the transfer. // // // Register our callbacks with the mc client. // dwError = WdsTransportClientRegisterCallback(hMCClientKey, WDS_TRANSPORTCLIENT_SESSION_COMPLETE, (PVOID)SessionCompleteCallback); EXIT_ON_WIN_ERROR(dwError); dwError = WdsTransportClientRegisterCallback(hMCClientKey, WDS_TRANSPORTCLIENT_SESSION_START, (PVOID)SessionStartCallback); EXIT_ON_WIN_ERROR(dwError); dwError = WdsTransportClientRegisterCallback(hMCClientKey, WDS_TRANSPORTCLIENT_RECEIVE_CONTENTS, (PVOID)ReceiveContentsCallback); EXIT_ON_WIN_ERROR(dwError); // // Start the actual transfer. // dwError = WdsTransportClientStartSession(hMCClientKey); EXIT_ON_WIN_ERROR(dwError); // // Wait for the session to complete. // dwError = WdsTransportClientWaitForCompletion(hMCClientKey, INFINITE); EXIT_ON_WIN_ERROR(dwError); dwError = WdsTransportClientQueryStatus(hMCClientKey, &ulStatus, &ulError); EXIT_ON_WIN_ERROR(dwError); hr = HRESULT_FROM_WIN32(ulError); printf("Transfer complete with 0x%08x\n", hr); printf("\nDownload Completed - Time:%.2f Seconds\n",((float)(clock() - StartTime) / CLOCKS_PER_SEC)); exit: if (INVALID_HANDLE_VALUE != hFile) { CloseHandle(hFile); } if (NULL != hMCClientKey) { if (FAILED(hr)) { WdsTransportClientCancelSession(hMCClientKey); } WdsTransportClientCloseSession(hMCClientKey); } WdsTransportClientShutdown(); return 0; }
[ "126.org@gmail.com" ]
126.org@gmail.com
f38b26a4469e9d2ca2d265a5afe25bb8dfd696cb
7feafc361420ba68c0df24840e62d18ccfdf11ef
/CSE/New folder/in/m/me j.cpp
7b3eece7f83349906f0abe2a5e62637cbbd6c4d4
[]
no_license
omarKaushru/Numb-UV-Life-activites
b7e94645c9bbc52317fcb80cd6c83e95793fcefb
63a74e875edee6dc5cfe77439247172da009f2c5
refs/heads/master
2022-12-05T11:34:12.142216
2020-09-01T18:19:41
2020-09-01T18:19:41
292,070,016
2
0
null
null
null
null
UTF-8
C++
false
false
1,412
cpp
#include<stdio.h> #include<conio.h> #include<string.h> main(){ char str[99]; int vow=0,cons=0,dig=0,com=0,dot=0,spa=0,i=0; printf(" Please enter a line: "); gets(str); while(str[i]!='\0') { if(str[i]=='a'||str[i]=='e'||str[i]=='i'||str[i]=='o'||str[i]=='u'||str[i]=='A'||str[i]=='E'||str[i]=='I'||str[i]=='O'||str[i]=='U'||str[i]=='.'||str[i]==','||str[i]=='0'||str[i]=='1'||str[i]=='2'||str[i]=='3'||str[i]=='4'||str[i]=='5'||str[i]=='6'||str[i]=='7'||str[i]=='8'||str[i]=='9'||str[i]==' ') vow++; else cons++; else dig++; else spa++; else dot++; else com++; i++; } printf("\nnumber of vowel =%d",vow); printf("\nnumber of consonants =%d",cons); printf("\nnumber of digits =%d",dig); printf("\nnumber of space =%d",spa); printf("\nnumber of dots =%d",dot); printf("\nnumber of comma =%d",com); getch(); }
[ "omarkaushru@gmail.com" ]
omarkaushru@gmail.com
fb13a316dacac3e33b3bc8e3afe2850ef6ce1eab
2e6daf1b735fe95070b0cc852552b09059de2fee
/Test_Almacen_PAI_11_Down/Test_Almacen_PAI_11_Down.ino
ab0be27ad9b6d60f9c937edb65c44b7fca62d66f
[]
no_license
wdgarzonc/AAUNFII
d8f0eb3241f1761f7e94add7996660485600239e
d86ae8b2412135b681c15424680edbeb55092f11
refs/heads/master
2022-09-21T05:57:11.319675
2020-05-25T18:31:44
2020-05-25T18:31:44
266,421,927
0
0
null
null
null
null
UTF-8
C++
false
false
38,123
ino
/* ros//Serial::std_msgs::Float64 Test Receives a Float64 input, subtracts 1.0, and publishes it */ #define F_CPU 8000000UL #include <ros.h> #include <std_msgs/Int16.h> //******************************************************************* //* Librerias para el teclado Matriz 4x4 * //******************************************************************* #include <Key.h> #include <Keypad.h> //******************************************************************* //* Librerias para pantalla ////lcd 16x2 I2C * //******************************************************************* //******************************************************************* //* Librerias para Motor paso a paso * //******************************************************************* #include <Stepper.h> ///////////////////////////Variables para control de los motores de la tijera/// ///Motor Nema23/////// int PUL = 12; //Pin para la señal de pulso int DIR = 11; //define Direction pin int EN = 10; //define Enable Pin ///Motor Nema17//////// int PUL1 = 9; //Pin para la señal de pulso int DIR1 = 38; //define Direction pin int EN1 = 40; //define Enable Pin ////////////////////////////////////////////////////////////////////////////////// //******************************************************************* //* Inicializacion de variables para el teclado * //* * //* https://www.prometec.net/teclados-matriciales/ * //* https://www.luisllamas.es/arduino-teclado-matricial/ * //* Columnas a pines 36, 37, 38, 39 * //* Filas a pines 42, 43, 44, 45 * //* Tecla Enter '#' * //* Tecla Delete '*'; * //******************************************************************* const byte rowsCount = 4; const byte columsCount = 4; int estado = 0; char keys[rowsCount][columsCount] = { { '1', '2', '3', 'A' }, { '4', '5', '6', 'B' }, { '7', '8', '9', 'C' }, { '*', '0', '#', 'D' } }; const byte rowPins[rowsCount] = { 36, 37, 38, 39 }; const byte columnPins[columsCount] = { 42, 43, 44, 45}; Keypad keypad = Keypad(makeKeymap(keys), rowPins, columnPins, rowsCount, columsCount); String KeyString = ""; char Enter = '#'; char Delete = '*'; bool almacenar = 0; bool done = 0; char KeyIn; //******************************************************************* //* Inicializacion de variables para ////lcd * //* * //* https://www.geekfactory.mx/tutoriales/tutoriales-arduino/ * //* ////lcd-16x2-por-i2c-con-arduino/ * //* https://naylampmechatronics.com/blog/35_Tutorial--////lcd-con-I2C- * //* controla-un-////lcd-con-so.html * //******************************************************************* // Constructor de la librería de ////lcd 16x2 // Aqui se configuran los pines asignados a la pantalla del PCF8574 //******************************************************************* //* Inicializacion de variables para Motores eje Z * //* * //* L = Left * //* R = Right * //* U = Up * //* D = Down * //******************************************************************* const int Vel = 255; const int Encoder_L = 2; // Pin Encoder_L optico const int Encoder_R = 3; // Pin Encoder_R optico int RPWM_Z_UP = 5; // Arduino PWM output pin 5; connect to IBT-2 pin 1 (RPWM) int LPWM_Z_UP = 6; // Arduino PWM output pin 6; connect to IBT-2 pin 2 (LPWM) int RPWM_Z_DOWN = 7; // Arduino PWM output pin 7; connect to IBT-2 pin 1 (RPWM) int LPWM_Z_DOWN = 8; // Arduino PWM output pin 8; connect to IBT-2 pin 2 (LPWM) int FCZLU = A3; int FCZRU = 28; int FCZLD = A5; int FCZRD = 30; bool FC_Z_L_U = 0; bool FC_Z_R_U = 0; bool FC_Z_L_D = 0; bool FC_Z_R_D = 0; volatile int ISRCounter_L = 0; // Contador de la interrupcion volatile int ISRCounter_R = 0; // Contador de la interrupcion const float consR=30.42;//pulsos/cm const float consL=28.48;//pulsos/cm int Pasos_pisoL; int Pasos_pisoR; const int DisPiso2=39.5;//cm const int DisPiso1=60;//cm const int Pasos_a_tijera=2100; int subiendo = 0; bool Z_done = 0; //******************************************************************* //* Inicializacion de variables para Motor paso a paso * //* * //* A1 = 22 * //* A2 = 23 * //* B1 = 24 * //* B2 = 25 * //******************************************************************* //int FCYA = 50; //int FCYL = 27; //bool FC_Y_L = 0; bool FC_Y_A = 0; //int revs = 0; int Pos_Y = 0; int LPos_Y = 0; const int stepsPerRevolution = 200; bool Y_done = 0; Stepper myStepper(stepsPerRevolution, 42, 44, 46, 48); //******************************************************************* //* Inicializacion de variables para Motor eje X * //* Pos 0 = Izquierda * //* Pos 1 = Derecha * //******************************************************************* int R_X = 32; int L_X = 34; int FCXL = A1; int FCXR = A0; bool FC_X_L = 0; bool FC_X_R = 0; int Pos_X = 0; bool X_done = 0; bool fin = 0; //******************************************************************* //* Interrupciones Encoder eje Z * //* Finales de carrera normalmente en 1 * //******************************************************************* void interruptCount_R() { ISRCounter_R++; //////Serial.println(ISRCounter_R); } void interruptCount_L() { ISRCounter_L++; //////Serial.println(ISRCounter_R); } //******************************************************************* //* Funcion para leer los finales de carrera * //******************************************************************* void fc(void) { FC_Z_L_D = digitalRead(FCZLD); FC_Z_L_U = digitalRead(FCZLU); FC_Z_R_D = digitalRead(FCZRD); FC_Z_R_U = digitalRead(FCZRU); FC_X_L = digitalRead(FCXL); FC_X_R = digitalRead(FCXR); } void test_fc(void) { ////Serial.print("ZLD: "); ////Serial.print(FC_Z_L_D); // ////Serial.print(" ZLU: "); ////Serial.print(FC_Z_L_U); // ////Serial.print(" ZRD: "); ////Serial.print(FC_Z_R_D); // ////Serial.print(" ZRU: "); ////Serial.print(FC_Z_R_U); // ////Serial.print(" XL: "); ////Serial.print(FC_X_L); // ////Serial.print(" XR: "); ////Serial.println(FC_X_R); } //******************************************************************* //* Funciones de movimiento del eje Z * //******************************************************************* void Up_R() { analogWrite(LPWM_Z_DOWN, 252 * 0.6); analogWrite(RPWM_Z_DOWN, 0); } void Up_L() { analogWrite(LPWM_Z_UP, 255 * 0.6); analogWrite(RPWM_Z_UP, 0); } void Down_R() { analogWrite(LPWM_Z_DOWN, 0); analogWrite(RPWM_Z_DOWN, 243 * 0.6); } void Down_L() { analogWrite(LPWM_Z_UP, 0); analogWrite(RPWM_Z_UP, 255 * 0.6); } void TwoUp(void) { int subiendo_L = 0; int subiendo_R = 0; fc(); if (FC_Z_R_U) { analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); } else { analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); subiendo_R = 1; } if (FC_Z_L_U) { analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); } else { analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); subiendo_L = 1; } subiendo = subiendo_L && subiendo_R; if (subiendo) { ISRCounter_L = 0; ISRCounter_R = 0; Stop_L(); Stop_R(); Z_done = 1; } } void TwoDown(void) { int subiendo_L = 1; int subiendo_R = 1; fc(); if (Pasos_pisoR != 0) { if (FC_Z_L_D && ISRCounter_L < Pasos_pisoL) { analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 240); } else { analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); subiendo_L = 0; } if (FC_Z_R_D && ISRCounter_R < Pasos_pisoR) { analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 250); } else { analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); subiendo_R = 0; } } subiendo = subiendo_L || subiendo_R; if (ISRCounter_R >= Pasos_pisoR && ISRCounter_L >= Pasos_pisoL) { subiendo = 0; Z_done = 1; } if (!subiendo) { ISRCounter_L = 0; ISRCounter_R = 0; Stop_L(); Stop_R(); Z_done = 1; } } /* Detiene el movimiento del motor izquierdo */ void Stop_L(void) { analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); } /* Detiene el movimiento del motor derecho */ void Stop_R(void) { analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); } //******************************************************************* //* Funciones de movimiento del Motor paso a paso * //******************************************************************* void Left_Y() { myStepper.step(-990); myStepper.step(0); Y_done = 1; digitalWrite(42, LOW); digitalWrite(44, LOW); digitalWrite(46, LOW); digitalWrite(48, LOW); } void Right_Y() { myStepper.step(990); myStepper.step(0); Y_done = 1; digitalWrite(42, LOW); digitalWrite(44, LOW); digitalWrite(46, LOW); digitalWrite(48, LOW); } //******************************************************************* //* Funciones de movimiento del eje X * //* 0 Posicion Home * //******************************************************************* void X_Axis(bool Posx) { FC_X_L = digitalRead(FCXL); FC_X_R = digitalRead(FCXR); if (Posx) { if (FC_X_R) { FC_X_R = digitalRead(FCXR); digitalWrite(R_X, HIGH); digitalWrite(L_X, LOW); } else { digitalWrite(R_X, LOW); digitalWrite(L_X, LOW); X_done = 1; } } if (!Posx) { if (FC_X_L) { FC_X_L = digitalRead(FCXL); digitalWrite(R_X, LOW); digitalWrite(L_X, HIGH); } else { digitalWrite(R_X, LOW); digitalWrite(L_X, LOW); X_done = 1; } } } //******************************************************************* //* Rutina Set Up * //* Eje Z parte superior * //* Conteo pasos Stepper * //******************************************************************* void Rutinas_almacenar() { X_done = 0; Y_done = 0; Z_done = 0; switch (estado) { case 1: //Yendo a celda 1 // c1,p1,x1,R Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 1; while (!Z_done || !X_done) { if (!Z_done) { //Bajando Z TwoDown(); } if (!X_done) {//Moviendo X X_Axis(Pos_X); } } while (!Y_done) {//Moviendo Y Right_Y();// define a que lado sale primero } Y_done = 0; while (!Y_done) {//Moviendo Y2 Left_Y(); } //Subiendo Z //Moviendo X Home(); estado = 0; break; case 2://Yendo a celda 2 // c2,p1,x1,L Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 1; //Bajando Z //Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } //volver a home Home(); estado = 0; break; case 3://Yendo a celda 3 // c3,p1,x0,L Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 0; //Bajando Z //Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } //Moviendo Y2 while (!Y_done) { Right_Y(); } //volver a home X_done = 0; Z_done = 0; Home(); estado = 0; break; ///////////////////////////// Piso 2 ALMACENAR....... case 4://Yendo a celda 4 // c4,p2,x1,R Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //moviendo x while (!X_done) { delay(10); if (!X_done) { X_Axis(Pos_X); } } //moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); //moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } X_done = 0; Z_done = 0; //moviendo x while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //moviendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; // CELDA 5 ALMACENAR case 5://Yendo a celda 5 // c5,p2,x1,L Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 1; delay(1000); //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 6://Yendo a celda 6 // c6,p2,x0,R Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 0; delay(1000); //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 7://Yendo a celda 7 // c5,p2,x0,L Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; ////////////////////////////////////////////// case 8://Yendo a celda 8 // c8,p3,x1,R Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); Z_done = 0; while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 9://Yendo a celda 9 // c9,p3,x1,L Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); Z_done = 0; while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 10://Yendo a celda 10 // c10,p3,x0,R Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); Z_done = 0; while (!Z_done) { if (!Z_done) { TwoDown(); } } delay(200); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 11://Yendo a celda 11 // c11,p3,x0,L Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 0; //Bajando Z //Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); delay(500); Down_L(); Down_R(); delay(2000); Stop_R(); Stop_L(); delay(200); Z_done = 0; while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; default://Celda no programada estado = 0; } } void Home() { X_done = 0; Z_done = 0; while (!X_done) { delay(10);// if (!X_done) { X_Axis(0); } } while (!Z_done) { if (!Z_done) { TwoUp(); } } X_done = 0; Z_done = 0; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// //Inicialización de las variables del nodo de ROS / ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// float x; void rutina_retirar(); ros::NodeHandle nh; std_msgs::Int16 test; ros::Publisher p("response", &test); void rutina_retirar() { X_done = 0; Y_done = 0; Z_done = 0; switch (estado) { case 1://Yendo a celda 1 // c1,p1,x1,R Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 1; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); //mover Y2 Y_done = 0; while (!Y_done) { Left_Y(); } //volver a home Home(); estado = 0; break; case 2://Yendo a celda 2 // c2,p1,x1,L Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 1; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } //Moviendo Y2 delay(500); Y_done = 0; while (!Y_done) { Right_Y(); } //volver home Home(); estado = 0; break; case 3://Yendo a celda 3 // c3,p1,x0,L Pasos_pisoL=0; Pasos_pisoR=0; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } //volver a home X_done = 0; Z_done = 0; Home(); estado = 0; break; case 4: //Yendo a celda 4 // c4,p2,x1,R Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 5://Yendo a celda 5 // c5,p2,x1,L Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } X_done = 0; Z_done = 0; //Moviendo X while (!X_done) { delay(10); if (!X_done) { X_Axis(0); } } //Subiendo Z while (!Z_done) { if (!Z_done) { TwoUp(); } } estado = 0; break; case 6://Yendo a celda 6 // c6,p2,x0,R Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } //regresar home X_done = 0; Z_done = 0; Home(); estado = 0; break; case 7://Yendo a celda 7 // c5,p2,x0,L Pasos_pisoL=DisPiso2*consL; Pasos_pisoR=DisPiso2*consR; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } //regreso home X_done = 0; Z_done = 0; Home(); estado = 0; break; ////////////////////////////////////////////// case 8://Yendo a celda 8 // c8,p3,x1,R Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //Moviendo X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } //regresar a home X_done = 0; Z_done = 0; Home(); estado = 0; break; case 9://Yendo a celda 9 // c9,p3,x1,L Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 1; //Bajando Z while (!Z_done) { if (!Z_done) { TwoDown(); } } //mover X while (!X_done) { if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } //volver home X_done = 0; Z_done = 0; Home(); estado = 0; break; case 10://Yendo a celda 10 // c10,p3,x0,R Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Right_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 255); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 255); analogWrite(LPWM_Z_DOWN, 0); delay(2000); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Left_Y(); } //volver Home X_done = 0; Z_done = 0; Home(); estado = 0; break; case 11://Yendo a celda 11 // c11,p3,x0,L ////////////Aquí se varía la altura a la cual empieza el despliegue de la caja /////////////////////////////// Pasos_pisoL=DisPiso1*consL; Pasos_pisoR=DisPiso1*consR; //////Entre menor sea este valor, mayor será la altura a la cual empieza/////////////////// Pos_X = 0; //Bajando Z Moviendo X while (!Z_done || !X_done) { if (!Z_done) { TwoDown(); } if (!X_done) { X_Axis(Pos_X); } } //Moviendo Y while (!Y_done) { Left_Y();// define a que lado sale primero } delay(500); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 255); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 255); delay(2250); analogWrite(RPWM_Z_UP, 0); analogWrite(RPWM_Z_DOWN, 0); analogWrite(LPWM_Z_UP, 0); analogWrite(LPWM_Z_DOWN, 0); //Moviendo Y2 Y_done = 0; while (!Y_done) { Right_Y(); } //volver a home X_done = 0; Z_done = 0; Home(); estado = 0; break; default://celda no programada estado = 0; } ///////Final de la rutina de retirar ///////////////// }; void toSDV() { /////Se mueve el motor de la tijera ////////////////// digitalWrite(DIR, HIGH); for (int i = 0; i < 200; i++) //Forward 1600 steps { digitalWrite(PUL, HIGH); delayMicroseconds(1000); digitalWrite(PUL, LOW); delayMicroseconds(1000); } delay(1000); ///////////Despliegue y retracción de la compúerta//////////// digitalWrite(DIR1, LOW); for (int i = 0; i < 800; i++) //Forward 1600 steps { digitalWrite(PUL1, HIGH); delayMicroseconds(15000); //Este valor de periodo NO SE CAMBIA digitalWrite(PUL1, LOW); delayMicroseconds(15000); } delay(1000); //Hacia abajo/ digitalWrite(DIR1, HIGH); for (int i = 0; i < 800; i++) //Backward 1600 steps { digitalWrite(PUL1, HIGH); delayMicroseconds(150000); digitalWrite(PUL1, LOW); delayMicroseconds(150000); } delay(1000); ////////////////////////////////////////////////////////////// digitalWrite(DIR, LOW); for (int i = 0; i < 200; i++) //Backward 1600 steps { digitalWrite(PUL, HIGH); delayMicroseconds(8000); digitalWrite(PUL, LOW); delayMicroseconds(8000); } delay(1000); /////////////////////////////////////////////////////////////////////// } void ROS_CALLBACK(std_msgs::Int16 msg) { estado = msg.data; X_done = 0; Y_done = 0; Z_done = 0; rutina_retirar(); estado = 11; X_done = 0; Y_done = 0; Z_done = 0; rutina_retirar(); toSDV(); test.data = x; p.publish( &test); } ros::Subscriber<std_msgs::Int16> s("chatter", ROS_CALLBACK); void setup() { //*****************Variables de la tijera*********** pinMode (PUL, OUTPUT); pinMode (DIR, OUTPUT); pinMode (EN, OUTPUT); digitalWrite(EN, HIGH); //***************Variables de la compuerta********** pinMode (PUL1, OUTPUT); pinMode (DIR1, OUTPUT); pinMode (EN1, OUTPUT); digitalWrite(EN1, LOW); //////////////////////////////////////////////////// // ////Serial.begin(9600); //delay(2000); //******************************************************************* //* Inicializacion ////lcd * //******************************************************************* // Indicar a la libreria que tenemos conectada una pantalla de 16x2 ////lcd.begin(16, 2); // Mover el cursor a la primera posición de la pantalla (0, 0) ////lcd.home (); // Esperar un segundo delay(1000); //******************************************************************* //* Inicializacion Motores eje Z * //* Finales de carrera normalmente en 1 * //******************************************************************* pinMode(Encoder_R, INPUT); pinMode(FCZLU, INPUT_PULLUP); pinMode(FCZRU, INPUT_PULLUP); pinMode(FCZLD, INPUT_PULLUP); pinMode(FCZRD, INPUT_PULLUP); attachInterrupt(digitalPinToInterrupt(Encoder_R), interruptCount_R, CHANGE ); attachInterrupt(digitalPinToInterrupt(Encoder_L), interruptCount_L, CHANGE ); //******************************************************************* //* Inicializacion Motor paso a paso * //* Finales de carrera normalmente en 1 * //******************************************************************* myStepper.setSpeed(60); //pinMode(FCYR, INPUT_PULLUP); // pinMode(FCYA, INPUT_PULLUP); //******************************************************************* //* Inicializacion Motor Eje X * //******************************************************************* pinMode(FCXR, INPUT_PULLUP); pinMode(FCXL, INPUT_PULLUP); ////lcd.home (); ////lcd.clear (); // ////lcd.print("Inicio"); estado = 0; ////lcd.home (); ////lcd.clear (); ////lcd.print("Home"); //Right_Y(); Home(); almacenar = 0; pinMode(13, OUTPUT); nh.initNode(); nh.advertise(p); nh.subscribe(s); } void loop() { nh.spinOnce(); }
[ "wdgarzonc@unal.edu.co" ]
wdgarzonc@unal.edu.co
de8d7164d0db0ef8bc33ee65f0df5a1b103e92a0
18832689b5f950d1b4a9b84c731aa0bacac9fc3b
/HomeExercise8.4/HomeExercise8.4.cpp
cce7ca4457e96040c54ee4852c7f764002f234c2
[]
no_license
pilo309/HomeExercise8
dafe33f0f4b6742c8716f4498b8df3ef49d59271
bdef0092d97f314eeb2f6d0d23aaaef1b23a6493
refs/heads/master
2023-01-21T13:44:01.538854
2020-11-22T19:41:52
2020-11-22T19:41:52
315,118,908
0
0
null
null
null
null
UTF-8
C++
false
false
643
cpp
#include <iostream> #include "Dog.h" #include <string.h> #include <stdio.h> int main() { using namespace std; struct Dog Labrador; Labrador.age_ = 10; Labrador.weight_ = 15; strcpy_s(Labrador.breed_,"Labrador"); cout << "Dog breed is " << Labrador.breed_ << endl; cout << "Dog's age is " << Labrador.age_ << endl; cout << "Dogs weight is " << Labrador.weight_ << endl << endl; struct Dog Bulldog = {'B',10,10}; //strcpy_s(Bulldog.breed_, "Bulldog"); cout << "Dog breed is " << Bulldog.breed_ << endl; cout << "Dog's age is " << Bulldog.age_ << endl; cout << "Dogs weight is " << Bulldog.weight_ << endl << endl; return 0; }
[ "au645645@uni.au.dk" ]
au645645@uni.au.dk
2da26019a4263d26d8ddf22ca1e6ac4ea4749e05
6035de2a8a7880134307ebff71eeec44d7a6d556
/src/missile.cpp
651786e076c53782f6306c8929379b0c611b59f7
[]
no_license
4jeR/sfml-spaceships
330c9a1a1bf4bedc72844dc1c307c91133395105
9f63e2d78c660990260e5254b93d4fb7964f77cc
refs/heads/master
2020-07-29T23:32:04.042110
2019-10-09T18:57:37
2019-10-09T18:57:37
210,002,046
1
0
null
null
null
null
UTF-8
C++
false
false
1,241
cpp
#include "missile.h" Missile::Missile(float x, float y, sf::RenderWindow* winptr, float radius, int foreign) :Object(x, y, winptr, radius, foreign) { _shape = new sf::RectangleShape(sf::Vector2f(2.0f, 8.0f)); _shape -> setPosition(_x, _y ); _shape -> setOutlineColor(sf::Color::Red); _shape -> setOutlineThickness(1.0f); _shape -> setFillColor(sf::Color::Transparent); _currentSpeed = 1500.0f; _name = "missile"; } Missile* Missile::InstantiateMissile(float x, float y, sf::RenderWindow* winptr, float radius, int foreign){ return new Missile(x, y, winptr, radius, foreign); } Missile::~Missile(){ delete _shape; } void Missile::UpdateAll() noexcept { UpdateTransforms(); DisappearedFromWindow(); } sf::Shape* Missile::GetShape()noexcept{ return _shape; } void Missile::UpdateTransforms()noexcept { Rotate(); float byX = 0.001f * _currentSpeed * static_cast<float>(std::sin(static_cast<double>(_shape->getRotation()) * M_PI / 180.0)); float byY = -0.001f * _currentSpeed * static_cast<float>(std::cos(static_cast<double>(_shape->getRotation()) * M_PI / 180.0)); _shape -> move(byX, byY ); _x += byX; _y += byY; } void Missile::Rotate()noexcept{ }
[ "bdlugosz98@gmail.com" ]
bdlugosz98@gmail.com
2e1ef7a011ecc142b0961b428ae7d463af8f6f43
96e7347db30d3ae35f2df119a18472cf5b251fa2
/Classes/Native/mscorlib_System_Reflection_MethodBase591550820.h
4aac0a6dc3b36fb529b42ece9762e282fb27faa7
[]
no_license
Henry0285/abcwriting
04b111887489d9255fd2697a4ea8d9971dc17d89
ed2e4da72fbbad85d9e0e9d912e73ddd33bc91ec
refs/heads/master
2021-01-20T14:16:48.025648
2017-05-08T06:00:06
2017-05-08T06:00:06
90,583,162
0
0
null
null
null
null
UTF-8
C++
false
false
538
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> #include "mscorlib_System_Reflection_MemberInfo1952312350.h" #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodBase struct MethodBase_t591550820 : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "phamnguyentruc@yahoo.com" ]
phamnguyentruc@yahoo.com
5f77580adc67ed768a9e46395ad0d03e8fe85bb4
e24a366a7ac5dfb5975a468046c8626a9d56fa6d
/Obfuscator/Source/tools/clang/lib/Driver/ToolChains/NetBSD.h
ae0865fd6573dca63dd49e67bd9cf602ac4cf3c5
[ "NCSA", "MIT" ]
permissive
fengjixuchui/iOS-Reverse
01e17539bdbff7f2a783821010d3f36b5afba910
682a5204407131c29588dd22236babd1f8b2889d
refs/heads/master
2021-06-26T17:25:41.993771
2021-02-11T10:33:32
2021-02-11T10:33:32
210,527,924
0
0
MIT
2021-02-11T10:33:33
2019-09-24T06:26:57
null
UTF-8
C++
false
false
3,035
h
//===--- NetBSD.h - NetBSD ToolChain Implementations ------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_NETBSD_H #define LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_NETBSD_H #include "Gnu.h" #include "clang/Driver/Tool.h" #include "clang/Driver/ToolChain.h" namespace clang { namespace driver { namespace tools { /// netbsd -- Directly call GNU Binutils assembler and linker namespace netbsd { class LLVM_LIBRARY_VISIBILITY Assembler : public GnuTool { public: Assembler(const ToolChain &TC) : GnuTool("netbsd::Assembler", "assembler", TC) {} bool hasIntegratedCPP() const override { return false; } void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override; }; class LLVM_LIBRARY_VISIBILITY Linker : public GnuTool { public: Linker(const ToolChain &TC) : GnuTool("netbsd::Linker", "linker", TC) {} bool hasIntegratedCPP() const override { return false; } bool isLinkJob() const override { return true; } void ConstructJob(Compilation &C, const JobAction &JA, const InputInfo &Output, const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs, const char *LinkingOutput) const override; }; } // end namespace netbsd } // end namespace tools namespace toolchains { class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF { public: NetBSD(const Driver &D, const llvm::Triple &Triple, const llvm::opt::ArgList &Args); bool IsMathErrnoDefault() const override { return false; } bool IsObjCNonFragileABIDefault() const override { return true; } CXXStdlibType GetDefaultCXXStdlibType() const override; void addLibCxxIncludePaths( const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override; void addLibStdCxxIncludePaths( const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args) const override; bool IsUnwindTablesDefault(const llvm::opt::ArgList &Args) const override { return true; } llvm::ExceptionHandling GetExceptionModel( const llvm::opt::ArgList &Args) const override; SanitizerMask getSupportedSanitizers() const override; void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs, llvm::opt::ArgStringList &CC1Args, Action::OffloadKind DeviceOffloadKind) const override; protected: Tool *buildAssembler() const override; Tool *buildLinker() const override; }; } // end namespace toolchains } // end namespace driver } // end namespace clang #endif // LLVM_CLANG_LIB_DRIVER_TOOLCHAINS_NETBSD_H
[ "374619540@qq.com" ]
374619540@qq.com
132685e5408057ac3e1912009b46a075450ca933
a48134dac978d181b974b3d19159ddc853ddfc61
/include/tchecker/variables/intvars.hh
9cd8485dd9b66dcbf6a07b16fbb15a9a3eebaefe
[ "MIT" ]
permissive
schlepil/tchecker
f65eccfcfb72f9d55478730731dda8f559bd143a
3ab68fe150d16e3db77db8380c47e02026c7815f
refs/heads/master
2022-05-02T03:13:55.872205
2022-04-14T10:07:50
2022-04-14T10:07:50
209,299,459
0
0
MIT
2019-09-19T15:04:37
2019-09-18T12:10:42
C++
UTF-8
C++
false
false
8,960
hh
/* * This file is a part of the TChecker project. * * See files AUTHORS and LICENSE for copyright details. * */ #ifndef TCHECKER_INTVARS_HH #define TCHECKER_INTVARS_HH #include <iostream> #include <string> #include "tchecker/basictypes.hh" #include "tchecker/utils/allocation_size.hh" #include "tchecker/utils/array.hh" #include "tchecker/utils/index.hh" #include "tchecker/variables/variables.hh" /*! \file intvars.hh \brief Integer variables */ namespace tchecker { // integer variables /*! \class intvar_info_t \brief Informations on integer variable */ class intvar_info_t : public tchecker::size_info_t { public: /*! \brief Constructor \param size : array size \param min : minimal value \param max : maximal value \param initial_value : initial value \pre size > 0 and min <= init <= max \throw std::invalid_argument : if precondition is violated */ intvar_info_t(unsigned int size, tchecker::integer_t min, tchecker::integer_t max, tchecker::integer_t initial_value); /*! \brief Copy constructor */ intvar_info_t(tchecker::intvar_info_t const &) = default; /*! \brief Move constructor */ intvar_info_t(tchecker::intvar_info_t &&) = default; /*! \brief Destructor */ ~intvar_info_t() = default; /*! \brief Assignment operator */ tchecker::intvar_info_t & operator=(tchecker::intvar_info_t const &) = default; /*! \brief Move assignment operator */ tchecker::intvar_info_t & operator=(tchecker::intvar_info_t &&) = default; /*! \brief Accessor \return Minimal value */ inline constexpr tchecker::integer_t min() const { return _min; } /*! \brief Accessor \return Maximal value */ inline constexpr tchecker::integer_t max() const { return _max; } /*! \brief Accessor \return Initial value */ inline constexpr tchecker::integer_t initial_value() const { return _initial_value; } private: tchecker::integer_t _min; /*!< Minimal value */ tchecker::integer_t _max; /*!< Maximal value */ tchecker::integer_t _initial_value; /*!< Initial value */ }; /*! \brief Index of bounded integer variables */ using intvar_index_t = tchecker::index_t<tchecker::intvar_id_t, std::string>; /*! \class integer_variables_t \brief Declaration of integer variables */ class integer_variables_t : public tchecker::array_variables_t<tchecker::intvar_id_t, tchecker::intvar_info_t, tchecker::intvar_index_t> { public: using tchecker::array_variables_t<tchecker::intvar_id_t, tchecker::intvar_info_t, tchecker::intvar_index_t>::array_variables_t; /*! \brief Declare a bounded integer variable \param name : variable name \param size : variabel size (array) \param min : minimal value \param max : maximal value \param initial : initial value \pre 'name' is not a declared variable, size > 0, and min <= initial <= max \post A bounded integer variable with base name 'name', with size 'size', with minimal value 'min', wirh maximal value 'max', and with initial value 'initial' has been declared \throw std::invalid_argument : if the precondition is violated */ tchecker::intvar_id_t declare(std::string const & name, tchecker::intvar_id_t size, tchecker::integer_t min, tchecker::integer_t max, tchecker::integer_t initial); protected: using tchecker::array_variables_t<tchecker::intvar_id_t, tchecker::intvar_info_t, tchecker::intvar_index_t>::declare; }; /*! \brief Type of flat bounded integer variables */ using flat_integer_variables_t = tchecker::flat_variables_t<tchecker::intvar_id_t, tchecker::intvar_info_t, tchecker::intvar_index_t>; // Integer variables valuation /*! \brief Type of integer variables array */ using intvars_array_t = tchecker::make_array_t<tchecker::integer_t, sizeof(tchecker::integer_t), tchecker::array_capacity_t<unsigned short>>; /*! \class intvars_valuation_t \brief Valuation of integer variables */ class intvars_valuation_t : public tchecker::intvars_array_t { public: /*! \brief Assignment operator \param v : intvars valuation \post this is a copy of v \return this after assignment */ tchecker::intvars_valuation_t & operator=(tchecker::intvars_valuation_t const & v) = default; /*! \brief Move assignment operator \param v : intvars valuation \post v has been moved to this \return this after assignment */ tchecker::intvars_valuation_t & operator=(tchecker::intvars_valuation_t && v) = default; /*! \brief Accessor \return Size \note Size coincide with capacity for intvars valuations */ inline constexpr typename tchecker::intvars_valuation_t::capacity_t size() const { return capacity(); } /*! \brief Construction \param args : arguments to a constructor of intvars_valuation_t \pre ptr points to an allocated zone of capacity at least allocation_size_t<intvars_valuation_t>::alloc_size(args) \post intvars_valuation_t(args) has been called on ptr */ template <class... ARGS> static inline void construct(void * ptr, ARGS &&... args) { new (ptr) intvars_valuation_t(args...); } /*! \brief Destruction \param v : intvars valuation \post ~intvars_valuation_t() has been called on v */ static inline void destruct(tchecker::intvars_valuation_t * v) { assert(v != nullptr); v->~intvars_valuation_t(); } protected: /*! \brief Constructor \param size : intvars valuation size \param value : initial value */ intvars_valuation_t(unsigned short size, tchecker::integer_t value = 0) : intvars_array_t(std::make_tuple(size), std::make_tuple(value)) { } /*! \brief Copy constructor \param v : intvars valuation \post this is a copy of v */ intvars_valuation_t(tchecker::intvars_valuation_t const & v) = default; /*! \brief Move constructor \param v : intvars valuation \post v has been moved to this */ intvars_valuation_t(tchecker::intvars_valuation_t && v) = default; /*! \brief Destructor */ ~intvars_valuation_t() = default; }; /*! \class allocation_size_t \brief Specialization of tchecker::allocation_size_t for class tchecker::intvars_valuation_t */ template <> class allocation_size_t<tchecker::intvars_valuation_t> { public: /*! \brief Allocation size \param args : arguments for a constructor of class tchecker::invars_valuation_t \return allocation size for objects of class tchecker::intvars_valuation_t */ template <class... ARGS> static constexpr std::size_t alloc_size(ARGS &&... args) { return tchecker::allocation_size_t<tchecker::intvars_array_t>::alloc_size(args...); } }; /*! \brief Allocate and construct an intvars valuation \param size : intvars valuation size \param args : arguments to a constructor of tchecker::intvars_valuation_t \return an instance of intvars_valuation_t of size values constructed from args */ template <class... ARGS> tchecker::intvars_valuation_t * intvars_valuation_allocate_and_construct(unsigned short size, ARGS &&... args) { char * ptr = new char[tchecker::allocation_size_t<tchecker::intvars_valuation_t>::alloc_size(size)]; tchecker::intvars_valuation_t::construct(ptr, args...); return reinterpret_cast<tchecker::intvars_valuation_t *>(ptr); } /*! \brief Destruct and deallocate an intvars valuation \param v : intvars valuation \pre v has been returned by intvars_valuation_allocate_and_construct \post v has been destructed and deallocated */ void intvars_valuation_destruct_and_deallocate(tchecker::intvars_valuation_t * v); /*! \brief Output integer variables valuation \param os : output stream \param intvars_val : integer variables valuation \param index : an index of integer variables \post intvars_val has been output to os with variable names from index \return os after output */ std::ostream & output(std::ostream & os, tchecker::intvars_valuation_t const & intvars_val, tchecker::intvar_index_t const & index); /*! \brief Write integer variables valuation to string \param intvars_val : integer variables valuation \param index : an index of integer variables \return An std::string representation of intvars_val using variable names from index */ std::string to_string(tchecker::intvars_valuation_t const & intvars_val, tchecker::intvar_index_t const & index); /*! \brief Lexical ordering on integer valuations \param intvars_val1 : first integer variable valuation \param intvars_val2 : second integer variable valuation \return 0 if intvars_val1 and intvars_val2 are equal, a negative value if intvars_val1 is smaller than intvars_val2 w.r.t. lexical ordering, and a positive value otherwise. */ int lexical_cmp(tchecker::intvars_valuation_t const & intvars_val1, tchecker::intvars_valuation_t const & intvars_val2); } // end of namespace tchecker #endif // TCHECKER_INTVARS_HH
[ "fh@labri.fr" ]
fh@labri.fr
bf482d77713c4c375f2d737d33a7d1776ba533c3
bb6ebff7a7f6140903d37905c350954ff6599091
/third_party/WebKit/Source/core/xml/XPathParser.h
0162f0bc104f26b0daa285d789376ffd7623fdf3
[ "BSD-3-Clause", "LGPL-2.0-only", "BSD-2-Clause", "LGPL-2.1-only", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
permissive
PDi-Communication-Systems-Inc/lollipop_external_chromium_org
faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f
ccadf4e63dd34be157281f53fe213d09a8c66d2c
refs/heads/master
2022-12-23T18:07:04.568931
2016-04-11T16:03:36
2016-04-11T16:03:36
53,677,925
0
1
BSD-3-Clause
2022-12-09T23:46:46
2016-03-11T15:49:07
C++
UTF-8
C++
false
false
4,250
h
/* * Copyright 2005 Maksim Orlovich <maksim@kde.org> * Copyright (C) 2006 Apple Computer, Inc. * * 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 AUTHOR ``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 AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef XPathParser_h #define XPathParser_h #include "core/xml/XPathPredicate.h" #include "core/xml/XPathStep.h" namespace WebCore { class ExceptionState; class XPathNSResolver; namespace XPath { class Expression; class LocationPath; class ParseNode; class Parser; class Predicate; struct Token { int type; String str; Step::Axis axis; NumericOp::Opcode numop; EqTestOp::Opcode eqop; Token(int t) : type(t) { } Token(int t, const String& v): type(t), str(v) { } Token(int t, Step::Axis v): type(t), axis(v) { } Token(int t, NumericOp::Opcode v): type(t), numop(v) { } Token(int t, EqTestOp::Opcode v): type(t), eqop(v) { } }; class Parser { WTF_MAKE_NONCOPYABLE(Parser); STACK_ALLOCATED(); public: Parser(); ~Parser(); XPathNSResolver* resolver() const { return m_resolver.get(); } bool expandQName(const String& qName, AtomicString& localName, AtomicString& namespaceURI); PassOwnPtrWillBeRawPtr<Expression> parseStatement(const String& statement, PassRefPtrWillBeRawPtr<XPathNSResolver>, ExceptionState&); static Parser* current() { return currentParser; } int lex(void* yylval); RawPtrWillBeMember<Expression> m_topExpr; bool m_gotNamespaceError; void registerParseNode(ParseNode*); void unregisterParseNode(ParseNode*); void registerPredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >*); void deletePredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >*); void registerExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*); void deleteExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*); void registerString(String*); void deleteString(String*); void registerNodeTest(Step::NodeTest*); void deleteNodeTest(Step::NodeTest*); private: bool isBinaryOperatorContext() const; void skipWS(); Token makeTokenAndAdvance(int type, int advance = 1); Token makeTokenAndAdvance(int type, NumericOp::Opcode, int advance = 1); Token makeTokenAndAdvance(int type, EqTestOp::Opcode, int advance = 1); char peekAheadHelper(); char peekCurHelper(); Token lexString(); Token lexNumber(); bool lexNCName(String&); bool lexQName(String&); Token nextToken(); Token nextTokenInternal(); void reset(const String& data); static Parser* currentParser; unsigned m_nextPos; String m_data; int m_lastTokenType; RefPtrWillBeMember<XPathNSResolver> m_resolver; #if !ENABLE(OILPAN) HashSet<ParseNode*> m_parseNodes; HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors; HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors; HashSet<OwnPtr<Step::NodeTest> > m_nodeTests; #endif HashSet<OwnPtr<String> > m_strings; }; } // namespace XPath } // namespace WebCore int xpathyyparse(WebCore::XPath::Parser*); #endif
[ "mrobbeloth@pdiarm.com" ]
mrobbeloth@pdiarm.com
0792f1ef7a48ff1a3cd0893dcc664198782c5a58
79d31b4ae847b40a9c27d9895a8de3b71d1a09b1
/FoVProto/Source/FoVProto/Types.cpp
b0a26d473aafd3a3b12d4e97138c1ebbbb1a96d5
[]
no_license
Milowan/FoVProto
3e215ff76e7a1a8ddc8be62479c41f111ad1724f
fd29b086b4dfe5848070b0bd15c56d22e1edbf8c
refs/heads/master
2023-01-03T20:31:43.050217
2020-11-01T00:17:05
2020-11-01T00:17:05
276,907,986
1
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "Types.h"
[ "44212243+Milowan@users.noreply.github.com" ]
44212243+Milowan@users.noreply.github.com
8f25fdf313d76d844b694627979ca60d3b4f66b3
3860db035ca76ad830fcba7ce524579179ea5e8a
/2034.cpp
562d8e84d3e8b1a24352d6f8158fac7fe093f04d
[]
no_license
andongfan/oicode
f9cdec6259a4091cdde4e0f476f9200474ead8b6
4af2a53aa8a7e423ed220258a6a7f1606358250b
refs/heads/master
2021-09-26T19:37:08.248281
2018-11-01T15:51:22
2018-11-01T15:51:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
761
cpp
#include<iostream> #include<iomanip> #include<cstring> #include<cmath> #include<cstdio> #include<ctime> #include<cstdlib> using namespace std; double sx[20005]={0},sy[20005]={0},n,sumx=0,sumy=0; double ansx,ansy; int main() { srand(233333333); cin>>n; for(int i=1;i<=n;i++) { scanf("%lf%lf",&sx[i],&sy[i]); sumx+=sx[i],sumy+=sy[i]; } ansx=(double)sumx*1.0/n; ansy=(double)sumy*1.0/n; int ti=pow(n,3.0/4),pos; for(int i=1;i<=ti;i++) { pos=rand()%int(n)+1; for(int j=1;j<=n+1;j++) { if(sx[pos]+sx[j]==ansx*2&&sy[pos]+sy[j]==ansy*2) break; if(j==n+1) {cout<<"This is a dangerous situation.";return 0;} } } cout<<"V.I.P. should stay at ("<<fixed<<setprecision(1)<<ansx<<','<<ansy<<")."; return 0; }
[ "anthonyfan2018@163.com" ]
anthonyfan2018@163.com
2c63204773afb3691f0dc196103142f7e117b914
03f037d0f6371856ede958f0c9d02771d5402baf
/graphics/VTK-7.0.0/Views/Infovis/vtkIcicleView.cxx
436d60469f75b497109c1dec5b65ee6375e7cdc5
[ "BSD-3-Clause" ]
permissive
hlzz/dotfiles
b22dc2dc5a9086353ed6dfeee884f7f0a9ddb1eb
0591f71230c919c827ba569099eb3b75897e163e
refs/heads/master
2021-01-10T10:06:31.018179
2016-09-27T08:13:18
2016-09-27T08:13:18
55,040,954
4
0
null
null
null
null
UTF-8
C++
false
false
4,668
cxx
/*========================================================================= Program: Visualization Toolkit Module: vtkIcicleView.cxx Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen All rights reserved. See Copyright.txt or http://www.kitware.com/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 notice for more information. =========================================================================*/ /*------------------------------------------------------------------------- Copyright 2008 Sandia Corporation. Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. -------------------------------------------------------------------------*/ #include "vtkIcicleView.h" #include "vtkObjectFactory.h" #include "vtkSmartPointer.h" #include "vtkStackedTreeLayoutStrategy.h" #include "vtkTreeMapToPolyData.h" vtkStandardNewMacro(vtkIcicleView); //---------------------------------------------------------------------------- vtkIcicleView::vtkIcicleView() { vtkSmartPointer<vtkStackedTreeLayoutStrategy> strategy = vtkSmartPointer<vtkStackedTreeLayoutStrategy>::New(); double shrink = this->GetShrinkPercentage(); strategy->SetUseRectangularCoordinates(true); strategy->SetRootStartAngle(0.0); strategy->SetRootEndAngle(15.0); strategy->SetReverse(true); strategy->SetShrinkPercentage(shrink); this->SetLayoutStrategy(strategy); vtkSmartPointer<vtkTreeMapToPolyData> poly = vtkSmartPointer<vtkTreeMapToPolyData>::New(); this->SetAreaToPolyData(poly); this->SetUseRectangularCoordinates(true); } //---------------------------------------------------------------------------- vtkIcicleView::~vtkIcicleView() { } //---------------------------------------------------------------------------- void vtkIcicleView::SetTopToBottom(bool reversed) { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { st->SetReverse(reversed); } } //---------------------------------------------------------------------------- bool vtkIcicleView::GetTopToBottom() { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { return st->GetReverse(); } return false; } //---------------------------------------------------------------------------- void vtkIcicleView::SetRootWidth(double width) { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { st->SetRootStartAngle(0.0); st->SetRootEndAngle(width); } } //---------------------------------------------------------------------------- double vtkIcicleView::GetRootWidth() { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { return st->GetRootEndAngle(); } return 0.0; } //---------------------------------------------------------------------------- void vtkIcicleView::SetLayerThickness(double thickness) { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { st->SetRingThickness(thickness); } } //---------------------------------------------------------------------------- double vtkIcicleView::GetLayerThickness() { vtkStackedTreeLayoutStrategy* st = vtkStackedTreeLayoutStrategy::SafeDownCast(this->GetLayoutStrategy()); if (st) { return st->GetRingThickness(); } return 0.0; } //---------------------------------------------------------------------------- void vtkIcicleView::SetUseGradientColoring(bool value) { vtkTreeMapToPolyData* tm = vtkTreeMapToPolyData::SafeDownCast(this->GetAreaToPolyData()); if (tm) { tm->SetAddNormals(value); } } //---------------------------------------------------------------------------- bool vtkIcicleView::GetUseGradientColoring() { vtkTreeMapToPolyData* tm = vtkTreeMapToPolyData::SafeDownCast(this->GetAreaToPolyData()); if (tm) { return tm->GetAddNormals(); } return false; } //---------------------------------------------------------------------------- void vtkIcicleView::PrintSelf(ostream& os, vtkIndent indent) { this->Superclass::PrintSelf(os,indent); }
[ "shentianweipku@gmail.com" ]
shentianweipku@gmail.com
fe84cc5147889e226797764b80d315c5185ac3e1
c96ae11059bef7c62a3e7509708c9807e5b7384a
/TriggerEditor/Space/SEditValue.h
004b6dca5c9c272120fb20a7c672bd6a10f625fe
[]
no_license
liuchunlin/BehaviourEditor
40a195fa3455402a585152431219a4411119357a
9ce3217f2bfc5490680e8df414286b95b27382ce
refs/heads/master
2020-12-25T14:13:16.775271
2016-08-25T15:45:49
2016-08-25T15:45:49
65,906,631
0
0
null
null
null
null
UTF-8
C++
false
false
603
h
#pragma once #include "SNode.h" #include "NodeBase.h" namespace Space { class SEditValue: public SNode { DECLARE_BLOCK_ALLOCATE public: SEditValue(); virtual TiXmlElement* ToXMLElement(); virtual bool FromXMLElement( const TiXmlElement* pXMLElement ); virtual bool GetContextView( ContextView& cnxt ); virtual wstring GetReadText() const; virtual ErrorMask CheckError(); virtual bool GetRealParam( wstring& realParam ) const; virtual bool GetLuaCode( wstring& luaCode, int depth ); virtual bool Paramerterable(){ return true; } private: }; }
[ "408354802@qq.com" ]
408354802@qq.com
010348671375dfd2082a6e4c1dd69cafaf8033eb
9d1f6bc7f111e1c5f92a4f800e7db1a4cfbcbbfa
/Test/tetris.ino
0d9f52637e2e3093364cb7778597ef4a2565e9b3
[]
no_license
ryujt/arduino
18c9a42c3016bcadb428b7cf4de63c780ec2b1ce
53ea33239f1a69fecf726a49bc2df692144e0a5a
refs/heads/master
2021-03-12T20:28:27.728020
2016-03-01T20:35:07
2016-03-01T20:35:07
33,404,607
0
2
null
null
null
null
UTF-8
C++
false
false
17,671
ino
/* Author: Jae Yeong Bae UBC ECE jocker.tistory.com Date: Jan.18.2013 File: Tetris Purpose: killing time.. + for fun Circuits+Pins: Led Matrix: 2 74HC575 Shift Registers in order: Green,Blue,Red pins: Latch = 3 Clock = 2 Data = 4 Row Anodes = 5 to 13 (8pins) shared between both matrix buttons (as digital): A4 = left A5 = down A6 = right A7 = up (rotate) Comment: This is my second Arduino Project. Code may be messy and inefficient. References from Arduino Library and datasheets. */ unsigned char latchPin = 3; unsigned char clockPin = 2; unsigned char dataPin = 4; unsigned char rowPin = 5; long delays = 0; short delay_ = 500; long bdelay = 0; short buttondelay = 150; short btdowndelay = 30; short btsidedelay = 80; unsigned char blocktype; unsigned char blockrotation; boolean block[8][18]; //2 extra for rotation boolean pile[8][16]; boolean disp[8][16]; void setup() { int seed = (analogRead(0)+1)* (analogRead(1)+1)* (analogRead(2)+1)* (analogRead(3)+1); randomSeed(seed); random(10,9610806); seed = seed *random(3336,15679912)+analogRead(random(4)) ; randomSeed(seed); random(10,98046); cli();//stop interrupts //set timer0 interrupt at 2kHz TCCR1A = 0;// set entire TCCR0A register to 0 TCCR1B = 0;// same for TCCR0B TCNT1 = 0;//initialize counter value to 0 // set compare match register for 2khz increments OCR1A = 259;// = (16*10^6) / (2000*64) - 1 (must be <256) // turn on CTC mode TCCR1A |= (1 << WGM01); // Set CS11 and CS10 bits for 1024 prescaler TCCR1B |= (1 << CS12) | (1 << CS10); // enable timer compare interrupt TIMSK1 |= (1 << OCIE0A); sei();//allow interrupts pinMode(latchPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(dataPin, OUTPUT); pinMode(A7, INPUT); //up pinMode(A6, INPUT); //right pinMode(A5, INPUT); //left pinMode(A4, INPUT); //down int i; for(i=0;i<8;i++) pinMode(rowPin+i,OUTPUT); newBlock(); updateLED(); Serial.begin(9600); } void loop() { if (delays < millis()) { delays = millis() + delay_; movedown(); } //buttun actions int button = readBut(); if (button == 1) //up=rotate rotate(); if (button == 2) //right=moveright moveright(); if (button == 3) //left=moveleft moveleft(); if (button == 4) //down=movedown movedown(); Serial.print(analogRead(A4)); Serial.print(analogRead(A5)); Serial.print(analogRead(A6)); Serial.println(analogRead(A7)); } boolean moveleft() { if (space_left()) { int i; int j; for (i=0;i<7;i++) { for (j=0;j<16;j++) { block[i][j]=block[i+1][j]; } } for (j=0;j<16;j++) { block[7][j]=0; } updateLED(); return 1; } return 0; } boolean moveright() { if (space_right()) { int i; int j; for (i=7;i>0;i--) { for (j=0;j<16;j++) { block[i][j]=block[i-1][j]; } } for (j=0;j<16;j++) { block[0][j]=0; } updateLED(); return 1; } return 0; } int readBut() { if (bdelay > millis()) { return 0; } if (analogRead(A4) > 500) { //left bdelay = millis() + btsidedelay; return 3; } if (analogRead(A5) > 500) { //down bdelay = millis() + btdowndelay; return 4; } if (analogRead(A6) > 500) { //right bdelay = millis() + btsidedelay; return 2; } if (analogRead(A7) > 500) { //up bdelay = millis() + buttondelay; return 1; } return 0; } void updateLED() { int i; int j; for (i=0;i<8;i++) { for (j=0;j<16;j++) { disp[i][j] = block[i][j] | pile[i][j]; } } } void rotate() { //skip for square block(3) if (blocktype == 3) return; int xi; int yi; int i; int j; //detect left for (i=7;i>=0;i--) { for (j=0;j<16;j++) { if (block[i][j]) { xi = i; } } } //detect up for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { yi = i; } } } if (blocktype == 0) { if (blockrotation == 0) { if (!space_left()) { if (space_right3()) { if (!moveright()) return; xi++; } else return; } else if (!space_right()) { if (space_left3()) { if (!moveleft()) return; if (!moveleft()) return; xi--; xi--; } else return; } else if (!space_right2()) { if (space_left2()) { if (!moveleft()) return; xi--; } else return; } block[xi][yi]=0; block[xi][yi+2]=0; block[xi][yi+3]=0; block[xi-1][yi+1]=1; block[xi+1][yi+1]=1; block[xi+2][yi+1]=1; blockrotation = 1; } else { block[xi][yi]=0; block[xi+2][yi]=0; block[xi+3][yi]=0; block[xi+1][yi-1]=1; block[xi+1][yi+1]=1; block[xi+1][yi+2]=1; blockrotation = 0; } } //offset to mid xi ++; yi ++; if (blocktype == 1) { if (blockrotation == 0) { block[xi-1][yi-1] = 0; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi][yi-1] = 1; block[xi+1][yi-1] = 1; block[xi][yi+1] = 1; blockrotation = 1; } else if (blockrotation == 1) { if (!space_left()) { if (!moveright()) return; xi++; } xi--; block[xi][yi-1] = 0; block[xi+1][yi-1] = 0; block[xi][yi+1] = 0; block[xi-1][yi] = 1; block[xi+1][yi] = 1; block[xi+1][yi+1] = 1; blockrotation = 2; } else if (blockrotation == 2) { yi --; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi+1][yi+1] = 0; block[xi][yi-1] = 1; block[xi][yi+1] = 1; block[xi-1][yi+1] = 1; blockrotation = 3; } else { if (!space_right()) { if (!moveleft()) return; xi--; } block[xi][yi-1] = 0; block[xi][yi+1] = 0; block[xi-1][yi+1] = 0; block[xi-1][yi-1] = 1; block[xi-1][yi] = 1; block[xi+1][yi] = 1; blockrotation = 0; } } if (blocktype == 2) { if (blockrotation == 0) { block[xi+1][yi-1] = 0; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi][yi-1] = 1; block[xi+1][yi+1] = 1; block[xi][yi+1] = 1; blockrotation = 1; } else if (blockrotation == 1) { if (!space_left()) { if (!moveright()) return; xi++; } xi--; block[xi][yi-1] = 0; block[xi+1][yi+1] = 0; block[xi][yi+1] = 0; block[xi-1][yi] = 1; block[xi+1][yi] = 1; block[xi-1][yi+1] = 1; blockrotation = 2; } else if (blockrotation == 2) { yi --; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi-1][yi+1] = 0; block[xi][yi-1] = 1; block[xi][yi+1] = 1; block[xi-1][yi-1] = 1; blockrotation = 3; } else { if (!space_right()) { if (!moveleft()) return; xi--; } block[xi][yi-1] = 0; block[xi][yi+1] = 0; block[xi-1][yi-1] = 0; block[xi+1][yi-1] = 1; block[xi-1][yi] = 1; block[xi+1][yi] = 1; blockrotation = 0; } } if (blocktype == 4) { if (blockrotation == 0) { block[xi+1][yi-1] = 0; block[xi-1][yi] = 0; block[xi+1][yi] = 1; block[xi+1][yi+1] = 1; blockrotation = 1; } else { if (!space_left()) { if (!moveright()) return; xi++; } xi--; block[xi+1][yi] = 0; block[xi+1][yi+1] = 0; block[xi-1][yi] = 1; block[xi+1][yi-1] = 1; blockrotation = 0; } } if (blocktype == 5) { if (blockrotation == 0) { block[xi][yi-1] = 0; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi][yi-1] = 1; block[xi+1][yi] = 1; block[xi][yi+1] = 1; blockrotation = 1; } else if (blockrotation == 1) { if (!space_left()) { if (!moveright()) return; xi++; } xi--; block[xi][yi-1] = 0; block[xi+1][yi] = 0; block[xi][yi+1] = 0; block[xi-1][yi] = 1; block[xi+1][yi] = 1; block[xi][yi+1] = 1; blockrotation = 2; } else if (blockrotation == 2) { yi --; block[xi-1][yi] = 0; block[xi+1][yi] = 0; block[xi][yi+1] = 0; block[xi][yi-1] = 1; block[xi-1][yi] = 1; block[xi][yi+1] = 1; blockrotation = 3; } else { if (!space_right()) { if (!moveleft()) return; xi--; } block[xi][yi-1] = 0; block[xi-1][yi] = 0; block[xi][yi+1] = 0; block[xi][yi-1] = 1; block[xi-1][yi] = 1; block[xi+1][yi] = 1; blockrotation = 0; } } if (blocktype == 6) { if (blockrotation == 0) { block[xi-1][yi-1] = 0; block[xi][yi-1] = 0; block[xi+1][yi-1] = 1; block[xi][yi+1] = 1; blockrotation = 1; } else { if (!space_left()) { if (!moveright()) return; xi++; } xi--; block[xi+1][yi-1] = 0; block[xi][yi+1] = 0; block[xi-1][yi-1] = 1; block[xi][yi-1] = 1; blockrotation = 0; } } //if rotating made block and pile overlap, push rows up while (!check_overlap()) { for (i=0;i<18;i++) { for (j=0;j<8;j++) { block[j][i] = block[j][i+1]; } } delays = millis() + delay_; } updateLED(); } void movedown() { if (space_below()) { //move down int i; for (i=15;i>=0;i--) { int j; for (j=0;j<8;j++) { block[j][i] = block[j][i-1]; } } for (i=0;i<7;i++) { block[i][0] = 0; } } else { //merge and new block int i; int j; for (i=0;i<8;i++) { for(j=0;j<16;j++) { if (block[i][j]) { pile[i][j]=1; block[i][j]=0; } } } newBlock(); } updateLED(); } boolean check_overlap() { int i; int j; for (i=0;i<16;i++) { for (j=0;j<7;j++) { if (block[j][i]) { if (pile[j][i]) return false; } } } for (i=16;i<18;i++) { for (j=0;j<7;j++) { if (block[j][i]) { return false; } } } return true; } void check_gameover() { int i; int j; int cnt=0;; for(i=15;i>=0;i--) { cnt=0; for (j=0;j<8;j++) { if (pile[j][i]) { cnt ++; } } if (cnt == 8) { for (j=0;j<8;j++) { pile[j][i]=0; } updateLED(); delay(50); int k; for(k=i;k>0;k--) { for (j=0;j<8;j++) { pile[j][k] = pile[j][k-1]; } } for (j=0;j<8;j++) { pile[j][0] = 0; } updateLED(); delay(50); i++; } } for(i=0;i<8;i++) { if (pile[i][0]) gameover(); } return; } void gameover() { int i; int j; for (i=0;i<8;i++) { for (j=0;j<16;j++) { if (j%2) { disp[i][j]=1; } else { disp[7-i][j]=1; } } delay(60); } for (i=0;i<8;i++) { for (j=0;j<16;j++) { if (j%2) { disp[i][j]=0; } else { disp[7-i][j]=0; } } delay(60); } while(true) { } } void newBlock() { check_gameover(); blocktype = random(7); if (blocktype == 0) // 0 // 0 // 0 // 0 { block[3][0]=1; block[3][1]=1; block[3][2]=1; block[3][3]=1; } if (blocktype == 1) // 0 // 0 0 0 { block[2][0]=1; block[2][1]=1; block[3][1]=1; block[4][1]=1; } if (blocktype == 2) // 0 // 0 0 0 { block[4][0]=1; block[2][1]=1; block[3][1]=1; block[4][1]=1; } if (blocktype == 3) // 0 0 // 0 0 { block[3][0]=1; block[3][1]=1; block[4][0]=1; block[4][1]=1; } if (blocktype == 4) // 0 0 // 0 0 { block[4][0]=1; block[5][0]=1; block[3][1]=1; block[4][1]=1; } if (blocktype == 5) // 0 // 0 0 0 { block[4][0]=1; block[3][1]=1; block[4][1]=1; block[5][1]=1; } if (blocktype == 6) // 0 0 // 0 0 { block[3][0]=1; block[4][0]=1; block[4][1]=1; block[5][1]=1; } blockrotation = 0; } boolean space_below() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (i == 15) return false; if (pile[j][i+1]) { return false; } } } } return true; } boolean space_left2() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 0 || j == 1) return false; if (pile[j-1][i] | pile[j-2][i]) { return false; } } } } return true; } boolean space_left3() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 0 || j == 1 ||j == 2 ) return false; if (pile[j-1][i] | pile[j-2][i]|pile[j-3][i]) { return false; } } } } return true; } boolean space_left() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 0) return false; if (pile[j-1][i]) { return false; } } } } return true; } boolean space_right() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 7) return false; if (pile[j+1][i]) { return false; } } } } return true; } boolean space_right3() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 7||j == 6||j == 5) return false; if (pile[j+1][i] |pile[j+2][i] | pile[j+3][i]) { return false; } } } } return true; } boolean space_right2() { int i; int j; for (i=15;i>=0;i--) { for (j=0;j<8;j++) { if (block[j][i]) { if (j == 7 || j == 6) return false; if (pile[j+1][i] |pile[j+2][i]) { return false; } } } } return true; } ISR(TIMER1_COMPA_vect){ //change the 0 to 1 for timer1 and 2 for timer2 LEDRefresh(); } void LEDRefresh() { int i; int k; //////////////////////////////////////////////// // I soldered pins wrong. (12345670 instead of 01234567). // so this portion of code is to software correct this issue. boolean tmpdisp[8][16]; for (k=0;k<16;k++) { for(i=1;i<8;i++) { tmpdisp[i][k]=disp[i-1][k]; } tmpdisp[0][k]=disp[7][k]; } ////////////////////////////////////////////// for(i=0;i<8;i++) { int j; if (i == 0) j = rowPin+7; else j = rowPin+i-1; byte upper = 0; int b; for(b = 0;b<8;b++) { upper <<= 1; if (!tmpdisp[b][i]) upper |= 1; } byte lower = 0; for(b = 0;b<8;b++) { lower <<= 1; if (!tmpdisp[b][i+8]) lower |= 1; } digitalWrite(j,LOW); digitalWrite(latchPin, LOW); shiftOut(dataPin, clockPin, LSBFIRST, lower); shiftOut(dataPin, clockPin, LSBFIRST, upper); digitalWrite(latchPin, HIGH); digitalWrite(rowPin+i,HIGH); delay(1); } digitalWrite(rowPin+7,LOW); }
[ "ryujt658@gmail.com" ]
ryujt658@gmail.com
688bf7b294b77448bece3ddc6355611d6a1177ce
518b1a4a209d0e870a7fd1b9cf54c56ecb32cda3
/STAGE/cpp/smdmonitor/src/test/OperationsTest.cpp
a99acbc1c627ee58fadf43771966b6dd5709b709
[]
no_license
LRBH10/stageImageau
85a3afe8a5c8724a1d9949e857bb9c478054a761
630b0ba90634b7313fc52f23fd26271a2b3219c8
refs/heads/master
2021-01-18T14:33:45.203645
2012-11-16T16:05:44
2012-11-16T16:05:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,830
cpp
/* * OperationsTest.cpp * * Created on: 25 juin 2012 * Author: bibouh */ #include "OperationsTest.h" #include "OperationsIncludes.h" #include "OperationSvnUpdate.h" #include "OperationSvnSwitch.h" #include <cppunit/config/SourcePrefix.h> using namespace OperationsSMD; CPPUNIT_TEST_SUITE_REGISTRATION (OperationsTest); OperationsTest::OperationsTest () { } OperationsTest::~OperationsTest () { } void OperationsTest::testOperationScript () { long id = -1; OperationType type = OperationTypeScript; string user = "rabah"; string path = "~/"; double state = 0.65; bool achieved = false; bool nested = false; bool report_on_succes = true; string cmd = "echo "; string pars = "RABAH LAOUADI"; OperationScript test (id, type, user, path, state, achieved, nested, report_on_succes, cmd, pars); test.setInTest (true); ReportData * report = test.execute (); string attendue = "PRE CHECK ...\nRUN OPERATIONS ...\nRABAH LAOUADI\nPOST_CHECK ...\n"; CPPUNIT_ASSERT_EQUAL_MESSAGE ("OperationScript ", attendue, report->contents); delete report; } void OperationsTest::testOperationShellFile () { long id = -1; OperationType type = OperationTypeShellFile; string user = "rabah"; string path = "~/"; double state = 0.65; bool achieved = false; bool nested = false; bool report_on_succes = true; ShellFileAction action = ShellFileReplace; string filename = "test.sh"; string contenu = "echo RABAH LAOUADI"; bool excute = true; bool delete_after = false; OperationShellFile test (id, type, user, path, state, achieved, nested, report_on_succes, action, filename, contenu, excute, delete_after); test.setInTest (true); ReportData * report = test.execute (); string attendue = "PRE CHECK ...\nRUN OPERATIONS ...\nRABAH LAOUADI\nPOST_CHECK ...\n"; CPPUNIT_ASSERT_EQUAL_MESSAGE ("OperationScript ", attendue, report->contents); delete report; } void OperationsTest::testOperationUpdateSVN () { long id = -1; OperationType type = OperationTypeSvnUpdate; string user = "rabah"; string path = "~/GIT/Projects-Rabah/STAGE/cpp/"; double state = 0.65; bool achieved = false; bool nested = false; bool report_on_succes = true; OperationType svn_type = OperationTypeSvnUpdate; string head = "HEAD"; string conflict = "theirs-full"; bool forced = true; OperationSvnUpdate test (id, type, user, path, state, achieved, nested, report_on_succes, svn_type, conflict, head, forced); test.setInTest (true); ReportData * report = test.execute (); cout << report->contents << endl; string attendue = "PRE CHECK ...\nRUN OPERATIONS ...\nRABAH LAOUADI\nPOST_CHECK ...\n"; //CPPUNIT_ASSERT_EQUAL_MESSAGE("OperationScript ", attendue, report->contents); delete report; }
[ "rlaouadi@si95.etu.info-ufr.univ-montp2.fr" ]
rlaouadi@si95.etu.info-ufr.univ-montp2.fr
ee8e086f458e4eebdabd2ef5cb518fa403d98761
f2339e85157027dada17fadd67c163ecb8627909
/Cluster/GuardServer/Src/GuardServer.cpp
026765d79228c9670ca8492db2a9d22dfd32f23f
[]
no_license
fynbntl/Titan
7ed8869377676b4c5b96df953570d9b4c4b9b102
b069b7a2d90f4d67c072e7c96fe341a18fedcfe7
refs/heads/master
2021-09-01T22:52:37.516407
2017-12-29T01:59:29
2017-12-29T01:59:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,207
cpp
/******************************************************************* ** 文件名: GuardServer.cpp ** 版 权: (C) 深圳冰川网络技术有限公司 ** 创建人: 李界华 ** 日 期: 2015-8-17 ** 版 本: 1.0 ** 描 述: 数据监护服务器主程序 ** 应 用: **************************** 修改记录 ****************************** ** 修改人: ** 日 期: ** 描 述: ********************************************************************/ #pragma once // GuardServer.cpp : 定义应用程序的类行为。 // #include "stdafx.h" #include "GuardServer.h" #include "GuardServerDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #endif #define one _T("{A1E7801E-E2CC-455B-AD78-647BAC8C9543}") //唯一标识字串,用来创建互斥 HANDLE g_applicationHandle; //互斥句柄 // CGuardServerApp BEGIN_MESSAGE_MAP(CGuardServerApp, CWinApp) ON_COMMAND(ID_HELP, &CWinApp::OnHelp) END_MESSAGE_MAP() // CGuardServerApp 构造 CGuardServerApp::CGuardServerApp() { // TODO: 在此处添加构造代码, // 将所有重要的初始化放置在 InitInstance 中 } // 唯一的一个 CGuardServerApp 对象 CGuardServerApp theApp; void myPurecallHandler(void) { //Error("虚函数调用异常!!!"); __debugbreak(); } // CGuardServerApp 初始化 BOOL CGuardServerApp::InitInstance() { _set_purecall_handler(myPurecallHandler); // 唯一标识字串,用来创建互斥 g_applicationHandle=::CreateMutex(NULL,FALSE,one); if(GetLastError()==ERROR_ALREADY_EXISTS) { //::MessageBox(NULL,"数据监护服务器已经在运行!","数据监护服务器",MB_ICONINFORMATION); //AfxMessageBox("数据监护服务器已经在运行!",MB_ICONINFORMATION); return FALSE; } // 如果一个运行在 Windows XP 上的应用程序清单指定要 // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式, //则需要 InitCommonControlsEx()。否则,将无法创建窗口。 INITCOMMONCONTROLSEX InitCtrls; InitCtrls.dwSize = sizeof(InitCtrls); // 将它设置为包括所有要在应用程序中使用的 // 公共控件类。 InitCtrls.dwICC = ICC_WIN95_CLASSES; InitCommonControlsEx(&InitCtrls); CWinApp::InitInstance(); AfxEnableControlContainer(); AfxInitRichEdit2(); // to initialize richedit2 library. // 标准初始化 // 如果未使用这些功能并希望减小 // 最终可执行文件的大小,则应移除下列 // 不需要的特定初始化例程 // 更改用于存储设置的注册表项 // TODO: 应适当修改该字符串, // 例如修改为公司或组织名 SetRegistryKey(_T("深圳冰川网络技术有限公司")); // 用new的方式以免对象太大堆栈不够用 CGuardServerDlg *pDlg = new CGuardServerDlg; m_pMainWnd = pDlg; INT_PTR nResponse = pDlg->DoModal(); if (nResponse == IDOK) { // TODO: 在此处放置处理何时用“确定”来关闭 // 对话框的代码 } else if (nResponse == IDCANCEL) { // TODO: 在此放置处理何时用“取消”来关闭 // 对话框的代码 } delete pDlg; // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序, // 而不是启动应用程序的消息泵。 return FALSE; }
[ "85789685@qq.com" ]
85789685@qq.com
95fb47e2405bc3b57b600dbd62af7f755bff54fd
4fa3ffb1551dfe4867ccafbfbd88ff4fa9902b99
/android_code/third_party/glm/test/core/core_func_exponential.cpp
33f16fc7bf6a2b29b1edab03a5e022edc0a4660b
[ "MIT" ]
permissive
occamLab/tango_ros_bridge
8c8b7845691f7013ff20c7ed19a1d60ea76854c2
4d35cf18869a6b52654e467df41b60e18f56b2a2
refs/heads/master
2021-04-22T12:36:33.974577
2018-07-30T16:14:02
2018-07-30T16:14:02
31,181,150
10
9
null
2017-06-28T16:28:38
2015-02-22T21:21:08
C
UTF-8
C++
false
false
2,787
cpp
/////////////////////////////////////////////////////////////////////////////////////////////////// // OpenGL Mathematics Copyright (c) 2005 - 2014 G-Truc Creation (www.g-truc.net) /////////////////////////////////////////////////////////////////////////////////////////////////// // Created : 2011-01-15 // Updated : 2011-09-13 // Licence : This source is under MIT licence // File : test/core/func_exponential.cpp /////////////////////////////////////////////////////////////////////////////////////////////////// #include <glm/common.hpp> #include <glm/exponential.hpp> #include <glm/gtc/ulp.hpp> #include <glm/gtx/vec1.hpp> int test_pow() { int Error(0); float A = glm::pow(10.f, 10.f); glm::vec1 B = glm::pow(glm::vec1(10.f), glm::vec1(10.f)); glm::vec2 C = glm::pow(glm::vec2(10.f), glm::vec2(10.f)); glm::vec3 D = glm::pow(glm::vec3(10.f), glm::vec3(10.f)); glm::vec4 E = glm::pow(glm::vec4(10.f), glm::vec4(10.f)); return Error; } int test_exp() { int Error(0); float A = glm::exp(10.f); glm::vec1 B = glm::exp(glm::vec1(10.f)); glm::vec2 C = glm::exp(glm::vec2(10.f)); glm::vec3 D = glm::exp(glm::vec3(10.f)); glm::vec4 E = glm::exp(glm::vec4(10.f)); return Error; } int test_log() { int Error(0); float A = glm::log(10.f); glm::vec1 B = glm::log(glm::vec1(10.f)); glm::vec2 C = glm::log(glm::vec2(10.f)); glm::vec3 D = glm::log(glm::vec3(10.f)); glm::vec4 E = glm::log(glm::vec4(10.f)); return Error; } int test_exp2() { int Error(0); float A = glm::exp2(10.f); glm::vec1 B = glm::exp2(glm::vec1(10.f)); glm::vec2 C = glm::exp2(glm::vec2(10.f)); glm::vec3 D = glm::exp2(glm::vec3(10.f)); glm::vec4 E = glm::exp2(glm::vec4(10.f)); return Error; } int test_log2() { int Error(0); float A = glm::log2(10.f); glm::vec1 B = glm::log2(glm::vec1(10.f)); glm::vec2 C = glm::log2(glm::vec2(10.f)); glm::vec3 D = glm::log2(glm::vec3(10.f)); glm::vec4 E = glm::log2(glm::vec4(10.f)); return Error; } int test_sqrt() { int Error(0); float A = glm::sqrt(10.f); glm::vec1 B = glm::sqrt(glm::vec1(10.f)); glm::vec2 C = glm::sqrt(glm::vec2(10.f)); glm::vec3 D = glm::sqrt(glm::vec3(10.f)); glm::vec4 E = glm::sqrt(glm::vec4(10.f)); return Error; } int test_inversesqrt() { int Error(0); glm::uint ulp(0); float diff(0.0f); for(float f = 0.001f; f < 10.f; f *= 1.001f) { glm::lowp_fvec1 lowp_v = glm::inversesqrt(glm::lowp_fvec1(f)); float defaultp_v = glm::inversesqrt(f); ulp = glm::max(glm::float_distance(lowp_v.x, defaultp_v), ulp); diff = glm::abs(lowp_v.x - defaultp_v); } return Error; } int main() { int Error(0); Error += test_pow(); Error += test_exp(); Error += test_log(); Error += test_exp2(); Error += test_log2(); Error += test_sqrt(); Error += test_inversesqrt(); return Error; }
[ "paullundyruvolo@gmail.com" ]
paullundyruvolo@gmail.com
98a2463be90f01267b58f6c0e17278a3c7cd9fa1
abb237124c86cec7a9b67f556b9ad0517f7e18b7
/src/TiffWriter.h
b5e214ed5b0bbd1af57fdf1ddd38178e50da2006
[ "MIT" ]
permissive
odinsbane/toy-model-cell-gl
3f80dc85675973eee39a79c2d7e4d6b3b2105c73
a1e976d51e9673a364f130cf5685d86ed0d50ea4
refs/heads/master
2020-04-06T19:53:31.984277
2018-11-15T18:52:47
2018-11-15T18:52:47
157,753,457
0
0
null
null
null
null
UTF-8
C++
false
false
316
h
#ifndef _TIFF_WRITER #define _TIFF_WRITER #include "tiffio.h" class TiffWriter{ int height; int width; int count; TIFF* image; public: TiffWriter(const char* filename, int height, int width); void writeFrame(char* buffer); void close(); int bpp; }; #endif
[ "melkor@orangepalantir.org" ]
melkor@orangepalantir.org
d67f88f910fa34ed848f7f4299f46b06a2229f46
0c1f0defb82ba40b7eec1405e78c4b71a3b2b963
/ClearScript/V8/ClearScriptV8/V8IsolateProxyImpl.cpp
dbd061a64ccb7fadfd998daf882cdb708c93a820
[]
no_license
jdaigle/ClearScript
63a51d5e0fd3c572ef0cd96d560a0a5323695589
f31b05abe0e0253c21a53773bf2194b189fa1e83
refs/heads/master
2021-01-13T02:15:01.023876
2015-06-15T13:15:42
2015-06-15T13:15:45
37,464,898
0
0
null
null
null
null
UTF-8
C++
false
false
8,420
cpp
// // Copyright (c) Microsoft Corporation. All rights reserved. // // Microsoft Public License (MS-PL) // // This license governs use of the accompanying software. If you use the // software, you accept this license. If you do not accept the license, do not // use the software. // // 1. Definitions // // The terms "reproduce," "reproduction," "derivative works," and // "distribution" have the same meaning here as under U.S. copyright law. A // "contribution" is the original software, or any additions or changes to // the software. A "contributor" is any person that distributes its // contribution under this license. "Licensed patents" are a contributor's // patent claims that read directly on its contribution. // // 2. Grant of Rights // // (A) Copyright Grant- Subject to the terms of this license, including the // license conditions and limitations in section 3, each contributor // grants you a non-exclusive, worldwide, royalty-free copyright license // to reproduce its contribution, prepare derivative works of its // contribution, and distribute its contribution or any derivative works // that you create. // // (B) Patent Grant- Subject to the terms of this license, including the // license conditions and limitations in section 3, each contributor // grants you a non-exclusive, worldwide, royalty-free license under its // licensed patents to make, have made, use, sell, offer for sale, // import, and/or otherwise dispose of its contribution in the software // or derivative works of the contribution in the software. // // 3. Conditions and Limitations // // (A) No Trademark License- This license does not grant you rights to use // any contributors' name, logo, or trademarks. // // (B) If you bring a patent claim against any contributor over patents that // you claim are infringed by the software, your patent license from such // contributor to the software ends automatically. // // (C) If you distribute any portion of the software, you must retain all // copyright, patent, trademark, and attribution notices that are present // in the software. // // (D) If you distribute any portion of the software in source code form, you // may do so only under this license by including a complete copy of this // license with your distribution. If you distribute any portion of the // software in compiled or object code form, you may only do so under a // license that complies with this license. // // (E) The software is licensed "as-is." You bear the risk of using it. The // contributors give no express warranties, guarantees or conditions. You // may have additional consumer rights under your local laws which this // license cannot change. To the extent permitted under your local laws, // the contributors exclude the implied warranties of merchantability, // fitness for a particular purpose and non-infringement. // #include "ClearScriptV8Managed.h" namespace Microsoft { namespace ClearScript { namespace V8 { //------------------------------------------------------------------------- // V8IsolateProxyImpl implementation //------------------------------------------------------------------------- V8IsolateProxyImpl::V8IsolateProxyImpl(String^ gcName, V8RuntimeConstraints^ gcConstraints, Boolean enableDebugging, Int32 debugPort): m_gcLock(gcnew Object) { const V8IsolateConstraints* pConstraints = nullptr; V8IsolateConstraints constraints; if (gcConstraints != nullptr) { constraints.Set(AdjustConstraint(gcConstraints->MaxNewSpaceSize), AdjustConstraint(gcConstraints->MaxOldSpaceSize), AdjustConstraint(gcConstraints->MaxExecutableSize)); pConstraints = &constraints; } try { m_pspIsolate = new SharedPtr<V8Isolate>(V8Isolate::Create(StdString(gcName), pConstraints, enableDebugging, debugPort)); } catch (const V8Exception& exception) { exception.ThrowScriptEngineException(); } } //------------------------------------------------------------------------- UIntPtr V8IsolateProxyImpl::MaxHeapSize::get() { return (UIntPtr)GetIsolate()->GetMaxHeapSize(); } //------------------------------------------------------------------------- void V8IsolateProxyImpl::MaxHeapSize::set(UIntPtr value) { GetIsolate()->SetMaxHeapSize(static_cast<size_t>(value)); } //------------------------------------------------------------------------- TimeSpan V8IsolateProxyImpl::HeapSizeSampleInterval::get() { return TimeSpan::FromMilliseconds(GetIsolate()->GetHeapSizeSampleInterval()); } //------------------------------------------------------------------------- void V8IsolateProxyImpl::HeapSizeSampleInterval::set(TimeSpan value) { GetIsolate()->SetHeapSizeSampleInterval(value.TotalMilliseconds); } //------------------------------------------------------------------------- UIntPtr V8IsolateProxyImpl::MaxStackUsage::get() { return (UIntPtr)GetIsolate()->GetMaxStackUsage(); } //------------------------------------------------------------------------- void V8IsolateProxyImpl::MaxStackUsage::set(UIntPtr value) { GetIsolate()->SetMaxStackUsage(static_cast<size_t>(value)); } //------------------------------------------------------------------------- V8Script^ V8IsolateProxyImpl::Compile(String^ gcDocumentName, String^ gcCode) { try { return gcnew V8ScriptImpl(gcDocumentName, GetIsolate()->Compile(StdString(gcDocumentName), StdString(gcCode))); } catch (const V8Exception& exception) { exception.ThrowScriptEngineException(); } } //------------------------------------------------------------------------- V8RuntimeHeapInfo^ V8IsolateProxyImpl::GetHeapInfo() { V8IsolateHeapInfo heapInfo; GetIsolate()->GetHeapInfo(heapInfo); auto gcHeapInfo = gcnew V8RuntimeHeapInfo(); gcHeapInfo->TotalHeapSize = heapInfo.GetTotalHeapSize(); gcHeapInfo->TotalHeapSizeExecutable = heapInfo.GetTotalHeapSizeExecutable(); gcHeapInfo->TotalPhysicalSize = heapInfo.GetTotalPhysicalSize(); gcHeapInfo->UsedHeapSize = heapInfo.GetUsedHeapSize(); gcHeapInfo->HeapSizeLimit = heapInfo.GetHeapSizeLimit(); return gcHeapInfo; } //------------------------------------------------------------------------- void V8IsolateProxyImpl::CollectGarbage(bool exhaustive) { GetIsolate()->CollectGarbage(exhaustive); } //------------------------------------------------------------------------- SharedPtr<V8Isolate> V8IsolateProxyImpl::GetIsolate() { BEGIN_LOCK_SCOPE(m_gcLock) if (m_pspIsolate == nullptr) { throw gcnew ObjectDisposedException(ToString()); } return *m_pspIsolate; END_LOCK_SCOPE } //------------------------------------------------------------------------- V8IsolateProxyImpl::~V8IsolateProxyImpl() { SharedPtr<V8Isolate> spIsolate; BEGIN_LOCK_SCOPE(m_gcLock) if (m_pspIsolate != nullptr) { // hold V8 isolate for destruction outside lock scope spIsolate = *m_pspIsolate; delete m_pspIsolate; m_pspIsolate = nullptr; } END_LOCK_SCOPE } //------------------------------------------------------------------------- V8IsolateProxyImpl::!V8IsolateProxyImpl() { if (m_pspIsolate != nullptr) { delete m_pspIsolate; m_pspIsolate = nullptr; } } //------------------------------------------------------------------------- int V8IsolateProxyImpl::AdjustConstraint(int value) { const int maxValueInMiB = 1024 * 1024; if (value > maxValueInMiB) { const double bytesPerMiB = 1024 * 1024; return Convert::ToInt32(Math::Ceiling(Convert::ToDouble(value) / bytesPerMiB)); } return value; } }}}
[ "ClearScript@microsoft.com" ]
ClearScript@microsoft.com
e585f5e5d83257eee1420a2426916927ebad763b
935a7ffba3674ebb3ac26005b5297393b7c46dd0
/TP3/ex01.cc
9178c417de93820f19bd77aaaaa0ec2e99e91644
[]
no_license
karshann/language-avanc-e
1277acce9b57e5b55273d352e2d8fdfa0135fc59
b375a1f3fdb4d7534a6f269b2240c0f4bf4c1dd4
refs/heads/master
2020-04-01T23:32:50.232382
2018-10-26T09:15:58
2018-10-26T09:15:58
153,763,013
0
0
null
null
null
null
UTF-8
C++
false
false
1,643
cc
using namespace std; #include <iostream> #include <stdlib.h> #include <math.h> class Point { //variables membres public: double abs; //abscisse double ord; //ordonnee //fonctions membres public: Point() { //constructeur par default abs = ord = 0; } Point(double abs, double ord) { //constructeur a deux parametres this->abs = abs; this->ord = ord; } Point(const Point &p) { //constructeur de copie this->abs = p.abs; this->ord = p.ord; } virtual void afficher() { cout<<"Point: x = "<<abs<<", y = "<<ord<<"\n"; } void cloner(const Point &p) { this->abs = p.abs; this->ord = p.ord; } virtual ~Point() { //destructeur cout<<"\n"; cout<<"Destruction du Point : x "<<abs<<", y = "<<ord<<"\n"; } }; enum COLOR(BLANC,BLEU,VIOLET); char *coul[5]={"Blanc", "Bleu", "Violet", "Vert", "Rouge"}; class PointColor ; public Point { //variables membre private: int couleur; //methode public: PointColor(double abs, double ord, inr c) : Point(abs, ord) {//appel du constructeur de la class couleur = c; } virtual void afficher(){ Point::afficher(); //utilise la fonction afficher de la class mere cout<<", Couleur : "<<coul[couleur]<<"\n"; } ~PointColor(){ //destructeur cout<<"\n"; cout<<"Destruction du point colore : x = "<<abs<<", y = "<<ord<<", Couleur : "<<coul[couleur]<<"\n"; } }; int main() { PointColor pc = PointColor(2.3, 9.6,ROUGE); Point p = Point(-2.5, 9.0); Point *pp = (&pc); pc.afficher(); p.afficher(); pp->afficher(); pp = new PointColor(0.3, 0.6,VERT); delete pp; pp=NULL; return 1; }
[ "karshan.ketheeswaran@ens.uvsq.fr" ]
karshan.ketheeswaran@ens.uvsq.fr
8cd2f2166286fa4489f3d1a701792d3734678069
082a8595c95a66408bebc540cda8f66ddc74168f
/src/headers/collision/simpleworld.hpp
d3a671be69e0b7be60ba56380bf5b6f256f8f17f
[ "MIT" ]
permissive
crr0004/terrian_prototype
6c365cbc9265cbb1fa170d3788b5123db16d7abb
34b04239ee2fb01e48f1602ff6dd08e8bd26da63
refs/heads/master
2021-01-23T09:11:02.236838
2018-11-05T01:21:30
2018-11-05T01:21:30
42,797,408
2
0
null
null
null
null
UTF-8
C++
false
false
526
hpp
#ifndef COLLISION_SIMPLEWORLD_H #define COLLISION_SIMPLEWORLD_H #include "collision/collider.hpp" namespace Collision { class SimpleWorld : public Collider{ public: virtual void operation(); virtual void add(INode*); virtual void add(Collider*); virtual void notifyCollider(Collider*){} virtual Geometry::Moveable& getMoveable(){return moveable;} virtual bool visitCollide(Collider* collider){return collider->visit(this);} private: Geometry::Moveable moveable; }; } // namespace Collision #endif
[ "crr0004@gmail.com" ]
crr0004@gmail.com
aac247f94b1f25756605607f6cb26b7d64d7e062
09398a001b68e45148f7379ae65d13dcfc2c8170
/CH.6/PC7.cpp
f3e3f96bad3c72d358c1d0dffb6789ee5a5aeffa
[]
no_license
dbmartinez/Starting-Out-With-C-plus-plus
28136324d56a7f8fed11ea3f52797ac3080cd4b6
7b89447b4bffd92efeca3f781a1256d04a692eae
refs/heads/master
2022-01-01T19:40:19.142911
2021-12-24T08:54:23
2021-12-24T08:54:23
241,753,122
0
0
null
null
null
null
UTF-8
C++
false
false
1,001
cpp
// String Compare #include<iostream> #include<string> #include<cctype> using namespace std; // Function Prototype string upperCaseit(string s); bool sameString(string s1, string s2); int main() { // variables string string1, string2; // user input cout << "Enter in 2 strings and I'll see if they're the same."; cout << "\nEnter in the first string: "; cin >> string1; cout << "Enter in the second string: "; cin >> string2; if(sameString(string1, string2)) cout << "\nThey're the same...\n"; else cout << "\nThey're not the same...\n"; return 0; } // uppercase all letters string upperCaseIt(string s) { // use an array to store letters to compare // don't know how to do this without an array :( for(int i = 0; i < s.size(); i++) { s[i] = toupper(s[i]); } return s; } // check to see of both strings are equal bool sameString(string s1, string s2) { if(upperCaseIt(s1) == upperCaseIt(s2)) return true; else return false; }
[ "noreply@github.com" ]
dbmartinez.noreply@github.com
44422d69031ba13dee76733e41c84b0367152351
ccf95341f16c892905eb31ed5ddd08d40f4168ef
/src/SuiteSDL/SdlJoystickService.cpp
1bc6050a7a48fdfa305cc2fac0930aaa6346352c
[]
no_license
NicoHartl/astu
c3eac67d3b787b400a4f203390d02274e5028ed0
172f195c3c2b44cc92bdf5382a0d176bae3bafff
refs/heads/master
2023-09-04T06:35:29.541150
2021-10-11T05:36:10
2021-10-11T05:36:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,481
cpp
/* * ASTU - AST Utilities * A collection of Utilities for Applied Software Techniques (AST). * * Copyright (c) 2020, 2021 Roman Divotkey, Nora Loimayr. All rights reserved. */ // Local includes #include "SuiteSDL/SdlJoystickService.h" #include "SuiteSDL/ISdlEventListener.h" #include "SuiteSDL/SdlEventService.h" #include "Input/Keys.h" // SDL 2 includes #include <SDL2/SDL.h> // C++ Standard Libryry includes #include <stdexcept> #include <iostream> #include <vector> #include <limits> using namespace std; namespace astu { class EventListenerProxy : public ISdlEventListener { public: EventListenerProxy(InputMappingService& mapper, const map<Key, float> &deadzones); ~EventListenerProxy(); // Inherited via ISdlEventListener virtual void HandleEvent(const SDL_Event & event); private: const map<Key, float> &deadzones; InputMappingService& mapper; SDL_GameController* gameController; map<int, SDL_GameController*> gameControllers; void AddGameController(int index); void RemoveGameController(int instanceId); bool HasGameController(int instanceId) const; const Key& TranslateButton(int sdlGamepadButton); const Key& TranslateAxis(int sdlGamepadAxis); float TranslateAxisValue(int16_t rawValue, float deadzone); float TranslateAxisValueFullRange(int16_t rawValue, float deadzone); float GetAxisDeadzone(const Key& key) const; }; EventListenerProxy::EventListenerProxy( InputMappingService& mapper, const map<Key, float> &deadzones ) : mapper(mapper) , deadzones(deadzones) { SDL_JoystickEventState(SDL_ENABLE); } EventListenerProxy::~EventListenerProxy() { for (const auto& it: gameControllers) { if (it.second) { SDL_GameControllerClose(it.second); } } gameControllers.clear(); } void EventListenerProxy::AddGameController(int index) { SDL_GameController* gameController = SDL_GameControllerOpen(index); if (!gameController) { SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "unable to open game controller: %s", SDL_GetError()); return; } SDL_Joystick *joyStick = SDL_GameControllerGetJoystick(gameController); int instanceId = SDL_JoystickInstanceID(joyStick); assert(!HasGameController(instanceId)); gameControllers[instanceId] = gameController; } void EventListenerProxy::RemoveGameController(int instanceId) { auto it = gameControllers.find(instanceId); if (it == gameControllers.end()) { return; } SDL_GameControllerClose(it->second); gameControllers.erase(it); } bool EventListenerProxy::HasGameController(int instanceId) const { return gameControllers.find(instanceId) != gameControllers.end(); } const Key& EventListenerProxy::TranslateButton(int sdlGamepadButton) { switch (sdlGamepadButton) { case SDL_CONTROLLER_BUTTON_A: return Keys::GamepadFaceButtonBottom; case SDL_CONTROLLER_BUTTON_B: return Keys::GamepadFaceButtonRight; case SDL_CONTROLLER_BUTTON_X: return Keys::GamepadFaceButtonLeft; case SDL_CONTROLLER_BUTTON_Y: return Keys::GamepadFaceButtonTop; default: return Keys::Unknown; } } const Key& EventListenerProxy::TranslateAxis(int sdlGamepadAxis) { switch (sdlGamepadAxis) { case SDL_CONTROLLER_AXIS_LEFTX: return Keys::GamepadLeftThumbstickX; case SDL_CONTROLLER_AXIS_LEFTY: return Keys::GamepadLeftThumbstickY; case SDL_CONTROLLER_AXIS_RIGHTX: return Keys::GamepadRightThumbstickX; case SDL_CONTROLLER_AXIS_RIGHTY: return Keys::GamepadRightThumbstickY; case SDL_CONTROLLER_AXIS_TRIGGERLEFT: return Keys::GamepadLeftShoulder; case SDL_CONTROLLER_AXIS_TRIGGERRIGHT: return Keys::GamepadRightShoulder; default: return Keys::Unknown; } } float EventListenerProxy::GetAxisDeadzone(const Key& key) const { auto it = deadzones.find(key); if (it != deadzones.end()) { return it->second; } else { return 0.0f; } } float EventListenerProxy::TranslateAxisValue(int16_t rawValue, float deadzone) { float value; if (rawValue >= 0) { value = static_cast<float>(rawValue) / numeric_limits<int16_t>::max(); } else { value = -static_cast<float>(rawValue) / numeric_limits<int16_t>::min(); } if (value < deadzone && value > -deadzone) { return 0.0f; } return value; } float EventListenerProxy::TranslateAxisValueFullRange(int16_t rawValue, float deadzone) { float value; if (rawValue >= 0) { value = static_cast<float>(rawValue) / numeric_limits<int16_t>::max(); } else { value = -static_cast<float>(rawValue) / numeric_limits<int16_t>::min(); } value = (value + 1.0f) * 0.5f; if (value < deadzone) { return 0.0f; } return value; } void EventListenerProxy::HandleEvent(const SDL_Event & event) { // Uncomment for debugging. // cout << "got event: " << event.type << endl; switch (event.type) { case SDL_JOYDEVICEADDED: // Uncomment for debugging. // cout << "game controller added: " << event.jdevice.which << endl; AddGameController(event.jdevice.which); break; case SDL_JOYDEVICEREMOVED: // Uncomment for debugging. // cout << "game controller removed: " << event.jdevice.which << endl; RemoveGameController(event.jdevice.which); break; case SDL_JOYBALLMOTION: // Not supported at the moment. break; case SDL_JOYHATMOTION: // Not supported at the moment. break; case SDL_JOYBUTTONDOWN: mapper.ProcessKey(TranslateButton(event.jbutton.button), true); break; case SDL_JOYBUTTONUP: mapper.ProcessKey(TranslateButton(event.jbutton.button), false); break; case SDL_JOYAXISMOTION: // Uncomment for debugging. // cout << "game controller axis " << (int) event.jaxis.axis // << ": " << event.jaxis.value << " float: " // << TranslateAxisValue(event.jaxis.value) <<endl; { const Key& key = TranslateAxis(event.jaxis.axis); switch (event.jaxis.axis) { case SDL_CONTROLLER_AXIS_TRIGGERLEFT: case SDL_CONTROLLER_AXIS_TRIGGERRIGHT: mapper.ProcessAxis( TranslateAxis(event.jaxis.axis), TranslateAxisValueFullRange(event.jaxis.value, GetAxisDeadzone(key))); break; default: mapper.ProcessAxis( TranslateAxis(event.jaxis.axis), TranslateAxisValue(event.jaxis.value, GetAxisDeadzone(key))); break; } } break; } } SdlJoystickService::SdlJoystickService(float defaultDeadZone) : Service("SDL Joystick Service") { // Intentionally left empty. SetAxisDeadzone(Keys::GamepadLeftThumbstickX, defaultDeadZone); SetAxisDeadzone(Keys::GamepadLeftThumbstickY, defaultDeadZone); SetAxisDeadzone(Keys::GamepadRightThumbstickX, defaultDeadZone); SetAxisDeadzone(Keys::GamepadRightThumbstickY, defaultDeadZone); } SdlJoystickService::~SdlJoystickService() { // Intentionally left empty. } void SdlJoystickService::SetAxisDeadzone(const Key& key, float deadzone) { if (deadzone < 0.0f || deadzone > 1.0f) { throw std::domain_error("Dead zone out of range"); } deadzones[key] = deadzone; } void SdlJoystickService::OnStartup() { SDL_LogDebug(SDL_LOG_CATEGORY_APPLICATION, "Starting up SDL joystick service"); if (SDL_InitSubSystem(SDL_INIT_JOYSTICK) != 0) { SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL events subsystem: %s", SDL_GetError()); throw std::runtime_error(SDL_GetError()); } inputMapperSrv = ASTU_GET_SERVICE_OR_NULL(InputMappingService); proxy = make_unique<EventListenerProxy>(*inputMapperSrv, deadzones); ASTU_SERVICE(SdlEventService).AddSdlEventListener(*proxy); } void SdlJoystickService::OnShutdown() { ASTU_SERVICE(SdlEventService).RemoveSdlEventListener(*proxy); proxy = nullptr; inputMapperSrv = nullptr; SDL_LogDebug(SDL_LOG_CATEGORY_APPLICATION, "Shutting down SDL joystick service"); SDL_QuitSubSystem(SDL_INIT_JOYSTICK); } } // end of namespace
[ "roman.divotkey@gmail.com" ]
roman.divotkey@gmail.com
912eeb02c250a319982e568e04a91829a8d1c51d
904a904c55100ec5b79cef0ba6b5029c99025dda
/LyricDlg.h
8050202e332f6303dcd1b0d130bf83add722a7cc
[]
no_license
l19981260/MyPlayer
adeebe8f24e027e46f2cb581271e6b4efacbc7e2
3949d25c4c910e4f5188c5aa823e4458ac2bec35
refs/heads/master
2020-04-04T23:04:32.752424
2018-11-06T08:03:26
2018-11-06T08:03:26
156,346,124
2
1
null
null
null
null
UTF-8
C++
false
false
2,603
h
#if !defined(AFX_LYRICDLG_H__8799792B_FAD6_4AC3_B8C2_3C47B0B31778__INCLUDED_) #define AFX_LYRICDLG_H__8799792B_FAD6_4AC3_B8C2_3C47B0B31778__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // LyricDlg.h : header file // #include <fstream> using namespace std; #define MAXCOUNT 100 ///////////////////////////////////////////////////////////////////////////// // CLyricDlg dialog typedef struct _star { int x; int y; int speed; int size; } STAR,*PSTAR; typedef struct _lyric { int time; CString strLyric; }LYRIC,*PLYRIC; class CLyricDlg : public CDialog { // Construction public: void SetPlayListWnd(CWnd*pWnd); CWnd* m_pPlaylistWnd; BOOL fHideMain; BOOL OpenLyric(CString strLyricPath,int nIndex); void InvalidateCtrl(); CBitmap* m_pOldBitmap; CBitmap m_MainBitmap; CDC m_MainDC; CFont m_font; void SlideClick(); int m_nCurrentLine; void CountStep(); int nStep; void SortLyric(); int nCounter; int GetTime(CString strTime); void AnalyseLine(CString strLine); int m_nTotalLines; LYRIC m_lyric[1000]; BOOL IsExistFile(CString strFileName); BOOL OpenLyric(int nIndex); BOOL fInited; void GetLyric(CString strFileName); void DrawText(CDC*pDC); void InitStar(); void DrawStar(CDC*pDC,int nIndex); void NewStar(int nIndex); STAR m_star[MAXCOUNT]; void CleanScreen(); BOOL Create(); int m_nID; CWnd* m_pParent; CLyricDlg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(CLyricDlg) enum { IDD = IDD_LYRIC_DIALOG }; // NOTE: the ClassWizard will add data members here //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CLyricDlg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CLyricDlg) virtual void OnCancel(); virtual void OnOK(); afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); afx_msg void OnTimer(UINT nIDEvent); afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnDestroy(); virtual BOOL OnInitDialog(); afx_msg void OnMove(int x, int y); afx_msg void OnPaint(); afx_msg void OnRButtonDown(UINT nFlags, CPoint point); afx_msg void OnHideMain(); afx_msg void OnHideLyric(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_LYRICDLG_H__8799792B_FAD6_4AC3_B8C2_3C47B0B31778__INCLUDED_)
[ "2463710878@qq.com" ]
2463710878@qq.com
8e4e2d89a5e4212f37f62fd01e25171a6ef08fbe
0298da594869a4e8e994ea3c3ce4e16add4534ea
/Atcoder/ABC/E/We_Like_AGC.cpp
14b304d7270fa811825d1c51c472bc4f177ace09
[]
no_license
tsuyosshi/competitive-programming
2d5c749aa115e11f8f64e58a2cba6e322a3ffc73
ed7c696081fd73710ab50b0803153e79159f4eda
refs/heads/master
2023-08-16T03:10:19.989027
2021-10-24T06:19:55
2021-10-24T06:19:55
264,047,491
0
0
null
null
null
null
UTF-8
C++
false
false
1,289
cpp
#include<iostream> #include<algorithm> #include<bitset> #include<cmath> #include<complex> #include<deque> #include<functional> #include<iomanip> #include<iostream> #include<iterator> #include<map> #include<numeric> #include<queue> #include<set> #include<stack> #include<string> #include<unordered_map> #include<unordered_set> #include<utility> #include<vector> using namespace std; typedef long long int ll; const ll mod=1e9+7; int N; char c[5]={' ','A','G','C','T'}; ll mem[110][5][5][5]; bool check(string s){ if(s.find("AGC")!=string::npos)return false; for(int j=0;j<s.size();++j){ string t=s; swap(t[j],t[j+1]); if(t.find("AGC")!=string::npos)return false; } return true; } //A=1,G=2,C=3,T=4; ll calc(int n,int pc,int ppc,int pppc){ if(mem[n][pc][ppc][pppc]!=-1)return mem[n][pc][ppc][pppc]; if(n==N)return 1; ll res=0; string s=""; if(pppc!=0)s+=c[pppc]; if(ppc!=0)s+=c[ppc]; if(pc!=0)s+=c[pc]; for(int i=1;i<=4;++i){ string t=s+c[i]; if(check(t))res+=calc(n+1,i,pc,ppc)%mod; } return mem[n][pc][ppc][pppc]=res%mod; } int main(){ for(int i=0;i<110;++i)for(int j=0;j<5;++j)for(int k=0;k<5;++k)for(int l=0;l<5;++l)mem[i][j][k][l]=-1; cin>>N; cout<<calc(0,0,0,0)<<endl; }
[ "koutarou1276@gmail.com" ]
koutarou1276@gmail.com
f76c8211b58b37300218c3326069aa71ec3a47c7
23d8fa17ee99239638bb18ed71d399397176861a
/InteriorDesigner_iOS(UDT)/Classes/Native/Bulk_System.Xml_3.cpp
5e96ecc8d9c90426c240d21306c9db9fd4860eb8
[]
no_license
Sanders25/InteriorDesigner
3bab4a85083325c9769ba285ddc8f6ac90096ef6
63792d2887a05ccff4357cfcf56e4123c3457809
refs/heads/master
2020-03-15T16:39:18.526487
2018-08-02T12:33:27
2018-08-02T12:33:27
132,239,603
0
0
null
null
null
null
UTF-8
C++
false
false
1,777,299
cpp
#include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <cstring> #include <string.h> #include <stdio.h> #include <cmath> #include <limits> #include <assert.h> #include <stdint.h> #include "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct 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); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2> struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3, typename T4> struct VirtFuncInvoker4 { typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4> struct VirtActionInvoker4 { typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, 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, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2> struct InterfaceActionInvoker2 { typedef void (*Action)(void*, T1, T2, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; // System.Xml.Schema.XmlSchemaRedefine struct XmlSchemaRedefine_t4020109446; // System.Xml.Schema.XmlSchemaExternal struct XmlSchemaExternal_t3074890143; // System.Xml.Schema.XmlSchemaObjectTable struct XmlSchemaObjectTable_t2546974348; // System.Xml.Schema.XmlSchemaObjectCollection struct XmlSchemaObjectCollection_t1064819932; // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t1315720168; // System.Xml.Schema.XmlSchemaObjectEnumerator struct XmlSchemaObjectEnumerator_t503074204; // System.Xml.Schema.XmlSchemaReader struct XmlSchemaReader_t1164558392; // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t791314227; // System.String struct String_t; // System.Exception struct Exception_t; // System.Xml.XmlReader struct XmlReader_t3121518892; // System.Xml.Schema.XmlSchemaAnnotation struct XmlSchemaAnnotation_t2553753397; // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_t2678868104; // System.Xml.Schema.XmlSchemaComplexType struct XmlSchemaComplexType_t3740801802; // System.Xml.Schema.XmlSchemaGroup struct XmlSchemaGroup_t1441741786; // System.Xml.Schema.XmlSchemaAttributeGroup struct XmlSchemaAttributeGroup_t246430545; // System.Xml.Schema.XmlSchemaSequence struct XmlSchemaSequence_t2018345177; // System.Xml.Schema.XmlSchemaGroupBase struct XmlSchemaGroupBase_t3631079376; // System.Xml.Schema.XmlSchema struct XmlSchema_t3742557897; // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t2603549639; // System.Collections.Hashtable struct Hashtable_t1853889766; // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_t3828501457; // System.Collections.CollectionBase struct CollectionBase_t2727926298; // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t427880856; // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2760654312; // System.Xml.Schema.XmlSchemaAny struct XmlSchemaAny_t1119175207; // System.Collections.ArrayList struct ArrayList_t2718874744; // System.Collections.ICollection struct ICollection_t3904884886; // System.Xml.Schema.XmlSchemaGroupRef struct XmlSchemaGroupRef_t1314446647; // System.Xml.Schema.XmlSchemaChoice struct XmlSchemaChoice_t959520675; // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t266093086; // System.Xml.NameTable struct NameTable_t3178203267; // System.Xml.XmlNameTable struct XmlNameTable_t71772148; // System.Xml.XmlUrlResolver struct XmlUrlResolver_t817895037; // System.Xml.Schema.XmlSchemaCompilationSettings struct XmlSchemaCompilationSettings_t2218765537; // System.ArgumentNullException struct ArgumentNullException_t1615371798; // System.Delegate struct Delegate_t1188392813; // System.Xml.XmlResolver struct XmlResolver_t626023767; // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t2797257020; // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t2033747345; // System.Xml.Schema.XmlSchemaSimpleContent struct XmlSchemaSimpleContent_t4264369274; // System.Xml.Schema.XmlSchemaContentModel struct XmlSchemaContentModel_t602185179; // System.Xml.Schema.XmlSchemaContent struct XmlSchemaContent_t1040349258; // System.Xml.Schema.XmlSchemaSimpleContentRestriction struct XmlSchemaSimpleContentRestriction_t2746076865; // System.Xml.Schema.XmlSchemaSimpleContentExtension struct XmlSchemaSimpleContentExtension_t1269327470; // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_t963227996; // System.Type struct Type_t; // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t322714710; // System.Xml.Schema.XmlSchemaAttributeGroupRef struct XmlSchemaAttributeGroupRef_t846390688; // System.Xml.Schema.XmlSchemaMinExclusiveFacet struct XmlSchemaMinExclusiveFacet_t85871952; // System.Xml.Schema.XmlSchemaMinInclusiveFacet struct XmlSchemaMinInclusiveFacet_t18629333; // System.Xml.Schema.XmlSchemaMaxExclusiveFacet struct XmlSchemaMaxExclusiveFacet_t786951263; // System.Xml.Schema.XmlSchemaMaxInclusiveFacet struct XmlSchemaMaxInclusiveFacet_t719708644; // System.Xml.Schema.XmlSchemaTotalDigitsFacet struct XmlSchemaTotalDigitsFacet_t297930215; // System.Xml.Schema.XmlSchemaFractionDigitsFacet struct XmlSchemaFractionDigitsFacet_t2589598443; // System.Xml.Schema.XmlSchemaLengthFacet struct XmlSchemaLengthFacet_t4286280832; // System.Xml.Schema.XmlSchemaMinLengthFacet struct XmlSchemaMinLengthFacet_t686585762; // System.Xml.Schema.XmlSchemaMaxLengthFacet struct XmlSchemaMaxLengthFacet_t2192171319; // System.Xml.Schema.XmlSchemaEnumerationFacet struct XmlSchemaEnumerationFacet_t2156689038; // System.Xml.Schema.XmlSchemaWhiteSpaceFacet struct XmlSchemaWhiteSpaceFacet_t4158372164; // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t3316004401; // System.Xml.Schema.XmlSchemaSimpleTypeList struct XmlSchemaSimpleTypeList_t472803608; // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t599285223; // Mono.Xml.Schema.XsdAnySimpleType struct XsdAnySimpleType_t1257864485; // System.Xml.Schema.XmlSchemaSimpleTypeRestriction struct XmlSchemaSimpleTypeRestriction_t3925451115; // System.Xml.Schema.XmlSchemaSimpleTypeUnion struct XmlSchemaSimpleTypeUnion_t4071426880; // System.Object[] struct ObjectU5BU5D_t2843939325; // System.Xml.Schema.XmlSchemaFacet struct XmlSchemaFacet_t1906017689; // System.Text.StringBuilder struct StringBuilder_t; // System.Text.RegularExpressions.Regex struct Regex_t3657309853; // System.Globalization.CultureInfo struct CultureInfo_t4157843068; // System.IFormatProvider struct IFormatProvider_t2518567562; // System.Xml.IXmlNamespaceResolver struct IXmlNamespaceResolver_t535375154; // System.String[] struct StringU5BU5D_t1281789340; // System.Char[] struct CharU5BU5D_t3528271667; // System.Xml.XmlQualifiedName[] struct XmlQualifiedNameU5BU5D_t1471530361; // System.Xml.Schema.XmlSchemaNumericFacet struct XmlSchemaNumericFacet_t3753040035; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_t2736202052; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t3384741; // System.Xml.Schema.XmlSchemaUnique struct XmlSchemaUnique_t2867867737; // System.Xml.Schema.XmlSchemaIdentityConstraint struct XmlSchemaIdentityConstraint_t297318432; // System.Xml.Schema.XmlSchemaXPath struct XmlSchemaXPath_t3156455507; // System.Xml.XmlParserContext struct XmlParserContext_t2544895291; // System.Xml.Serialization.XmlSerializerNamespaces struct XmlSerializerNamespaces_t2702737953; // System.Xml.XmlDocument struct XmlDocument_t2837193595; // System.Xml.XmlAttribute struct XmlAttribute_t1173852259; // System.ArgumentException struct ArgumentException_t132251570; // System.Collections.IDictionaryEnumerator struct IDictionaryEnumerator_t1693217257; // System.Collections.Specialized.StringCollection struct StringCollection_t167406615; // System.Xml.Schema.XmlSchemaValidationException struct XmlSchemaValidationException_t816160496; // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_t3511258692; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t950877179; // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t418790500; // Mono.Xml.Schema.XsdIdentityPath struct XsdIdentityPath_t991900844; // Mono.Xml.Schema.XsdIdentityPath[] struct XsdIdentityPathU5BU5D_t2466178853; // Mono.Xml.Schema.XsdIdentityStep struct XsdIdentityStep_t1480907129; // System.NullReferenceException struct NullReferenceException_t1023182353; // System.Xml.Serialization.TypeData struct TypeData_t476999220; // System.InvalidOperationException struct InvalidOperationException_t56020091; // System.Reflection.ConstructorInfo struct ConstructorInfo_t5769829; // System.Type[] struct TypeU5BU5D_t3940880105; // System.NotSupportedException struct NotSupportedException_t1314879016; // System.Reflection.PropertyInfo struct PropertyInfo_t; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Reflection.Binder struct Binder_t2999457153; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t2943407543; // System.Reflection.ParameterInfo struct ParameterInfo_t1861056598; // System.Xml.Serialization.XmlAnyAttributeAttribute struct XmlAnyAttributeAttribute_t1449326428; // System.Attribute struct Attribute_t861562559; // System.Xml.Serialization.XmlAnyElementAttribute struct XmlAnyElementAttribute_t4038919363; // System.Xml.Serialization.XmlAttributeAttribute struct XmlAttributeAttribute_t2511360870; // System.Xml.Serialization.XmlElementAttribute struct XmlElementAttribute_t17472343; // System.Xml.Serialization.XmlEnumAttribute struct XmlEnumAttribute_t106705320; // System.Xml.Serialization.XmlIgnoreAttribute struct XmlIgnoreAttribute_t1428424057; // System.Xml.Serialization.XmlNamespaceDeclarationsAttribute struct XmlNamespaceDeclarationsAttribute_t966425202; // System.Xml.Serialization.XmlRootAttribute struct XmlRootAttribute_t2306097217; // System.Xml.Serialization.XmlSchemaProviderAttribute struct XmlSchemaProviderAttribute_t3872582200; // System.Collections.Specialized.ListDictionary struct ListDictionary_t1624492310; // System.Xml.Serialization.XmlTextAttribute struct XmlTextAttribute_t499390083; // System.Xml.XmlNode struct XmlNode_t3767805227; // System.Xml.XmlNameEntryCache struct XmlNameEntryCache_t2890546907; // System.Xml.XmlNameEntry struct XmlNameEntry_t1073099671; // System.Xml.XmlLinkedNode struct XmlLinkedNode_t1437094927; // System.Xml.XmlElement struct XmlElement_t561603118; // System.Xml.XmlException struct XmlException_t1761730631; // System.Xml.Schema.IXmlSchemaInfo struct IXmlSchemaInfo_t934654762; // Mono.Xml.DTDAttributeDefinition struct DTDAttributeDefinition_t3434905422; // System.Xml.XmlDocumentType struct XmlDocumentType_t4112370061; // Mono.Xml.DTDObjectModel struct DTDObjectModel_t1729680289; // Mono.Xml.DTDAttListDeclarationCollection struct DTDAttListDeclarationCollection_t2220366188; // Mono.Xml.DTDAttListDeclaration struct DTDAttListDeclaration_t3593159715; // System.Collections.Generic.KeyValuePair`2<System.String,Mono.Xml.DTDNode>[] struct KeyValuePair_2U5BU5D_t3368185270; // System.Int32[] struct Int32U5BU5D_t385246372; // System.Collections.Generic.Link[] struct LinkU5BU5D_t964245573; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t3954782707; // System.Collections.Generic.Dictionary`2/Transform`1<System.String,System.Int32,System.Collections.DictionaryEntry> struct Transform_1_t3530625384; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t435877138; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t2405853701; // System.Globalization.TextInfo struct TextInfo_t3810425522; // System.Globalization.CompareInfo struct CompareInfo_t1092934962; // System.Globalization.Calendar[] struct CalendarU5BU5D_t3985046076; // System.Globalization.Calendar struct Calendar_t1661121569; // System.Byte[] struct ByteU5BU5D_t4116647657; // System.Int32 struct Int32_t2950945753; // System.Void struct Void_t1185182177; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t2171992254; // System.Xml.XmlNamespaceManager/NsDecl[] struct NsDeclU5BU5D_t2116608150; // System.Xml.XmlNamespaceManager/NsScope[] struct NsScopeU5BU5D_t382374428; // System.Xml.XmlNode/EmptyNodeList struct EmptyNodeList_t139615908; // System.Xml.XmlNodeListChildren struct XmlNodeListChildren_t1082692789; // System.Collections.Specialized.ListDictionary/DictionaryNode struct DictionaryNode_t417719465; // System.Collections.IComparer struct IComparer_t1540313114; // Mono.Xml.DTDAutomataFactory struct DTDAutomataFactory_t2958275022; // Mono.Xml.DTDElementAutomata struct DTDElementAutomata_t1050190167; // Mono.Xml.DTDEmptyAutomata struct DTDEmptyAutomata_t465590953; // Mono.Xml.DTDAnyAutomata struct DTDAnyAutomata_t3633486160; // Mono.Xml.DTDInvalidAutomata struct DTDInvalidAutomata_t1406553220; // Mono.Xml.DTDElementDeclarationCollection struct DTDElementDeclarationCollection_t222313714; // Mono.Xml.DTDParameterEntityDeclarationCollection struct DTDParameterEntityDeclarationCollection_t2844734410; // Mono.Xml.DTDEntityDeclarationCollection struct DTDEntityDeclarationCollection_t2250844513; // Mono.Xml.DTDNotationDeclarationCollection struct DTDNotationDeclarationCollection_t959292105; // Mono.Xml.Schema.XsdIdentityStep[] struct XsdIdentityStepU5BU5D_t2964233348; // System.Collections.Hashtable/Slot[] struct SlotU5BU5D_t2994659099; // System.Collections.Hashtable/HashKeys struct HashKeys_t1568156503; // System.Collections.Hashtable/HashValues struct HashValues_t618387445; // System.Collections.IHashCodeProvider struct IHashCodeProvider_t267601189; // System.Collections.IEqualityComparer struct IEqualityComparer_t1493878338; // System.Collections.IEnumerator struct IEnumerator_t1853284238; // System.Xml.XmlReaderBinarySupport struct XmlReaderBinarySupport_t1809665003; // System.Xml.XmlReaderSettings struct XmlReaderSettings_t2186285234; // System.Collections.Specialized.HybridDictionary struct HybridDictionary_t4070033136; // System.IntPtr[] struct IntPtrU5BU5D_t4013366056; // System.Collections.IDictionary struct IDictionary_t1363984059; // System.Byte struct Byte_t1134296376; // System.Double struct Double_t594665363; // System.UInt16 struct UInt16_t2177724958; // System.Xml.XmlImplementation struct XmlImplementation_t254178875; // System.Xml.XmlNodeChangedEventHandler struct XmlNodeChangedEventHandler_t1533444722; // System.Net.ICredentials struct ICredentials_t725721261; // System.Security.Cryptography.RandomNumberGenerator struct RandomNumberGenerator_t386037858; // System.Xml.NameTable/Entry[] struct EntryU5BU5D_t491982174; // System.Boolean[] struct BooleanU5BU5D_t2897418192; // System.DelegateData struct DelegateData_t1677132599; // System.Xml.XmlAttributeCollection struct XmlAttributeCollection_t2316283784; // System.Xml.XmlNamedNodeMap struct XmlNamedNodeMap_t2821286253; // System.Text.Encoding struct Encoding_t1523322056; // System.Reflection.MemberInfo struct MemberInfo_t; // System.Reflection.Emit.UnmanagedMarshal struct UnmanagedMarshal_t984015687; // System.Text.RegularExpressions.FactoryCache struct FactoryCache_t2327118887; // System.Text.RegularExpressions.IMachineFactory struct IMachineFactory_t1209798546; // Mono.Xml.Schema.XsdString struct XsdString_t3049094358; // Mono.Xml.Schema.XsdNormalizedString struct XsdNormalizedString_t3260789355; // Mono.Xml.Schema.XsdToken struct XsdToken_t1239036978; // Mono.Xml.Schema.XsdLanguage struct XsdLanguage_t1876291273; // Mono.Xml.Schema.XsdNMToken struct XsdNMToken_t834691671; // Mono.Xml.Schema.XsdNMTokens struct XsdNMTokens_t4246953255; // Mono.Xml.Schema.XsdName struct XsdName_t2755146808; // Mono.Xml.Schema.XsdNCName struct XsdNCName_t3943159043; // Mono.Xml.Schema.XsdID struct XsdID_t34704195; // Mono.Xml.Schema.XsdIDRef struct XsdIDRef_t2913612829; // Mono.Xml.Schema.XsdIDRefs struct XsdIDRefs_t16099206; // Mono.Xml.Schema.XsdEntity struct XsdEntity_t3956505874; // Mono.Xml.Schema.XsdEntities struct XsdEntities_t1477210398; // Mono.Xml.Schema.XsdNotation struct XsdNotation_t2827634056; // Mono.Xml.Schema.XsdDecimal struct XsdDecimal_t1288601093; // Mono.Xml.Schema.XsdInteger struct XsdInteger_t2044766898; // Mono.Xml.Schema.XsdLong struct XsdLong_t1324632828; // Mono.Xml.Schema.XsdInt struct XsdInt_t33917785; // Mono.Xml.Schema.XsdShort struct XsdShort_t3489811876; // Mono.Xml.Schema.XsdByte struct XsdByte_t2221093920; // Mono.Xml.Schema.XsdNonNegativeInteger struct XsdNonNegativeInteger_t308064234; // Mono.Xml.Schema.XsdPositiveInteger struct XsdPositiveInteger_t1704031413; // Mono.Xml.Schema.XsdUnsignedLong struct XsdUnsignedLong_t1409593434; // Mono.Xml.Schema.XsdUnsignedInt struct XsdUnsignedInt_t72105793; // Mono.Xml.Schema.XsdUnsignedShort struct XsdUnsignedShort_t3654069686; // Mono.Xml.Schema.XsdUnsignedByte struct XsdUnsignedByte_t2304219558; // Mono.Xml.Schema.XsdNonPositiveInteger struct XsdNonPositiveInteger_t1029055398; // Mono.Xml.Schema.XsdNegativeInteger struct XsdNegativeInteger_t2178753546; // Mono.Xml.Schema.XsdFloat struct XsdFloat_t3181928905; // Mono.Xml.Schema.XsdDouble struct XsdDouble_t3324344982; // Mono.Xml.Schema.XsdBase64Binary struct XsdBase64Binary_t3360383190; // Mono.Xml.Schema.XsdBoolean struct XsdBoolean_t380164876; // Mono.Xml.Schema.XsdAnyURI struct XsdAnyURI_t2755748070; // Mono.Xml.Schema.XsdDuration struct XsdDuration_t1555973170; // Mono.Xml.Schema.XsdDateTime struct XsdDateTime_t2563698975; // Mono.Xml.Schema.XsdDate struct XsdDate_t1417753656; // Mono.Xml.Schema.XsdTime struct XsdTime_t3558487088; // Mono.Xml.Schema.XsdHexBinary struct XsdHexBinary_t882812470; // Mono.Xml.Schema.XsdQName struct XsdQName_t2385631467; // Mono.Xml.Schema.XsdGYearMonth struct XsdGYearMonth_t3399073121; // Mono.Xml.Schema.XsdGMonthDay struct XsdGMonthDay_t2605134399; // Mono.Xml.Schema.XsdGYear struct XsdGYear_t3316212116; // Mono.Xml.Schema.XsdGMonth struct XsdGMonth_t3913018815; // Mono.Xml.Schema.XsdGDay struct XsdGDay_t293490745; // Mono.Xml.Schema.XdtAnyAtomicType struct XdtAnyAtomicType_t269366253; // Mono.Xml.Schema.XdtUntypedAtomic struct XdtUntypedAtomic_t1388131523; // Mono.Xml.Schema.XdtDayTimeDuration struct XdtDayTimeDuration_t268779858; // Mono.Xml.Schema.XdtYearMonthDuration struct XdtYearMonthDuration_t1503718519; // System.Xml.XmlAttribute[] struct XmlAttributeU5BU5D_t1490365106; // System.Reflection.MemberFilter struct MemberFilter_t426314064; // Mono.Xml.Schema.XsdWildcard struct XsdWildcard_t2790389089; // Mono.Xml.Schema.XsdIdentitySelector struct XsdIdentitySelector_t574258590; // System.Xml.Schema.ValidationEventArgs struct ValidationEventArgs_t2784773869; // System.IAsyncResult struct IAsyncResult_t767004451; // System.AsyncCallback struct AsyncCallback_t3962456242; // System.Xml.Schema.XmlSchemaSimpleType[] struct XmlSchemaSimpleTypeU5BU5D_t1394089049; // System.Text.RegularExpressions.Regex[] struct RegexU5BU5D_t1561692752; extern RuntimeClass* XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaRedefine__ctor_m920169286_MetadataUsageId; extern RuntimeClass* IDisposable_t3640265483_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaRedefine_SetParent_m1836653862_MetadataUsageId; extern RuntimeClass* XmlSchemaRedefine_t4020109446_il2cpp_TypeInfo_var; extern RuntimeClass* String_t_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1569427300; extern String_t* _stringLiteral3379208704; extern String_t* _stringLiteral1629453411; extern String_t* _stringLiteral3454449607; extern String_t* _stringLiteral4101407196; extern String_t* _stringLiteral3929236445; extern String_t* _stringLiteral2952131434; extern String_t* _stringLiteral567928159; extern String_t* _stringLiteral1102688753; extern String_t* _stringLiteral1113390247; extern String_t* _stringLiteral2444421609; extern String_t* _stringLiteral3122773422; extern String_t* _stringLiteral400592889; extern const uint32_t XmlSchemaRedefine_Read_m1202760073_MetadataUsageId; extern const uint32_t XmlSchemaSequence__ctor_m2088825835_MetadataUsageId; extern const uint32_t XmlSchemaSequence_SetParent_m4014962768_MetadataUsageId; extern RuntimeClass* Guid_t_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaElement_t427880856_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaGroupRef_t1314446647_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaChoice_t959520675_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaAny_t1119175207_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1001627974; extern const uint32_t XmlSchemaSequence_Compile_m3478356094_MetadataUsageId; extern RuntimeClass* Decimal_t2948259380_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSequence_GetOptimizedParticle_m2174831162_MetadataUsageId; extern const uint32_t XmlSchemaSequence_Validate_m1924671964_MetadataUsageId; extern RuntimeClass* XmlSchemaAll_t1118454309_il2cpp_TypeInfo_var; extern RuntimeClass* XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1711926346; extern String_t* _stringLiteral1357803242; extern String_t* _stringLiteral4003800678; extern String_t* _stringLiteral3026504829; extern const uint32_t XmlSchemaSequence_ValidateDerivationByRestriction_m3468271002_MetadataUsageId; extern const uint32_t XmlSchemaSequence_ValidateUPAOnHeadingOptionalComponents_m2072039233_MetadataUsageId; extern RuntimeClass* ArrayList_t2718874744_il2cpp_TypeInfo_var; extern RuntimeClass* IEnumerable_t1941168011_il2cpp_TypeInfo_var; extern RuntimeClass* IEnumerator_t1853284238_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSequence_ValidateUPAOnItems_m3453552008_MetadataUsageId; extern const uint32_t XmlSchemaSequence_ValidateUniqueTypeAttribution_m176015213_MetadataUsageId; extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var; extern String_t* _stringLiteral3810116474; extern String_t* _stringLiteral2182914272; extern String_t* _stringLiteral660438115; extern String_t* _stringLiteral1495269871; extern String_t* _stringLiteral837243573; extern String_t* _stringLiteral2227061191; extern String_t* _stringLiteral3509310898; extern String_t* _stringLiteral3679593333; extern String_t* _stringLiteral4059539929; extern String_t* _stringLiteral2342829633; extern String_t* _stringLiteral2600730716; extern const uint32_t XmlSchemaSequence_Read_m4225823128_MetadataUsageId; extern RuntimeClass* NameTable_t3178203267_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSet__ctor_m2333710421_MetadataUsageId; extern RuntimeClass* XmlUrlResolver_t817895037_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaCompilationSettings_t2218765537_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentNullException_t1615371798_il2cpp_TypeInfo_var; extern const RuntimeMethod* XmlSchemaSet__ctor_m1305906686_RuntimeMethod_var; extern String_t* _stringLiteral2315872071; extern const uint32_t XmlSchemaSet__ctor_m1305906686_MetadataUsageId; extern RuntimeClass* ValidationEventHandler_t791314227_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSet_add_ValidationEventHandler_m752947157_MetadataUsageId; extern const uint32_t XmlSchemaSet_remove_ValidationEventHandler_m2549812285_MetadataUsageId; extern const uint32_t XmlSchemaSet_get_GlobalAttributes_m3274158681_MetadataUsageId; extern const uint32_t XmlSchemaSet_get_GlobalElements_m2135414308_MetadataUsageId; extern const uint32_t XmlSchemaSet_get_GlobalTypes_m149850861_MetadataUsageId; extern RuntimeClass* Hashtable_t1853889766_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSet_get_IDCollection_m1289038672_MetadataUsageId; extern const uint32_t XmlSchemaSet_get_NamedIdentities_m132058982_MetadataUsageId; extern RuntimeClass* XmlSchema_t3742557897_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSet_Compile_m1310515789_MetadataUsageId; extern RuntimeClass* XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaType_t2033747345_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSet_AddGlobalComponents_m2268750022_MetadataUsageId; extern const uint32_t XmlSchemaSet_Contains_m2963568736_MetadataUsageId; extern const uint32_t XmlSchemaSet_Contains_m1201416344_MetadataUsageId; extern const uint32_t XmlSchemaSet_GetSafeNs_m1979379821_MetadataUsageId; extern const uint32_t XmlSchemaSet_Schemas_m844252656_MetadataUsageId; extern const uint32_t XmlSchemaSet_MissedSubComponents_m3092777572_MetadataUsageId; extern RuntimeClass* XmlSchemaSimpleContentRestriction_t2746076865_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaSimpleContentExtension_t1269327470_il2cpp_TypeInfo_var; extern String_t* _stringLiteral3330369379; extern String_t* _stringLiteral266961209; extern const uint32_t XmlSchemaSimpleContent_Compile_m2443699014_MetadataUsageId; extern RuntimeClass* XmlSchemaSimpleContent_t4264369274_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2185284321; extern String_t* _stringLiteral1679281052; extern String_t* _stringLiteral686815707; extern String_t* _stringLiteral3091022275; extern String_t* _stringLiteral1564059052; extern String_t* _stringLiteral1610623306; extern const uint32_t XmlSchemaSimpleContent_Read_m1989264058_MetadataUsageId; extern const uint32_t XmlSchemaSimpleContentExtension__ctor_m1443673690_MetadataUsageId; extern const uint32_t XmlSchemaSimpleContentExtension_SetParent_m2420538722_MetadataUsageId; extern RuntimeClass* XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var; extern String_t* _stringLiteral3940459944; extern String_t* _stringLiteral4006777570; extern String_t* _stringLiteral468328884; extern const uint32_t XmlSchemaSimpleContentExtension_Compile_m1060479711_MetadataUsageId; extern RuntimeClass* XmlSchemaComplexContent_t3528540772_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2576403314; extern String_t* _stringLiteral944206075; extern String_t* _stringLiteral508009477; extern String_t* _stringLiteral1962955403; extern const uint32_t XmlSchemaSimpleContentExtension_Validate_m2229865688_MetadataUsageId; extern String_t* _stringLiteral1513614340; extern String_t* _stringLiteral2838662761; extern String_t* _stringLiteral494350233; extern String_t* _stringLiteral1832989167; extern String_t* _stringLiteral871133995; extern String_t* _stringLiteral4158421234; extern String_t* _stringLiteral1080123703; extern const uint32_t XmlSchemaSimpleContentExtension_Read_m47318261_MetadataUsageId; extern const uint32_t XmlSchemaSimpleContentRestriction__ctor_m1686457861_MetadataUsageId; extern const uint32_t XmlSchemaSimpleContentRestriction_SetParent_m659227478_MetadataUsageId; extern String_t* _stringLiteral1667411732; extern const uint32_t XmlSchemaSimpleContentRestriction_Compile_m2649237347_MetadataUsageId; extern const uint32_t XmlSchemaSimpleContentRestriction_Validate_m4279615195_MetadataUsageId; extern String_t* _stringLiteral1885059610; extern String_t* _stringLiteral3376851224; extern String_t* _stringLiteral1937547486; extern String_t* _stringLiteral3338794825; extern String_t* _stringLiteral739112347; extern String_t* _stringLiteral541665163; extern String_t* _stringLiteral2236949981; extern String_t* _stringLiteral1504613137; extern String_t* _stringLiteral3402114229; extern String_t* _stringLiteral1212500642; extern String_t* _stringLiteral3866161938; extern String_t* _stringLiteral1329154644; extern String_t* _stringLiteral733314043; extern String_t* _stringLiteral1492323255; extern String_t* _stringLiteral2326546891; extern const uint32_t XmlSchemaSimpleContentRestriction_Read_m2754874039_MetadataUsageId; extern RuntimeClass* XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var; extern String_t* _stringLiteral723171524; extern String_t* _stringLiteral3319458126; extern String_t* _stringLiteral1236128813; extern String_t* _stringLiteral228529742; extern String_t* _stringLiteral2033559650; extern String_t* _stringLiteral807124363; extern String_t* _stringLiteral1235497039; extern String_t* _stringLiteral1501416449; extern String_t* _stringLiteral3798050081; extern String_t* _stringLiteral63249541; extern String_t* _stringLiteral1272578818; extern String_t* _stringLiteral2722193337; extern String_t* _stringLiteral110852430; extern String_t* _stringLiteral2834935051; extern String_t* _stringLiteral3447975646; extern String_t* _stringLiteral3593584042; extern String_t* _stringLiteral841379268; extern String_t* _stringLiteral1671489303; extern String_t* _stringLiteral2799480295; extern String_t* _stringLiteral215120649; extern String_t* _stringLiteral3244750353; extern String_t* _stringLiteral2005331395; extern String_t* _stringLiteral2143290860; extern String_t* _stringLiteral4080338551; extern String_t* _stringLiteral62725275; extern String_t* _stringLiteral996260479; extern String_t* _stringLiteral3456546791; extern String_t* _stringLiteral3671082123; extern String_t* _stringLiteral2851744811; extern String_t* _stringLiteral1572351178; extern String_t* _stringLiteral3820814978; extern String_t* _stringLiteral4120511215; extern String_t* _stringLiteral2409402648; extern String_t* _stringLiteral2553676557; extern String_t* _stringLiteral1535819814; extern String_t* _stringLiteral1274151684; extern String_t* _stringLiteral3835929719; extern String_t* _stringLiteral1873420042; extern String_t* _stringLiteral3755388189; extern String_t* _stringLiteral3873205229; extern String_t* _stringLiteral3773869350; extern String_t* _stringLiteral425891063; extern String_t* _stringLiteral724378170; extern String_t* _stringLiteral3716671661; extern String_t* _stringLiteral622047031; extern String_t* _stringLiteral1777380071; extern const uint32_t XmlSchemaSimpleType__cctor_m4166403846_MetadataUsageId; extern const uint32_t XmlSchemaSimpleType_BuildSchemaType_m3396760451_MetadataUsageId; extern String_t* _stringLiteral91702; extern const uint32_t XmlSchemaSimpleType_BuildSchemaType_m161812030_MetadataUsageId; extern RuntimeClass* XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSimpleType_get_AnySimpleType_m3105451177_MetadataUsageId; extern RuntimeClass* XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1825648505; extern String_t* _stringLiteral4263328786; extern String_t* _stringLiteral4277788981; extern String_t* _stringLiteral2121463973; extern String_t* _stringLiteral2386987764; extern String_t* _stringLiteral494358324; extern const uint32_t XmlSchemaSimpleType_Compile_m3035122963_MetadataUsageId; extern const uint32_t XmlSchemaSimpleType_CollectBaseType_m3045110927_MetadataUsageId; extern String_t* _stringLiteral3707278166; extern String_t* _stringLiteral1892207345; extern String_t* _stringLiteral187116341; extern const uint32_t XmlSchemaSimpleType_Validate_m2924628612_MetadataUsageId; extern RuntimeClass* XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaLengthFacet_t4286280832_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMaxLengthFacet_t2192171319_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMinLengthFacet_t686585762_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaEnumerationFacet_t2156689038_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1002729513; extern String_t* _stringLiteral1784447688; extern String_t* _stringLiteral2929388584; extern const uint32_t XmlSchemaSimpleType_ValidateDerivationValid_m431215739_MetadataUsageId; extern String_t* _stringLiteral573193253; extern String_t* _stringLiteral1470549572; extern const uint32_t XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113_MetadataUsageId; extern String_t* _stringLiteral1307725358; extern String_t* _stringLiteral2379696392; extern String_t* _stringLiteral2853295071; extern String_t* _stringLiteral62725243; extern String_t* _stringLiteral94847583; extern String_t* _stringLiteral2310844148; extern String_t* _stringLiteral3941568111; extern String_t* _stringLiteral1991705772; extern const uint32_t XmlSchemaSimpleType_Read_m1629189972_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeList__ctor_m468630537_MetadataUsageId; extern String_t* _stringLiteral520028258; extern String_t* _stringLiteral3015152753; extern String_t* _stringLiteral343863411; extern const uint32_t XmlSchemaSimpleTypeList_Compile_m2478526433_MetadataUsageId; extern String_t* _stringLiteral3470389865; extern String_t* _stringLiteral1256501891; extern String_t* _stringLiteral2086747346; extern const uint32_t XmlSchemaSimpleTypeList_Validate_m3630859097_MetadataUsageId; extern String_t* _stringLiteral2600357199; extern String_t* _stringLiteral2355854968; extern String_t* _stringLiteral2281214833; extern String_t* _stringLiteral569633848; extern String_t* _stringLiteral3585894194; extern const uint32_t XmlSchemaSimpleTypeList_Read_m3988772706_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction__ctor_m666597917_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction__cctor_m3766107797_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_SetParent_m1234062005_MetadataUsageId; extern String_t* _stringLiteral2934311481; extern String_t* _stringLiteral934947509; extern String_t* _stringLiteral2154803466; extern const uint32_t XmlSchemaSimpleTypeRestriction_Compile_m1536568546_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703_MetadataUsageId; extern const RuntimeType* String_t_0_0_0_var; extern RuntimeClass* Facet_t1501039206_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMinInclusiveFacet_t18629333_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMaxInclusiveFacet_t719708644_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMinExclusiveFacet_t85871952_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaMaxExclusiveFacet_t786951263_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaFractionDigitsFacet_t2589598443_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaTotalDigitsFacet_t297930215_il2cpp_TypeInfo_var; extern RuntimeClass* Type_t_il2cpp_TypeInfo_var; extern RuntimeClass* StringU5BU5D_t1281789340_il2cpp_TypeInfo_var; extern RuntimeClass* RegexU5BU5D_t1561692752_il2cpp_TypeInfo_var; extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; extern RuntimeClass* Regex_t3657309853_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2180999159; extern String_t* _stringLiteral1123395259; extern String_t* _stringLiteral1718953828; extern String_t* _stringLiteral283470520; extern String_t* _stringLiteral3425514694; extern String_t* _stringLiteral2884745856; extern String_t* _stringLiteral2746146912; extern String_t* _stringLiteral3452614642; extern String_t* _stringLiteral3452614524; extern String_t* _stringLiteral1028670485; extern const uint32_t XmlSchemaSimpleTypeRestriction_Validate_m2375296915_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265_MetadataUsageId; extern RuntimeClass* CultureInfo_t4157843068_il2cpp_TypeInfo_var; extern RuntimeClass* ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var; extern RuntimeClass* FormatException_t154580423_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2590212315; extern String_t* _stringLiteral1172177825; extern String_t* _stringLiteral2192880968; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkTotalDigitsFacet_m1136086706_MetadataUsageId; extern String_t* _stringLiteral1726927879; extern String_t* _stringLiteral753924833; extern String_t* _stringLiteral1240579558; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkFractionDigitsFacet_m4137464669_MetadataUsageId; extern String_t* _stringLiteral2549327768; extern String_t* _stringLiteral3585617076; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245_MetadataUsageId; extern String_t* _stringLiteral4170909774; extern String_t* _stringLiteral1229679628; extern String_t* _stringLiteral1775556457; extern String_t* _stringLiteral2442382986; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkLengthFacet_m552154258_MetadataUsageId; extern String_t* _stringLiteral294320515; extern String_t* _stringLiteral540084440; extern String_t* _stringLiteral2871821241; extern String_t* _stringLiteral2963537204; extern String_t* _stringLiteral4220897066; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkMaxLengthFacet_m1519094515_MetadataUsageId; extern String_t* _stringLiteral2664361801; extern String_t* _stringLiteral2599391607; extern String_t* _stringLiteral3360720419; extern const uint32_t XmlSchemaSimpleTypeRestriction_checkMinLengthFacet_m3798454509_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_getDatatype_m687103007_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateValueWithDatatype_m3322151548_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateValueWithFacets_m2411738315_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacets_m932200076_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacetsCore_m714256667_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacets_m3279012679_MetadataUsageId; extern RuntimeClass* XsdQName_t2385631467_il2cpp_TypeInfo_var; extern RuntimeClass* XsdNotation_t2827634056_il2cpp_TypeInfo_var; extern RuntimeClass* CharU5BU5D_t3528271667_il2cpp_TypeInfo_var; extern RuntimeClass* OverflowException_t2020128637_il2cpp_TypeInfo_var; extern RuntimeField* U3CPrivateImplementationDetailsU3E_t3057255363____U24U24fieldU2D44_7_FieldInfo_var; extern String_t* _stringLiteral3452614530; extern const uint32_t XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacetsCore_m1733844805_MetadataUsageId; extern String_t* _stringLiteral1928233972; extern String_t* _stringLiteral5564326; extern const uint32_t XmlSchemaSimpleTypeRestriction_Read_m102524905_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeUnion__ctor_m2055690608_MetadataUsageId; extern const uint32_t XmlSchemaSimpleTypeUnion_SetParent_m2572616251_MetadataUsageId; extern String_t* _stringLiteral244141461; extern String_t* _stringLiteral389571946; extern String_t* _stringLiteral598023171; extern const uint32_t XmlSchemaSimpleTypeUnion_Compile_m1320743964_MetadataUsageId; extern RuntimeClass* XmlSchemaSimpleTypeU5BU5D_t1394089049_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaSimpleTypeUnion_Validate_m1719836172_MetadataUsageId; extern RuntimeClass* XmlQualifiedNameU5BU5D_t1471530361_il2cpp_TypeInfo_var; extern String_t* _stringLiteral3345561586; extern String_t* _stringLiteral3729848572; extern String_t* _stringLiteral3452614521; extern String_t* _stringLiteral1882176568; extern String_t* _stringLiteral1850858467; extern String_t* _stringLiteral2039531736; extern const uint32_t XmlSchemaSimpleTypeUnion_Read_m4121525525_MetadataUsageId; extern String_t* _stringLiteral405320503; extern String_t* _stringLiteral1709130670; extern String_t* _stringLiteral2455250758; extern String_t* _stringLiteral3493618073; extern String_t* _stringLiteral3539998349; extern String_t* _stringLiteral175443087; extern const uint32_t XmlSchemaTotalDigitsFacet_Read_m2720747555_MetadataUsageId; extern const uint32_t XmlSchemaType__ctor_m3211054051_MetadataUsageId; extern const uint32_t XmlSchemaType_get_BaseSchemaType_m3936227521_MetadataUsageId; extern RuntimeClass* Dictionary_2_t2736202052_il2cpp_TypeInfo_var; extern const RuntimeMethod* Dictionary_2__ctor_m2392909825_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_Add_m282647386_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var; extern String_t* _stringLiteral3245737591; extern String_t* _stringLiteral3665773707; extern String_t* _stringLiteral4276600584; extern const uint32_t XmlSchemaType_GetBuiltInSimpleType_m1336857001_MetadataUsageId; extern const uint32_t XmlSchemaType_GetBuiltInSimpleType_m1138863932_MetadataUsageId; extern const uint32_t XmlSchemaType_ValidateRecursionCheck_m3062154423_MetadataUsageId; extern RuntimeClass* XmlSchemaUnique_t2867867737_il2cpp_TypeInfo_var; extern String_t* _stringLiteral379716803; extern String_t* _stringLiteral1289618267; extern String_t* _stringLiteral1128514160; extern String_t* _stringLiteral3782410657; extern String_t* _stringLiteral3977229295; extern String_t* _stringLiteral3110369597; extern String_t* _stringLiteral1414807323; extern const uint32_t XmlSchemaUnique_Read_m1197168435_MetadataUsageId; extern String_t* _stringLiteral2399705350; extern String_t* _stringLiteral4119301762; extern const uint32_t XmlSchemaUtil__cctor_m362847947_MetadataUsageId; extern String_t* _stringLiteral380354181; extern String_t* _stringLiteral2645476880; extern String_t* _stringLiteral4177923708; extern const uint32_t XmlSchemaUtil_AddToTable_m2760389917_MetadataUsageId; extern String_t* _stringLiteral947320159; extern String_t* _stringLiteral3678022378; extern const uint32_t XmlSchemaUtil_CompileID_m928148374_MetadataUsageId; extern String_t* _stringLiteral3450320765; extern const uint32_t XmlSchemaUtil_CheckAnyUri_m1406321190_MetadataUsageId; extern RuntimeClass* XmlChar_t3816087079_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaUtil_CheckNCName_m1273109950_MetadataUsageId; extern RuntimeClass* IHasXmlParserContext_t1330489402_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaUtil_GetParserContext_m769704433_MetadataUsageId; extern const uint32_t XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516_MetadataUsageId; extern const RuntimeType* XsdDecimal_t1288601093_0_0_0_var; extern const RuntimeType* XsdInteger_t2044766898_0_0_0_var; extern const RuntimeType* XsdNonNegativeInteger_t308064234_0_0_0_var; extern RuntimeClass* XsdFloat_t3181928905_il2cpp_TypeInfo_var; extern RuntimeClass* Convert_t2465617642_il2cpp_TypeInfo_var; extern RuntimeClass* XsdDouble_t3324344982_il2cpp_TypeInfo_var; extern RuntimeClass* XsdDecimal_t1288601093_il2cpp_TypeInfo_var; extern RuntimeClass* XsdNonPositiveInteger_t1029055398_il2cpp_TypeInfo_var; extern RuntimeClass* XsdPositiveInteger_t1704031413_il2cpp_TypeInfo_var; extern RuntimeClass* XsdUnsignedLong_t1409593434_il2cpp_TypeInfo_var; extern RuntimeClass* XsdNonNegativeInteger_t308064234_il2cpp_TypeInfo_var; extern RuntimeClass* XsdLong_t1324632828_il2cpp_TypeInfo_var; extern RuntimeClass* XsdString_t3049094358_il2cpp_TypeInfo_var; extern RuntimeClass* XsdNMToken_t834691671_il2cpp_TypeInfo_var; extern RuntimeClass* XsdLanguage_t1876291273_il2cpp_TypeInfo_var; extern RuntimeClass* XsdName_t2755146808_il2cpp_TypeInfo_var; extern RuntimeClass* XsdID_t34704195_il2cpp_TypeInfo_var; extern RuntimeClass* XsdIDRef_t2913612829_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075_MetadataUsageId; extern const uint32_t XmlSchemaUtil_IsValidQName_m1652922650_MetadataUsageId; extern const uint32_t XmlSchemaUtil_SplitList_m1641535596_MetadataUsageId; extern RuntimeClass* XmlDocument_t2837193595_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaUtil_ReadUnhandledAttribute_m1314733484_MetadataUsageId; extern RuntimeClass* TypeTranslator_t3446962748_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2642259686; extern String_t* _stringLiteral1268591600; extern String_t* _stringLiteral3452614550; extern const uint32_t XmlSchemaUtil_ParseWsdlArrayType_m829317714_MetadataUsageId; extern RuntimeClass* XmlConvert_t1981561327_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaUtil_ReadBoolAttribute_m854567538_MetadataUsageId; extern String_t* _stringLiteral1201842075; extern String_t* _stringLiteral184942760; extern String_t* _stringLiteral2745271269; extern String_t* _stringLiteral774901618; extern String_t* _stringLiteral3452614528; extern String_t* _stringLiteral208398801; extern const uint32_t XmlSchemaUtil_ReadDerivationAttribute_m214019534_MetadataUsageId; extern RuntimeClass* XmlSchemaDerivationMethod_t1774354337_il2cpp_TypeInfo_var; extern RuntimeClass* ArgumentException_t132251570_il2cpp_TypeInfo_var; extern const RuntimeMethod* XmlSchemaUtil_AddFlag_m1779127340_RuntimeMethod_var; extern String_t* _stringLiteral2996387899; extern String_t* _stringLiteral3813539861; extern const uint32_t XmlSchemaUtil_AddFlag_m1779127340_MetadataUsageId; extern String_t* _stringLiteral902390592; extern String_t* _stringLiteral2330303858; extern String_t* _stringLiteral3335151820; extern const uint32_t XmlSchemaUtil_ReadFormAttribute_m3742436596_MetadataUsageId; extern String_t* _stringLiteral4166618054; extern String_t* _stringLiteral1237242930; extern String_t* _stringLiteral3899542042; extern String_t* _stringLiteral1692827541; extern const uint32_t XmlSchemaUtil_ReadProcessingAttribute_m3384867792_MetadataUsageId; extern String_t* _stringLiteral2882589497; extern String_t* _stringLiteral3075801354; extern String_t* _stringLiteral1046445807; extern String_t* _stringLiteral1092366554; extern const uint32_t XmlSchemaUtil_ReadUseAttribute_m564872701_MetadataUsageId; extern const uint32_t XmlSchemaUtil_ReadQNameAttribute_m567024358_MetadataUsageId; extern String_t* _stringLiteral3804845809; extern String_t* _stringLiteral3886925816; extern String_t* _stringLiteral1643173988; extern const uint32_t XmlSchemaUtil_ToQName_m3017013972_MetadataUsageId; extern RuntimeClass* DictionaryEntry_t3123975638_il2cpp_TypeInfo_var; extern RuntimeClass* XmlSchemaAnyAttribute_t963227996_il2cpp_TypeInfo_var; extern String_t* _stringLiteral675022115; extern String_t* _stringLiteral2937021657; extern String_t* _stringLiteral65512210; extern const uint32_t XmlSchemaUtil_ValidateAttributesResolved_m3601546758_MetadataUsageId; extern const uint32_t XmlSchemaUtil_AreAttributesEqual_m2698191758_MetadataUsageId; extern const uint32_t XmlSchemaUtil_FindAttributeDeclaration_m1889570336_MetadataUsageId; extern const uint32_t XmlSchemaUtil_AttributeWildcardItemValid_m34123625_MetadataUsageId; extern const uint32_t XmlSchemaWhiteSpaceFacet__ctor_m1190861561_MetadataUsageId; extern RuntimeClass* XmlSchemaWhiteSpaceFacet_t4158372164_il2cpp_TypeInfo_var; extern String_t* _stringLiteral1471754589; extern String_t* _stringLiteral681123123; extern String_t* _stringLiteral2675440743; extern const uint32_t XmlSchemaWhiteSpaceFacet_Read_m1012238860_MetadataUsageId; extern RuntimeClass* XmlNamespaceManager_t418790500_il2cpp_TypeInfo_var; extern RuntimeClass* XsdIdentityPath_t991900844_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaXPath_Compile_m528363123_MetadataUsageId; extern const RuntimeType* XsdIdentityPath_t991900844_0_0_0_var; extern RuntimeClass* XsdIdentityPathU5BU5D_t2466178853_il2cpp_TypeInfo_var; extern const uint32_t XmlSchemaXPath_ParseExpression_m2341068207_MetadataUsageId; extern String_t* _stringLiteral3450582913; extern const uint32_t XmlSchemaXPath_ParsePath_m1265390928_MetadataUsageId; extern const RuntimeType* XsdIdentityStep_t1480907129_0_0_0_var; extern RuntimeClass* XsdIdentityStep_t1480907129_il2cpp_TypeInfo_var; extern RuntimeClass* XsdIdentityStepU5BU5D_t2964233348_il2cpp_TypeInfo_var; extern String_t* _stringLiteral3609590954; extern String_t* _stringLiteral2106882644; extern String_t* _stringLiteral430703268; extern String_t* _stringLiteral1978911567; extern String_t* _stringLiteral329641656; extern String_t* _stringLiteral2042047117; extern String_t* _stringLiteral3727611199; extern String_t* _stringLiteral689976154; extern const uint32_t XmlSchemaXPath_ParseStep_m3870533266_MetadataUsageId; extern RuntimeClass* XmlSchemaXPath_t3156455507_il2cpp_TypeInfo_var; extern String_t* _stringLiteral2909972470; extern String_t* _stringLiteral2333584123; extern String_t* _stringLiteral4016147024; extern String_t* _stringLiteral1279479074; extern const uint32_t XmlSchemaXPath_Read_m1808832972_MetadataUsageId; extern RuntimeClass* Char_t3634460470_il2cpp_TypeInfo_var; extern const uint32_t CodeIdentifier_MakePascal_m714146339_MetadataUsageId; extern RuntimeClass* NullReferenceException_t1023182353_il2cpp_TypeInfo_var; extern const RuntimeMethod* CodeIdentifier_MakeValid_m147143689_RuntimeMethod_var; extern String_t* _stringLiteral1949155704; extern const uint32_t CodeIdentifier_MakeValid_m147143689_MetadataUsageId; extern const RuntimeType* IXmlSerializable_t572450606_0_0_0_var; extern const RuntimeType* XmlNode_t3767805227_0_0_0_var; extern const RuntimeType* IEnumerable_t1941168011_0_0_0_var; extern RuntimeClass* InvalidOperationException_t56020091_il2cpp_TypeInfo_var; extern const RuntimeMethod* TypeData__ctor_m812170617_RuntimeMethod_var; extern String_t* _stringLiteral3575685878; extern const uint32_t TypeData__ctor_m812170617_MetadataUsageId; extern RuntimeClass* TypeData_t476999220_il2cpp_TypeInfo_var; extern String_t* _stringLiteral280883515; extern String_t* _stringLiteral2734520598; extern String_t* _stringLiteral2149933273; extern String_t* _stringLiteral2001916978; extern String_t* _stringLiteral3455563711; extern String_t* _stringLiteral3637139173; extern String_t* _stringLiteral1202628576; extern String_t* _stringLiteral1956447343; extern String_t* _stringLiteral130792137; extern String_t* _stringLiteral1178749465; extern String_t* _stringLiteral3875954633; extern String_t* _stringLiteral2978261106; extern String_t* _stringLiteral82367591; extern String_t* _stringLiteral22182330; extern String_t* _stringLiteral3859429177; extern String_t* _stringLiteral2554266375; extern String_t* _stringLiteral4002445229; extern String_t* _stringLiteral345858392; extern String_t* _stringLiteral2601517161; extern String_t* _stringLiteral2838662760; extern String_t* _stringLiteral3980842185; extern String_t* _stringLiteral2101930777; extern String_t* _stringLiteral461028241; extern String_t* _stringLiteral1390811594; extern String_t* _stringLiteral1801699217; extern String_t* _stringLiteral1184841701; extern String_t* _stringLiteral170650980; extern String_t* _stringLiteral4158218461; extern String_t* _stringLiteral2419720959; extern String_t* _stringLiteral3524468349; extern String_t* _stringLiteral2097807219; extern String_t* _stringLiteral351315815; extern String_t* _stringLiteral3454318535; extern String_t* _stringLiteral827624532; extern String_t* _stringLiteral2422556946; extern String_t* _stringLiteral748112283; extern String_t* _stringLiteral3596048705; extern String_t* _stringLiteral133510650; extern String_t* _stringLiteral1055810917; extern String_t* _stringLiteral3454842823; extern String_t* _stringLiteral3134897496; extern String_t* _stringLiteral59180213; extern String_t* _stringLiteral895381333; extern String_t* _stringLiteral1948332219; extern String_t* _stringLiteral775541518; extern String_t* _stringLiteral765372749; extern String_t* _stringLiteral1453402100; extern String_t* _stringLiteral3158016519; extern String_t* _stringLiteral2289751134; extern String_t* _stringLiteral3454777276; extern String_t* _stringLiteral3455563719; extern String_t* _stringLiteral2873896790; extern String_t* _stringLiteral430703593; extern String_t* _stringLiteral1167972383; extern String_t* _stringLiteral2954596464; extern String_t* _stringLiteral2838990438; extern String_t* _stringLiteral2322770241; extern String_t* _stringLiteral1236039580; extern String_t* _stringLiteral3820675233; extern String_t* _stringLiteral3557324734; extern String_t* _stringLiteral798688685; extern String_t* _stringLiteral3894513951; extern String_t* _stringLiteral3873631970; extern String_t* _stringLiteral3528114263; extern String_t* _stringLiteral3576598565; extern String_t* _stringLiteral1225964229; extern String_t* _stringLiteral75909655; extern String_t* _stringLiteral882274439; extern String_t* _stringLiteral3110370682; extern String_t* _stringLiteral729250605; extern const uint32_t TypeData__cctor_m1057434258_MetadataUsageId; extern const uint32_t TypeData_get_ListItemTypeData_m3343906619_MetadataUsageId; extern const RuntimeType* ICollection_t3904884886_0_0_0_var; extern const RuntimeType* IDictionary_t1363984059_0_0_0_var; extern const RuntimeType* RuntimeObject_0_0_0_var; extern RuntimeClass* NotSupportedException_t1314879016_il2cpp_TypeInfo_var; extern RuntimeClass* TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var; extern const RuntimeMethod* TypeData_get_ListItemType_m2212788481_RuntimeMethod_var; extern String_t* _stringLiteral2279892295; extern String_t* _stringLiteral4273379246; extern String_t* _stringLiteral3339633678; extern String_t* _stringLiteral3598675092; extern String_t* _stringLiteral1362010054; extern String_t* _stringLiteral3265744085; extern String_t* _stringLiteral2352956595; extern String_t* _stringLiteral3024845674; extern String_t* _stringLiteral2703077774; extern String_t* _stringLiteral3862463354; extern String_t* _stringLiteral1861059339; extern const uint32_t TypeData_get_ListItemType_m2212788481_MetadataUsageId; extern const RuntimeType* Int32_t2950945753_0_0_0_var; extern const uint32_t TypeData_GetIndexerProperty_m1051013388_MetadataUsageId; extern String_t* _stringLiteral4247890760; extern const uint32_t TypeData_CreateMissingAddMethodException_m662119892_MetadataUsageId; extern const RuntimeType* ICollection_1_t1449021101_0_0_0_var; extern const uint32_t TypeData_GetGenericListItemType_m2145930005_MetadataUsageId; extern const RuntimeType* Boolean_t97287965_0_0_0_var; extern const RuntimeType* Int16_t2552820387_0_0_0_var; extern const RuntimeType* UInt16_t2177724958_0_0_0_var; extern const RuntimeType* UInt32_t2560061978_0_0_0_var; extern const RuntimeType* Int64_t3736567304_0_0_0_var; extern const RuntimeType* UInt64_t4134040092_0_0_0_var; extern const RuntimeType* Single_t1397266774_0_0_0_var; extern const RuntimeType* Double_t594665363_0_0_0_var; extern const RuntimeType* DateTime_t3738529785_0_0_0_var; extern const RuntimeType* Decimal_t2948259380_0_0_0_var; extern const RuntimeType* XmlQualifiedName_t2760654312_0_0_0_var; extern const RuntimeType* Guid_t_0_0_0_var; extern const RuntimeType* Byte_t1134296376_0_0_0_var; extern const RuntimeType* SByte_t1669577662_0_0_0_var; extern const RuntimeType* Char_t3634460470_0_0_0_var; extern const RuntimeType* ByteU5BU5D_t4116647657_0_0_0_var; extern const RuntimeType* XmlElement_t561603118_0_0_0_var; extern String_t* _stringLiteral2801046788; extern String_t* _stringLiteral76564998; extern String_t* _stringLiteral3777314074; extern String_t* _stringLiteral1792755598; extern String_t* _stringLiteral2225953156; extern String_t* _stringLiteral3216596419; extern String_t* _stringLiteral2704427701; extern String_t* _stringLiteral1645561617; extern const uint32_t TypeTranslator__cctor_m3101224670_MetadataUsageId; extern const uint32_t TypeTranslator_GetTypeData_m1676550349_MetadataUsageId; extern const RuntimeType* Nullable_1_t3772285925_0_0_0_var; extern const RuntimeMethod* TypeTranslator_GetTypeData_m2576829536_RuntimeMethod_var; extern String_t* _stringLiteral3863278315; extern String_t* _stringLiteral1087025813; extern String_t* _stringLiteral3454318561; extern const uint32_t TypeTranslator_GetTypeData_m2576829536_MetadataUsageId; extern const uint32_t TypeTranslator_GetPrimitiveTypeData_m2740454283_MetadataUsageId; extern const RuntimeMethod* TypeTranslator_GetPrimitiveTypeData_m2492367760_RuntimeMethod_var; extern String_t* _stringLiteral1560233285; extern String_t* _stringLiteral4020356754; extern const uint32_t TypeTranslator_GetPrimitiveTypeData_m2492367760_MetadataUsageId; extern String_t* _stringLiteral3459233542; extern const uint32_t TypeTranslator_GetArrayName_m2745210150_MetadataUsageId; extern const RuntimeMethod* TypeTranslator_ParseArrayType_m1334976778_RuntimeMethod_var; extern String_t* _stringLiteral3452614645; extern String_t* _stringLiteral2650475604; extern const uint32_t TypeTranslator_ParseArrayType_m1334976778_MetadataUsageId; extern RuntimeClass* ListDictionary_t1624492310_il2cpp_TypeInfo_var; extern const uint32_t XmlSerializerNamespaces__ctor_m1179032600_MetadataUsageId; extern const uint32_t XmlSerializerNamespaces_Add_m3530434184_MetadataUsageId; extern RuntimeClass* ICollection_t3904884886_il2cpp_TypeInfo_var; extern const uint32_t XmlSerializerNamespaces_ToArray_m2843559361_MetadataUsageId; extern RuntimeClass* XmlNode_t3767805227_il2cpp_TypeInfo_var; extern const RuntimeMethod* XmlAttribute__ctor_m288521366_RuntimeMethod_var; extern String_t* _stringLiteral2829469855; extern String_t* _stringLiteral3616512663; extern String_t* _stringLiteral2984480440; extern String_t* _stringLiteral3494514062; extern String_t* _stringLiteral20642215; extern const uint32_t XmlAttribute__ctor_m288521366_MetadataUsageId; extern const uint32_t XmlAttribute_get_BaseURI_m702224144_MetadataUsageId; extern RuntimeClass* XmlException_t1761730631_il2cpp_TypeInfo_var; extern const RuntimeMethod* XmlAttribute_set_Prefix_m279685582_RuntimeMethod_var; extern String_t* _stringLiteral773727311; extern String_t* _stringLiteral227014553; extern const uint32_t XmlAttribute_set_Prefix_m279685582_MetadataUsageId; extern RuntimeClass* XmlCharacterData_t1167807131_il2cpp_TypeInfo_var; extern const RuntimeMethod* XmlAttribute_set_Value_m306683248_RuntimeMethod_var; extern String_t* _stringLiteral390376736; extern const uint32_t XmlAttribute_set_Value_m306683248_MetadataUsageId; extern const uint32_t XmlAttribute_get_XmlLang_m1138422434_MetadataUsageId; struct ObjectU5BU5D_t2843939325; struct StringU5BU5D_t1281789340; struct RegexU5BU5D_t1561692752; struct CharU5BU5D_t3528271667; struct XmlQualifiedNameU5BU5D_t1471530361; struct XmlSchemaSimpleTypeU5BU5D_t1394089049; struct XsdIdentityPathU5BU5D_t2466178853; struct XsdIdentityStepU5BU5D_t2964233348; struct TypeU5BU5D_t3940880105; struct ParameterModifierU5BU5D_t2943407543; struct PropertyInfoU5BU5D_t1461822886; struct ParameterInfoU5BU5D_t390618515; #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H #ifndef LIST_1_T218596005_H #define LIST_1_T218596005_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.String,Mono.Xml.DTDNode>> struct List_1_t218596005 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items KeyValuePair_2U5BU5D_t3368185270* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t218596005, ____items_1)); } inline KeyValuePair_2U5BU5D_t3368185270* get__items_1() const { return ____items_1; } inline KeyValuePair_2U5BU5D_t3368185270** get_address_of__items_1() { return &____items_1; } inline void set__items_1(KeyValuePair_2U5BU5D_t3368185270* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t218596005, ____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_t218596005, ____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; } }; struct List_1_t218596005_StaticFields { public: // T[] System.Collections.Generic.List`1::EmptyArray KeyValuePair_2U5BU5D_t3368185270* ___EmptyArray_4; public: inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(List_1_t218596005_StaticFields, ___EmptyArray_4)); } inline KeyValuePair_2U5BU5D_t3368185270* get_EmptyArray_4() const { return ___EmptyArray_4; } inline KeyValuePair_2U5BU5D_t3368185270** get_address_of_EmptyArray_4() { return &___EmptyArray_4; } inline void set_EmptyArray_4(KeyValuePair_2U5BU5D_t3368185270* value) { ___EmptyArray_4 = value; Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T218596005_H #ifndef DICTIONARY_2_T2736202052_H #define DICTIONARY_2_T2736202052_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_t2736202052 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::table Int32U5BU5D_t385246372* ___table_4; // System.Collections.Generic.Link[] System.Collections.Generic.Dictionary`2::linkSlots LinkU5BU5D_t964245573* ___linkSlots_5; // TKey[] System.Collections.Generic.Dictionary`2::keySlots StringU5BU5D_t1281789340* ___keySlots_6; // TValue[] System.Collections.Generic.Dictionary`2::valueSlots Int32U5BU5D_t385246372* ___valueSlots_7; // System.Int32 System.Collections.Generic.Dictionary`2::touchedSlots int32_t ___touchedSlots_8; // System.Int32 System.Collections.Generic.Dictionary`2::emptySlot int32_t ___emptySlot_9; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_10; // System.Int32 System.Collections.Generic.Dictionary`2::threshold int32_t ___threshold_11; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::hcp RuntimeObject* ___hcp_12; // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.Dictionary`2::serialization_info SerializationInfo_t950877179 * ___serialization_info_13; // System.Int32 System.Collections.Generic.Dictionary`2::generation int32_t ___generation_14; public: inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___table_4)); } inline Int32U5BU5D_t385246372* get_table_4() const { return ___table_4; } inline Int32U5BU5D_t385246372** get_address_of_table_4() { return &___table_4; } inline void set_table_4(Int32U5BU5D_t385246372* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_linkSlots_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___linkSlots_5)); } inline LinkU5BU5D_t964245573* get_linkSlots_5() const { return ___linkSlots_5; } inline LinkU5BU5D_t964245573** get_address_of_linkSlots_5() { return &___linkSlots_5; } inline void set_linkSlots_5(LinkU5BU5D_t964245573* value) { ___linkSlots_5 = value; Il2CppCodeGenWriteBarrier((&___linkSlots_5), value); } inline static int32_t get_offset_of_keySlots_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___keySlots_6)); } inline StringU5BU5D_t1281789340* get_keySlots_6() const { return ___keySlots_6; } inline StringU5BU5D_t1281789340** get_address_of_keySlots_6() { return &___keySlots_6; } inline void set_keySlots_6(StringU5BU5D_t1281789340* value) { ___keySlots_6 = value; Il2CppCodeGenWriteBarrier((&___keySlots_6), value); } inline static int32_t get_offset_of_valueSlots_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___valueSlots_7)); } inline Int32U5BU5D_t385246372* get_valueSlots_7() const { return ___valueSlots_7; } inline Int32U5BU5D_t385246372** get_address_of_valueSlots_7() { return &___valueSlots_7; } inline void set_valueSlots_7(Int32U5BU5D_t385246372* value) { ___valueSlots_7 = value; Il2CppCodeGenWriteBarrier((&___valueSlots_7), value); } inline static int32_t get_offset_of_touchedSlots_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___touchedSlots_8)); } inline int32_t get_touchedSlots_8() const { return ___touchedSlots_8; } inline int32_t* get_address_of_touchedSlots_8() { return &___touchedSlots_8; } inline void set_touchedSlots_8(int32_t value) { ___touchedSlots_8 = value; } inline static int32_t get_offset_of_emptySlot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___emptySlot_9)); } inline int32_t get_emptySlot_9() const { return ___emptySlot_9; } inline int32_t* get_address_of_emptySlot_9() { return &___emptySlot_9; } inline void set_emptySlot_9(int32_t value) { ___emptySlot_9 = value; } inline static int32_t get_offset_of_count_10() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___count_10)); } inline int32_t get_count_10() const { return ___count_10; } inline int32_t* get_address_of_count_10() { return &___count_10; } inline void set_count_10(int32_t value) { ___count_10 = value; } inline static int32_t get_offset_of_threshold_11() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___threshold_11)); } inline int32_t get_threshold_11() const { return ___threshold_11; } inline int32_t* get_address_of_threshold_11() { return &___threshold_11; } inline void set_threshold_11(int32_t value) { ___threshold_11 = value; } inline static int32_t get_offset_of_hcp_12() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___hcp_12)); } inline RuntimeObject* get_hcp_12() const { return ___hcp_12; } inline RuntimeObject** get_address_of_hcp_12() { return &___hcp_12; } inline void set_hcp_12(RuntimeObject* value) { ___hcp_12 = value; Il2CppCodeGenWriteBarrier((&___hcp_12), value); } inline static int32_t get_offset_of_serialization_info_13() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___serialization_info_13)); } inline SerializationInfo_t950877179 * get_serialization_info_13() const { return ___serialization_info_13; } inline SerializationInfo_t950877179 ** get_address_of_serialization_info_13() { return &___serialization_info_13; } inline void set_serialization_info_13(SerializationInfo_t950877179 * value) { ___serialization_info_13 = value; Il2CppCodeGenWriteBarrier((&___serialization_info_13), value); } inline static int32_t get_offset_of_generation_14() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052, ___generation_14)); } inline int32_t get_generation_14() const { return ___generation_14; } inline int32_t* get_address_of_generation_14() { return &___generation_14; } inline void set_generation_14(int32_t value) { ___generation_14 = value; } }; struct Dictionary_2_t2736202052_StaticFields { public: // System.Collections.Generic.Dictionary`2/Transform`1<TKey,TValue,System.Collections.DictionaryEntry> System.Collections.Generic.Dictionary`2::<>f__am$cacheB Transform_1_t3530625384 * ___U3CU3Ef__amU24cacheB_15; public: inline static int32_t get_offset_of_U3CU3Ef__amU24cacheB_15() { return static_cast<int32_t>(offsetof(Dictionary_2_t2736202052_StaticFields, ___U3CU3Ef__amU24cacheB_15)); } inline Transform_1_t3530625384 * get_U3CU3Ef__amU24cacheB_15() const { return ___U3CU3Ef__amU24cacheB_15; } inline Transform_1_t3530625384 ** get_address_of_U3CU3Ef__amU24cacheB_15() { return &___U3CU3Ef__amU24cacheB_15; } inline void set_U3CU3Ef__amU24cacheB_15(Transform_1_t3530625384 * value) { ___U3CU3Ef__amU24cacheB_15 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__amU24cacheB_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T2736202052_H #ifndef CULTUREINFO_T4157843068_H #define CULTUREINFO_T4157843068_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.CultureInfo struct CultureInfo_t4157843068 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_7; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_8; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_9; // System.Int32 System.Globalization.CultureInfo::specific_lcid int32_t ___specific_lcid_10; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_11; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_12; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_13; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t435877138 * ___numInfo_14; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t2405853701 * ___dateTimeInfo_15; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_t3810425522 * ___textInfo_16; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_17; // System.String System.Globalization.CultureInfo::displayname String_t* ___displayname_18; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_19; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_20; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_21; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_22; // System.String System.Globalization.CultureInfo::icu_name String_t* ___icu_name_23; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_24; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_25; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t1092934962 * ___compareInfo_26; // System.Int32* System.Globalization.CultureInfo::calendar_data int32_t* ___calendar_data_27; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_28; // System.Globalization.Calendar[] System.Globalization.CultureInfo::optional_calendars CalendarU5BU5D_t3985046076* ___optional_calendars_29; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t4157843068 * ___parent_culture_30; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_31; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t1661121569 * ___calendar_32; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_33; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_t4116647657* ___cached_serialized_form_34; public: inline static int32_t get_offset_of_m_isReadOnly_7() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_isReadOnly_7)); } inline bool get_m_isReadOnly_7() const { return ___m_isReadOnly_7; } inline bool* get_address_of_m_isReadOnly_7() { return &___m_isReadOnly_7; } inline void set_m_isReadOnly_7(bool value) { ___m_isReadOnly_7 = value; } inline static int32_t get_offset_of_cultureID_8() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___cultureID_8)); } inline int32_t get_cultureID_8() const { return ___cultureID_8; } inline int32_t* get_address_of_cultureID_8() { return &___cultureID_8; } inline void set_cultureID_8(int32_t value) { ___cultureID_8 = value; } inline static int32_t get_offset_of_parent_lcid_9() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___parent_lcid_9)); } inline int32_t get_parent_lcid_9() const { return ___parent_lcid_9; } inline int32_t* get_address_of_parent_lcid_9() { return &___parent_lcid_9; } inline void set_parent_lcid_9(int32_t value) { ___parent_lcid_9 = value; } inline static int32_t get_offset_of_specific_lcid_10() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___specific_lcid_10)); } inline int32_t get_specific_lcid_10() const { return ___specific_lcid_10; } inline int32_t* get_address_of_specific_lcid_10() { return &___specific_lcid_10; } inline void set_specific_lcid_10(int32_t value) { ___specific_lcid_10 = value; } inline static int32_t get_offset_of_datetime_index_11() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___datetime_index_11)); } inline int32_t get_datetime_index_11() const { return ___datetime_index_11; } inline int32_t* get_address_of_datetime_index_11() { return &___datetime_index_11; } inline void set_datetime_index_11(int32_t value) { ___datetime_index_11 = value; } inline static int32_t get_offset_of_number_index_12() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___number_index_12)); } inline int32_t get_number_index_12() const { return ___number_index_12; } inline int32_t* get_address_of_number_index_12() { return &___number_index_12; } inline void set_number_index_12(int32_t value) { ___number_index_12 = value; } inline static int32_t get_offset_of_m_useUserOverride_13() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_useUserOverride_13)); } inline bool get_m_useUserOverride_13() const { return ___m_useUserOverride_13; } inline bool* get_address_of_m_useUserOverride_13() { return &___m_useUserOverride_13; } inline void set_m_useUserOverride_13(bool value) { ___m_useUserOverride_13 = value; } inline static int32_t get_offset_of_numInfo_14() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___numInfo_14)); } inline NumberFormatInfo_t435877138 * get_numInfo_14() const { return ___numInfo_14; } inline NumberFormatInfo_t435877138 ** get_address_of_numInfo_14() { return &___numInfo_14; } inline void set_numInfo_14(NumberFormatInfo_t435877138 * value) { ___numInfo_14 = value; Il2CppCodeGenWriteBarrier((&___numInfo_14), value); } inline static int32_t get_offset_of_dateTimeInfo_15() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___dateTimeInfo_15)); } inline DateTimeFormatInfo_t2405853701 * get_dateTimeInfo_15() const { return ___dateTimeInfo_15; } inline DateTimeFormatInfo_t2405853701 ** get_address_of_dateTimeInfo_15() { return &___dateTimeInfo_15; } inline void set_dateTimeInfo_15(DateTimeFormatInfo_t2405853701 * value) { ___dateTimeInfo_15 = value; Il2CppCodeGenWriteBarrier((&___dateTimeInfo_15), value); } inline static int32_t get_offset_of_textInfo_16() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___textInfo_16)); } inline TextInfo_t3810425522 * get_textInfo_16() const { return ___textInfo_16; } inline TextInfo_t3810425522 ** get_address_of_textInfo_16() { return &___textInfo_16; } inline void set_textInfo_16(TextInfo_t3810425522 * value) { ___textInfo_16 = value; Il2CppCodeGenWriteBarrier((&___textInfo_16), value); } inline static int32_t get_offset_of_m_name_17() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_name_17)); } inline String_t* get_m_name_17() const { return ___m_name_17; } inline String_t** get_address_of_m_name_17() { return &___m_name_17; } inline void set_m_name_17(String_t* value) { ___m_name_17 = value; Il2CppCodeGenWriteBarrier((&___m_name_17), value); } inline static int32_t get_offset_of_displayname_18() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___displayname_18)); } inline String_t* get_displayname_18() const { return ___displayname_18; } inline String_t** get_address_of_displayname_18() { return &___displayname_18; } inline void set_displayname_18(String_t* value) { ___displayname_18 = value; Il2CppCodeGenWriteBarrier((&___displayname_18), value); } inline static int32_t get_offset_of_englishname_19() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___englishname_19)); } inline String_t* get_englishname_19() const { return ___englishname_19; } inline String_t** get_address_of_englishname_19() { return &___englishname_19; } inline void set_englishname_19(String_t* value) { ___englishname_19 = value; Il2CppCodeGenWriteBarrier((&___englishname_19), value); } inline static int32_t get_offset_of_nativename_20() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___nativename_20)); } inline String_t* get_nativename_20() const { return ___nativename_20; } inline String_t** get_address_of_nativename_20() { return &___nativename_20; } inline void set_nativename_20(String_t* value) { ___nativename_20 = value; Il2CppCodeGenWriteBarrier((&___nativename_20), value); } inline static int32_t get_offset_of_iso3lang_21() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___iso3lang_21)); } inline String_t* get_iso3lang_21() const { return ___iso3lang_21; } inline String_t** get_address_of_iso3lang_21() { return &___iso3lang_21; } inline void set_iso3lang_21(String_t* value) { ___iso3lang_21 = value; Il2CppCodeGenWriteBarrier((&___iso3lang_21), value); } inline static int32_t get_offset_of_iso2lang_22() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___iso2lang_22)); } inline String_t* get_iso2lang_22() const { return ___iso2lang_22; } inline String_t** get_address_of_iso2lang_22() { return &___iso2lang_22; } inline void set_iso2lang_22(String_t* value) { ___iso2lang_22 = value; Il2CppCodeGenWriteBarrier((&___iso2lang_22), value); } inline static int32_t get_offset_of_icu_name_23() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___icu_name_23)); } inline String_t* get_icu_name_23() const { return ___icu_name_23; } inline String_t** get_address_of_icu_name_23() { return &___icu_name_23; } inline void set_icu_name_23(String_t* value) { ___icu_name_23 = value; Il2CppCodeGenWriteBarrier((&___icu_name_23), value); } inline static int32_t get_offset_of_win3lang_24() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___win3lang_24)); } inline String_t* get_win3lang_24() const { return ___win3lang_24; } inline String_t** get_address_of_win3lang_24() { return &___win3lang_24; } inline void set_win3lang_24(String_t* value) { ___win3lang_24 = value; Il2CppCodeGenWriteBarrier((&___win3lang_24), value); } inline static int32_t get_offset_of_territory_25() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___territory_25)); } inline String_t* get_territory_25() const { return ___territory_25; } inline String_t** get_address_of_territory_25() { return &___territory_25; } inline void set_territory_25(String_t* value) { ___territory_25 = value; Il2CppCodeGenWriteBarrier((&___territory_25), value); } inline static int32_t get_offset_of_compareInfo_26() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___compareInfo_26)); } inline CompareInfo_t1092934962 * get_compareInfo_26() const { return ___compareInfo_26; } inline CompareInfo_t1092934962 ** get_address_of_compareInfo_26() { return &___compareInfo_26; } inline void set_compareInfo_26(CompareInfo_t1092934962 * value) { ___compareInfo_26 = value; Il2CppCodeGenWriteBarrier((&___compareInfo_26), value); } inline static int32_t get_offset_of_calendar_data_27() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___calendar_data_27)); } inline int32_t* get_calendar_data_27() const { return ___calendar_data_27; } inline int32_t** get_address_of_calendar_data_27() { return &___calendar_data_27; } inline void set_calendar_data_27(int32_t* value) { ___calendar_data_27 = value; } inline static int32_t get_offset_of_textinfo_data_28() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___textinfo_data_28)); } inline void* get_textinfo_data_28() const { return ___textinfo_data_28; } inline void** get_address_of_textinfo_data_28() { return &___textinfo_data_28; } inline void set_textinfo_data_28(void* value) { ___textinfo_data_28 = value; } inline static int32_t get_offset_of_optional_calendars_29() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___optional_calendars_29)); } inline CalendarU5BU5D_t3985046076* get_optional_calendars_29() const { return ___optional_calendars_29; } inline CalendarU5BU5D_t3985046076** get_address_of_optional_calendars_29() { return &___optional_calendars_29; } inline void set_optional_calendars_29(CalendarU5BU5D_t3985046076* value) { ___optional_calendars_29 = value; Il2CppCodeGenWriteBarrier((&___optional_calendars_29), value); } inline static int32_t get_offset_of_parent_culture_30() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___parent_culture_30)); } inline CultureInfo_t4157843068 * get_parent_culture_30() const { return ___parent_culture_30; } inline CultureInfo_t4157843068 ** get_address_of_parent_culture_30() { return &___parent_culture_30; } inline void set_parent_culture_30(CultureInfo_t4157843068 * value) { ___parent_culture_30 = value; Il2CppCodeGenWriteBarrier((&___parent_culture_30), value); } inline static int32_t get_offset_of_m_dataItem_31() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___m_dataItem_31)); } inline int32_t get_m_dataItem_31() const { return ___m_dataItem_31; } inline int32_t* get_address_of_m_dataItem_31() { return &___m_dataItem_31; } inline void set_m_dataItem_31(int32_t value) { ___m_dataItem_31 = value; } inline static int32_t get_offset_of_calendar_32() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___calendar_32)); } inline Calendar_t1661121569 * get_calendar_32() const { return ___calendar_32; } inline Calendar_t1661121569 ** get_address_of_calendar_32() { return &___calendar_32; } inline void set_calendar_32(Calendar_t1661121569 * value) { ___calendar_32 = value; Il2CppCodeGenWriteBarrier((&___calendar_32), value); } inline static int32_t get_offset_of_constructed_33() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___constructed_33)); } inline bool get_constructed_33() const { return ___constructed_33; } inline bool* get_address_of_constructed_33() { return &___constructed_33; } inline void set_constructed_33(bool value) { ___constructed_33 = value; } inline static int32_t get_offset_of_cached_serialized_form_34() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068, ___cached_serialized_form_34)); } inline ByteU5BU5D_t4116647657* get_cached_serialized_form_34() const { return ___cached_serialized_form_34; } inline ByteU5BU5D_t4116647657** get_address_of_cached_serialized_form_34() { return &___cached_serialized_form_34; } inline void set_cached_serialized_form_34(ByteU5BU5D_t4116647657* value) { ___cached_serialized_form_34 = value; Il2CppCodeGenWriteBarrier((&___cached_serialized_form_34), value); } }; struct CultureInfo_t4157843068_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t4157843068 * ___invariant_culture_info_4; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_5; // System.Int32 System.Globalization.CultureInfo::BootstrapCultureID int32_t ___BootstrapCultureID_6; // System.String System.Globalization.CultureInfo::MSG_READONLY String_t* ___MSG_READONLY_35; // System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_number Hashtable_t1853889766 * ___shared_by_number_36; // System.Collections.Hashtable System.Globalization.CultureInfo::shared_by_name Hashtable_t1853889766 * ___shared_by_name_37; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map19 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map19_38; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map1A Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map1A_39; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map1B Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map1B_40; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Globalization.CultureInfo::<>f__switch$map1C Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map1C_41; public: inline static int32_t get_offset_of_invariant_culture_info_4() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___invariant_culture_info_4)); } inline CultureInfo_t4157843068 * get_invariant_culture_info_4() const { return ___invariant_culture_info_4; } inline CultureInfo_t4157843068 ** get_address_of_invariant_culture_info_4() { return &___invariant_culture_info_4; } inline void set_invariant_culture_info_4(CultureInfo_t4157843068 * value) { ___invariant_culture_info_4 = value; Il2CppCodeGenWriteBarrier((&___invariant_culture_info_4), value); } inline static int32_t get_offset_of_shared_table_lock_5() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_table_lock_5)); } inline RuntimeObject * get_shared_table_lock_5() const { return ___shared_table_lock_5; } inline RuntimeObject ** get_address_of_shared_table_lock_5() { return &___shared_table_lock_5; } inline void set_shared_table_lock_5(RuntimeObject * value) { ___shared_table_lock_5 = value; Il2CppCodeGenWriteBarrier((&___shared_table_lock_5), value); } inline static int32_t get_offset_of_BootstrapCultureID_6() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___BootstrapCultureID_6)); } inline int32_t get_BootstrapCultureID_6() const { return ___BootstrapCultureID_6; } inline int32_t* get_address_of_BootstrapCultureID_6() { return &___BootstrapCultureID_6; } inline void set_BootstrapCultureID_6(int32_t value) { ___BootstrapCultureID_6 = value; } inline static int32_t get_offset_of_MSG_READONLY_35() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___MSG_READONLY_35)); } inline String_t* get_MSG_READONLY_35() const { return ___MSG_READONLY_35; } inline String_t** get_address_of_MSG_READONLY_35() { return &___MSG_READONLY_35; } inline void set_MSG_READONLY_35(String_t* value) { ___MSG_READONLY_35 = value; Il2CppCodeGenWriteBarrier((&___MSG_READONLY_35), value); } inline static int32_t get_offset_of_shared_by_number_36() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_by_number_36)); } inline Hashtable_t1853889766 * get_shared_by_number_36() const { return ___shared_by_number_36; } inline Hashtable_t1853889766 ** get_address_of_shared_by_number_36() { return &___shared_by_number_36; } inline void set_shared_by_number_36(Hashtable_t1853889766 * value) { ___shared_by_number_36 = value; Il2CppCodeGenWriteBarrier((&___shared_by_number_36), value); } inline static int32_t get_offset_of_shared_by_name_37() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___shared_by_name_37)); } inline Hashtable_t1853889766 * get_shared_by_name_37() const { return ___shared_by_name_37; } inline Hashtable_t1853889766 ** get_address_of_shared_by_name_37() { return &___shared_by_name_37; } inline void set_shared_by_name_37(Hashtable_t1853889766 * value) { ___shared_by_name_37 = value; Il2CppCodeGenWriteBarrier((&___shared_by_name_37), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map19_38() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map19_38)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map19_38() const { return ___U3CU3Ef__switchU24map19_38; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map19_38() { return &___U3CU3Ef__switchU24map19_38; } inline void set_U3CU3Ef__switchU24map19_38(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map19_38 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map19_38), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map1A_39() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map1A_39)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map1A_39() const { return ___U3CU3Ef__switchU24map1A_39; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map1A_39() { return &___U3CU3Ef__switchU24map1A_39; } inline void set_U3CU3Ef__switchU24map1A_39(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map1A_39 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map1A_39), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map1B_40() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map1B_40)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map1B_40() const { return ___U3CU3Ef__switchU24map1B_40; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map1B_40() { return &___U3CU3Ef__switchU24map1B_40; } inline void set_U3CU3Ef__switchU24map1B_40(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map1B_40 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map1B_40), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map1C_41() { return static_cast<int32_t>(offsetof(CultureInfo_t4157843068_StaticFields, ___U3CU3Ef__switchU24map1C_41)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map1C_41() const { return ___U3CU3Ef__switchU24map1C_41; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map1C_41() { return &___U3CU3Ef__switchU24map1C_41; } inline void set_U3CU3Ef__switchU24map1C_41(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map1C_41 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map1C_41), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CULTUREINFO_T4157843068_H #ifndef STRINGCOLLECTION_T167406615_H #define STRINGCOLLECTION_T167406615_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.StringCollection struct StringCollection_t167406615 : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.Specialized.StringCollection::data ArrayList_t2718874744 * ___data_0; public: inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(StringCollection_t167406615, ___data_0)); } inline ArrayList_t2718874744 * get_data_0() const { return ___data_0; } inline ArrayList_t2718874744 ** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ArrayList_t2718874744 * value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((&___data_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOLLECTION_T167406615_H #ifndef XMLSERIALIZERNAMESPACES_T2702737953_H #define XMLSERIALIZERNAMESPACES_T2702737953_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlSerializerNamespaces struct XmlSerializerNamespaces_t2702737953 : public RuntimeObject { public: // System.Collections.Specialized.ListDictionary System.Xml.Serialization.XmlSerializerNamespaces::namespaces ListDictionary_t1624492310 * ___namespaces_0; public: inline static int32_t get_offset_of_namespaces_0() { return static_cast<int32_t>(offsetof(XmlSerializerNamespaces_t2702737953, ___namespaces_0)); } inline ListDictionary_t1624492310 * get_namespaces_0() const { return ___namespaces_0; } inline ListDictionary_t1624492310 ** get_address_of_namespaces_0() { return &___namespaces_0; } inline void set_namespaces_0(ListDictionary_t1624492310 * value) { ___namespaces_0 = value; Il2CppCodeGenWriteBarrier((&___namespaces_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSERIALIZERNAMESPACES_T2702737953_H #ifndef SERIALIZATIONINFO_T950877179_H #define SERIALIZATIONINFO_T950877179_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t950877179 : public RuntimeObject { public: // System.Collections.Hashtable System.Runtime.Serialization.SerializationInfo::serialized Hashtable_t1853889766 * ___serialized_0; // System.Collections.ArrayList System.Runtime.Serialization.SerializationInfo::values ArrayList_t2718874744 * ___values_1; // System.String System.Runtime.Serialization.SerializationInfo::assemblyName String_t* ___assemblyName_2; // System.String System.Runtime.Serialization.SerializationInfo::fullTypeName String_t* ___fullTypeName_3; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::converter RuntimeObject* ___converter_4; public: inline static int32_t get_offset_of_serialized_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___serialized_0)); } inline Hashtable_t1853889766 * get_serialized_0() const { return ___serialized_0; } inline Hashtable_t1853889766 ** get_address_of_serialized_0() { return &___serialized_0; } inline void set_serialized_0(Hashtable_t1853889766 * value) { ___serialized_0 = value; Il2CppCodeGenWriteBarrier((&___serialized_0), value); } inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___values_1)); } inline ArrayList_t2718874744 * get_values_1() const { return ___values_1; } inline ArrayList_t2718874744 ** get_address_of_values_1() { return &___values_1; } inline void set_values_1(ArrayList_t2718874744 * value) { ___values_1 = value; Il2CppCodeGenWriteBarrier((&___values_1), value); } inline static int32_t get_offset_of_assemblyName_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___assemblyName_2)); } inline String_t* get_assemblyName_2() const { return ___assemblyName_2; } inline String_t** get_address_of_assemblyName_2() { return &___assemblyName_2; } inline void set_assemblyName_2(String_t* value) { ___assemblyName_2 = value; Il2CppCodeGenWriteBarrier((&___assemblyName_2), value); } inline static int32_t get_offset_of_fullTypeName_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___fullTypeName_3)); } inline String_t* get_fullTypeName_3() const { return ___fullTypeName_3; } inline String_t** get_address_of_fullTypeName_3() { return &___fullTypeName_3; } inline void set_fullTypeName_3(String_t* value) { ___fullTypeName_3 = value; Il2CppCodeGenWriteBarrier((&___fullTypeName_3), value); } inline static int32_t get_offset_of_converter_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t950877179, ___converter_4)); } inline RuntimeObject* get_converter_4() const { return ___converter_4; } inline RuntimeObject** get_address_of_converter_4() { return &___converter_4; } inline void set_converter_4(RuntimeObject* value) { ___converter_4 = value; Il2CppCodeGenWriteBarrier((&___converter_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SERIALIZATIONINFO_T950877179_H #ifndef STRINGBUILDER_T_H #define STRINGBUILDER_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Int32 System.Text.StringBuilder::_length int32_t ____length_1; // System.String System.Text.StringBuilder::_str String_t* ____str_2; // System.String System.Text.StringBuilder::_cached_str String_t* ____cached_str_3; // System.Int32 System.Text.StringBuilder::_maxCapacity int32_t ____maxCapacity_4; public: inline static int32_t get_offset_of__length_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____length_1)); } inline int32_t get__length_1() const { return ____length_1; } inline int32_t* get_address_of__length_1() { return &____length_1; } inline void set__length_1(int32_t value) { ____length_1 = value; } inline static int32_t get_offset_of__str_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____str_2)); } inline String_t* get__str_2() const { return ____str_2; } inline String_t** get_address_of__str_2() { return &____str_2; } inline void set__str_2(String_t* value) { ____str_2 = value; Il2CppCodeGenWriteBarrier((&____str_2), value); } inline static int32_t get_offset_of__cached_str_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____cached_str_3)); } inline String_t* get__cached_str_3() const { return ____cached_str_3; } inline String_t** get_address_of__cached_str_3() { return &____cached_str_3; } inline void set__cached_str_3(String_t* value) { ____cached_str_3 = value; Il2CppCodeGenWriteBarrier((&____cached_str_3), value); } inline static int32_t get_offset_of__maxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ____maxCapacity_4)); } inline int32_t get__maxCapacity_4() const { return ____maxCapacity_4; } inline int32_t* get_address_of__maxCapacity_4() { return &____maxCapacity_4; } inline void set__maxCapacity_4(int32_t value) { ____maxCapacity_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGBUILDER_T_H #ifndef ARRAYLIST_T2718874744_H #define ARRAYLIST_T2718874744_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.ArrayList struct ArrayList_t2718874744 : public RuntimeObject { public: // System.Int32 System.Collections.ArrayList::_size int32_t ____size_1; // System.Object[] System.Collections.ArrayList::_items ObjectU5BU5D_t2843939325* ____items_2; // System.Int32 System.Collections.ArrayList::_version int32_t ____version_3; public: inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____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__items_2() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____items_2)); } inline ObjectU5BU5D_t2843939325* get__items_2() const { return ____items_2; } inline ObjectU5BU5D_t2843939325** get_address_of__items_2() { return &____items_2; } inline void set__items_2(ObjectU5BU5D_t2843939325* value) { ____items_2 = value; Il2CppCodeGenWriteBarrier((&____items_2), value); } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744, ____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; } }; struct ArrayList_t2718874744_StaticFields { public: // System.Object[] System.Collections.ArrayList::EmptyArray ObjectU5BU5D_t2843939325* ___EmptyArray_4; public: inline static int32_t get_offset_of_EmptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t2718874744_StaticFields, ___EmptyArray_4)); } inline ObjectU5BU5D_t2843939325* get_EmptyArray_4() const { return ___EmptyArray_4; } inline ObjectU5BU5D_t2843939325** get_address_of_EmptyArray_4() { return &___EmptyArray_4; } inline void set_EmptyArray_4(ObjectU5BU5D_t2843939325* value) { ___EmptyArray_4 = value; Il2CppCodeGenWriteBarrier((&___EmptyArray_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARRAYLIST_T2718874744_H #ifndef XMLQUALIFIEDNAME_T2760654312_H #define XMLQUALIFIEDNAME_T2760654312_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlQualifiedName struct XmlQualifiedName_t2760654312 : public RuntimeObject { public: // System.String System.Xml.XmlQualifiedName::name String_t* ___name_1; // System.String System.Xml.XmlQualifiedName::ns String_t* ___ns_2; // System.Int32 System.Xml.XmlQualifiedName::hash int32_t ___hash_3; public: inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(XmlQualifiedName_t2760654312, ___name_1)); } inline String_t* get_name_1() const { return ___name_1; } inline String_t** get_address_of_name_1() { return &___name_1; } inline void set_name_1(String_t* value) { ___name_1 = value; Il2CppCodeGenWriteBarrier((&___name_1), value); } inline static int32_t get_offset_of_ns_2() { return static_cast<int32_t>(offsetof(XmlQualifiedName_t2760654312, ___ns_2)); } inline String_t* get_ns_2() const { return ___ns_2; } inline String_t** get_address_of_ns_2() { return &___ns_2; } inline void set_ns_2(String_t* value) { ___ns_2 = value; Il2CppCodeGenWriteBarrier((&___ns_2), value); } inline static int32_t get_offset_of_hash_3() { return static_cast<int32_t>(offsetof(XmlQualifiedName_t2760654312, ___hash_3)); } inline int32_t get_hash_3() const { return ___hash_3; } inline int32_t* get_address_of_hash_3() { return &___hash_3; } inline void set_hash_3(int32_t value) { ___hash_3 = value; } }; struct XmlQualifiedName_t2760654312_StaticFields { public: // System.Xml.XmlQualifiedName System.Xml.XmlQualifiedName::Empty XmlQualifiedName_t2760654312 * ___Empty_0; public: inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(XmlQualifiedName_t2760654312_StaticFields, ___Empty_0)); } inline XmlQualifiedName_t2760654312 * get_Empty_0() const { return ___Empty_0; } inline XmlQualifiedName_t2760654312 ** get_address_of_Empty_0() { return &___Empty_0; } inline void set_Empty_0(XmlQualifiedName_t2760654312 * value) { ___Empty_0 = value; Il2CppCodeGenWriteBarrier((&___Empty_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLQUALIFIEDNAME_T2760654312_H #ifndef COLLECTIONBASE_T2727926298_H #define COLLECTIONBASE_T2727926298_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.CollectionBase struct CollectionBase_t2727926298 : public RuntimeObject { public: // System.Collections.ArrayList System.Collections.CollectionBase::list ArrayList_t2718874744 * ___list_0; public: inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_t2727926298, ___list_0)); } inline ArrayList_t2718874744 * get_list_0() const { return ___list_0; } inline ArrayList_t2718874744 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(ArrayList_t2718874744 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((&___list_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // COLLECTIONBASE_T2727926298_H #ifndef XMLSCHEMACOMPILATIONSETTINGS_T2218765537_H #define XMLSCHEMACOMPILATIONSETTINGS_T2218765537_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaCompilationSettings struct XmlSchemaCompilationSettings_t2218765537 : public RuntimeObject { public: // System.Boolean System.Xml.Schema.XmlSchemaCompilationSettings::enable_upa_check bool ___enable_upa_check_0; public: inline static int32_t get_offset_of_enable_upa_check_0() { return static_cast<int32_t>(offsetof(XmlSchemaCompilationSettings_t2218765537, ___enable_upa_check_0)); } inline bool get_enable_upa_check_0() const { return ___enable_upa_check_0; } inline bool* get_address_of_enable_upa_check_0() { return &___enable_upa_check_0; } inline void set_enable_upa_check_0(bool value) { ___enable_upa_check_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACOMPILATIONSETTINGS_T2218765537_H #ifndef XMLRESOLVER_T626023767_H #define XMLRESOLVER_T626023767_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlResolver struct XmlResolver_t626023767 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLRESOLVER_T626023767_H #ifndef XMLNAMETABLE_T71772148_H #define XMLNAMETABLE_T71772148_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNameTable struct XmlNameTable_t71772148 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNAMETABLE_T71772148_H #ifndef XMLNAMESPACEMANAGER_T418790500_H #define XMLNAMESPACEMANAGER_T418790500_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNamespaceManager struct XmlNamespaceManager_t418790500 : public RuntimeObject { public: // System.Xml.XmlNamespaceManager/NsDecl[] System.Xml.XmlNamespaceManager::decls NsDeclU5BU5D_t2116608150* ___decls_0; // System.Int32 System.Xml.XmlNamespaceManager::declPos int32_t ___declPos_1; // System.Xml.XmlNamespaceManager/NsScope[] System.Xml.XmlNamespaceManager::scopes NsScopeU5BU5D_t382374428* ___scopes_2; // System.Int32 System.Xml.XmlNamespaceManager::scopePos int32_t ___scopePos_3; // System.String System.Xml.XmlNamespaceManager::defaultNamespace String_t* ___defaultNamespace_4; // System.Int32 System.Xml.XmlNamespaceManager::count int32_t ___count_5; // System.Xml.XmlNameTable System.Xml.XmlNamespaceManager::nameTable XmlNameTable_t71772148 * ___nameTable_6; // System.Boolean System.Xml.XmlNamespaceManager::internalAtomizedNames bool ___internalAtomizedNames_7; public: inline static int32_t get_offset_of_decls_0() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___decls_0)); } inline NsDeclU5BU5D_t2116608150* get_decls_0() const { return ___decls_0; } inline NsDeclU5BU5D_t2116608150** get_address_of_decls_0() { return &___decls_0; } inline void set_decls_0(NsDeclU5BU5D_t2116608150* value) { ___decls_0 = value; Il2CppCodeGenWriteBarrier((&___decls_0), value); } inline static int32_t get_offset_of_declPos_1() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___declPos_1)); } inline int32_t get_declPos_1() const { return ___declPos_1; } inline int32_t* get_address_of_declPos_1() { return &___declPos_1; } inline void set_declPos_1(int32_t value) { ___declPos_1 = value; } inline static int32_t get_offset_of_scopes_2() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___scopes_2)); } inline NsScopeU5BU5D_t382374428* get_scopes_2() const { return ___scopes_2; } inline NsScopeU5BU5D_t382374428** get_address_of_scopes_2() { return &___scopes_2; } inline void set_scopes_2(NsScopeU5BU5D_t382374428* value) { ___scopes_2 = value; Il2CppCodeGenWriteBarrier((&___scopes_2), value); } inline static int32_t get_offset_of_scopePos_3() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___scopePos_3)); } inline int32_t get_scopePos_3() const { return ___scopePos_3; } inline int32_t* get_address_of_scopePos_3() { return &___scopePos_3; } inline void set_scopePos_3(int32_t value) { ___scopePos_3 = value; } inline static int32_t get_offset_of_defaultNamespace_4() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___defaultNamespace_4)); } inline String_t* get_defaultNamespace_4() const { return ___defaultNamespace_4; } inline String_t** get_address_of_defaultNamespace_4() { return &___defaultNamespace_4; } inline void set_defaultNamespace_4(String_t* value) { ___defaultNamespace_4 = value; Il2CppCodeGenWriteBarrier((&___defaultNamespace_4), value); } inline static int32_t get_offset_of_count_5() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___count_5)); } inline int32_t get_count_5() const { return ___count_5; } inline int32_t* get_address_of_count_5() { return &___count_5; } inline void set_count_5(int32_t value) { ___count_5 = value; } inline static int32_t get_offset_of_nameTable_6() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___nameTable_6)); } inline XmlNameTable_t71772148 * get_nameTable_6() const { return ___nameTable_6; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_6() { return &___nameTable_6; } inline void set_nameTable_6(XmlNameTable_t71772148 * value) { ___nameTable_6 = value; Il2CppCodeGenWriteBarrier((&___nameTable_6), value); } inline static int32_t get_offset_of_internalAtomizedNames_7() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500, ___internalAtomizedNames_7)); } inline bool get_internalAtomizedNames_7() const { return ___internalAtomizedNames_7; } inline bool* get_address_of_internalAtomizedNames_7() { return &___internalAtomizedNames_7; } inline void set_internalAtomizedNames_7(bool value) { ___internalAtomizedNames_7 = value; } }; struct XmlNamespaceManager_t418790500_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.XmlNamespaceManager::<>f__switch$map25 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map25_8; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24map25_8() { return static_cast<int32_t>(offsetof(XmlNamespaceManager_t418790500_StaticFields, ___U3CU3Ef__switchU24map25_8)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map25_8() const { return ___U3CU3Ef__switchU24map25_8; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map25_8() { return &___U3CU3Ef__switchU24map25_8; } inline void set_U3CU3Ef__switchU24map25_8(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map25_8 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map25_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNAMESPACEMANAGER_T418790500_H #ifndef XMLNAMEENTRYCACHE_T2890546907_H #define XMLNAMEENTRYCACHE_T2890546907_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNameEntryCache struct XmlNameEntryCache_t2890546907 : public RuntimeObject { public: // System.Collections.Hashtable System.Xml.XmlNameEntryCache::table Hashtable_t1853889766 * ___table_0; // System.Xml.XmlNameTable System.Xml.XmlNameEntryCache::nameTable XmlNameTable_t71772148 * ___nameTable_1; // System.Xml.XmlNameEntry System.Xml.XmlNameEntryCache::dummy XmlNameEntry_t1073099671 * ___dummy_2; // System.Char[] System.Xml.XmlNameEntryCache::cacheBuffer CharU5BU5D_t3528271667* ___cacheBuffer_3; public: inline static int32_t get_offset_of_table_0() { return static_cast<int32_t>(offsetof(XmlNameEntryCache_t2890546907, ___table_0)); } inline Hashtable_t1853889766 * get_table_0() const { return ___table_0; } inline Hashtable_t1853889766 ** get_address_of_table_0() { return &___table_0; } inline void set_table_0(Hashtable_t1853889766 * value) { ___table_0 = value; Il2CppCodeGenWriteBarrier((&___table_0), value); } inline static int32_t get_offset_of_nameTable_1() { return static_cast<int32_t>(offsetof(XmlNameEntryCache_t2890546907, ___nameTable_1)); } inline XmlNameTable_t71772148 * get_nameTable_1() const { return ___nameTable_1; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_1() { return &___nameTable_1; } inline void set_nameTable_1(XmlNameTable_t71772148 * value) { ___nameTable_1 = value; Il2CppCodeGenWriteBarrier((&___nameTable_1), value); } inline static int32_t get_offset_of_dummy_2() { return static_cast<int32_t>(offsetof(XmlNameEntryCache_t2890546907, ___dummy_2)); } inline XmlNameEntry_t1073099671 * get_dummy_2() const { return ___dummy_2; } inline XmlNameEntry_t1073099671 ** get_address_of_dummy_2() { return &___dummy_2; } inline void set_dummy_2(XmlNameEntry_t1073099671 * value) { ___dummy_2 = value; Il2CppCodeGenWriteBarrier((&___dummy_2), value); } inline static int32_t get_offset_of_cacheBuffer_3() { return static_cast<int32_t>(offsetof(XmlNameEntryCache_t2890546907, ___cacheBuffer_3)); } inline CharU5BU5D_t3528271667* get_cacheBuffer_3() const { return ___cacheBuffer_3; } inline CharU5BU5D_t3528271667** get_address_of_cacheBuffer_3() { return &___cacheBuffer_3; } inline void set_cacheBuffer_3(CharU5BU5D_t3528271667* value) { ___cacheBuffer_3 = value; Il2CppCodeGenWriteBarrier((&___cacheBuffer_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNAMEENTRYCACHE_T2890546907_H #ifndef XMLNODE_T3767805227_H #define XMLNODE_T3767805227_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNode struct XmlNode_t3767805227 : public RuntimeObject { public: // System.Xml.XmlDocument System.Xml.XmlNode::ownerDocument XmlDocument_t2837193595 * ___ownerDocument_1; // System.Xml.XmlNode System.Xml.XmlNode::parentNode XmlNode_t3767805227 * ___parentNode_2; // System.Xml.XmlNodeListChildren System.Xml.XmlNode::childNodes XmlNodeListChildren_t1082692789 * ___childNodes_3; public: inline static int32_t get_offset_of_ownerDocument_1() { return static_cast<int32_t>(offsetof(XmlNode_t3767805227, ___ownerDocument_1)); } inline XmlDocument_t2837193595 * get_ownerDocument_1() const { return ___ownerDocument_1; } inline XmlDocument_t2837193595 ** get_address_of_ownerDocument_1() { return &___ownerDocument_1; } inline void set_ownerDocument_1(XmlDocument_t2837193595 * value) { ___ownerDocument_1 = value; Il2CppCodeGenWriteBarrier((&___ownerDocument_1), value); } inline static int32_t get_offset_of_parentNode_2() { return static_cast<int32_t>(offsetof(XmlNode_t3767805227, ___parentNode_2)); } inline XmlNode_t3767805227 * get_parentNode_2() const { return ___parentNode_2; } inline XmlNode_t3767805227 ** get_address_of_parentNode_2() { return &___parentNode_2; } inline void set_parentNode_2(XmlNode_t3767805227 * value) { ___parentNode_2 = value; Il2CppCodeGenWriteBarrier((&___parentNode_2), value); } inline static int32_t get_offset_of_childNodes_3() { return static_cast<int32_t>(offsetof(XmlNode_t3767805227, ___childNodes_3)); } inline XmlNodeListChildren_t1082692789 * get_childNodes_3() const { return ___childNodes_3; } inline XmlNodeListChildren_t1082692789 ** get_address_of_childNodes_3() { return &___childNodes_3; } inline void set_childNodes_3(XmlNodeListChildren_t1082692789 * value) { ___childNodes_3 = value; Il2CppCodeGenWriteBarrier((&___childNodes_3), value); } }; struct XmlNode_t3767805227_StaticFields { public: // System.Xml.XmlNode/EmptyNodeList System.Xml.XmlNode::emptyList EmptyNodeList_t139615908 * ___emptyList_0; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.XmlNode::<>f__switch$map2B Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map2B_4; public: inline static int32_t get_offset_of_emptyList_0() { return static_cast<int32_t>(offsetof(XmlNode_t3767805227_StaticFields, ___emptyList_0)); } inline EmptyNodeList_t139615908 * get_emptyList_0() const { return ___emptyList_0; } inline EmptyNodeList_t139615908 ** get_address_of_emptyList_0() { return &___emptyList_0; } inline void set_emptyList_0(EmptyNodeList_t139615908 * value) { ___emptyList_0 = value; Il2CppCodeGenWriteBarrier((&___emptyList_0), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map2B_4() { return static_cast<int32_t>(offsetof(XmlNode_t3767805227_StaticFields, ___U3CU3Ef__switchU24map2B_4)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map2B_4() const { return ___U3CU3Ef__switchU24map2B_4; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map2B_4() { return &___U3CU3Ef__switchU24map2B_4; } inline void set_U3CU3Ef__switchU24map2B_4(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map2B_4 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map2B_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNODE_T3767805227_H #ifndef LISTDICTIONARY_T1624492310_H #define LISTDICTIONARY_T1624492310_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Specialized.ListDictionary struct ListDictionary_t1624492310 : public RuntimeObject { public: // System.Int32 System.Collections.Specialized.ListDictionary::count int32_t ___count_0; // System.Int32 System.Collections.Specialized.ListDictionary::version int32_t ___version_1; // System.Collections.Specialized.ListDictionary/DictionaryNode System.Collections.Specialized.ListDictionary::head DictionaryNode_t417719465 * ___head_2; // System.Collections.IComparer System.Collections.Specialized.ListDictionary::comparer RuntimeObject* ___comparer_3; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___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_head_2() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___head_2)); } inline DictionaryNode_t417719465 * get_head_2() const { return ___head_2; } inline DictionaryNode_t417719465 ** get_address_of_head_2() { return &___head_2; } inline void set_head_2(DictionaryNode_t417719465 * value) { ___head_2 = value; Il2CppCodeGenWriteBarrier((&___head_2), value); } inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(ListDictionary_t1624492310, ___comparer_3)); } inline RuntimeObject* get_comparer_3() const { return ___comparer_3; } inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; } inline void set_comparer_3(RuntimeObject* value) { ___comparer_3 = value; Il2CppCodeGenWriteBarrier((&___comparer_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LISTDICTIONARY_T1624492310_H #ifndef XMLNAMEENTRY_T1073099671_H #define XMLNAMEENTRY_T1073099671_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNameEntry struct XmlNameEntry_t1073099671 : public RuntimeObject { public: // System.String System.Xml.XmlNameEntry::Prefix String_t* ___Prefix_0; // System.String System.Xml.XmlNameEntry::LocalName String_t* ___LocalName_1; // System.String System.Xml.XmlNameEntry::NS String_t* ___NS_2; // System.Int32 System.Xml.XmlNameEntry::Hash int32_t ___Hash_3; // System.String System.Xml.XmlNameEntry::prefixed_name_cache String_t* ___prefixed_name_cache_4; public: inline static int32_t get_offset_of_Prefix_0() { return static_cast<int32_t>(offsetof(XmlNameEntry_t1073099671, ___Prefix_0)); } inline String_t* get_Prefix_0() const { return ___Prefix_0; } inline String_t** get_address_of_Prefix_0() { return &___Prefix_0; } inline void set_Prefix_0(String_t* value) { ___Prefix_0 = value; Il2CppCodeGenWriteBarrier((&___Prefix_0), value); } inline static int32_t get_offset_of_LocalName_1() { return static_cast<int32_t>(offsetof(XmlNameEntry_t1073099671, ___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((&___LocalName_1), value); } inline static int32_t get_offset_of_NS_2() { return static_cast<int32_t>(offsetof(XmlNameEntry_t1073099671, ___NS_2)); } inline String_t* get_NS_2() const { return ___NS_2; } inline String_t** get_address_of_NS_2() { return &___NS_2; } inline void set_NS_2(String_t* value) { ___NS_2 = value; Il2CppCodeGenWriteBarrier((&___NS_2), value); } inline static int32_t get_offset_of_Hash_3() { return static_cast<int32_t>(offsetof(XmlNameEntry_t1073099671, ___Hash_3)); } inline int32_t get_Hash_3() const { return ___Hash_3; } inline int32_t* get_address_of_Hash_3() { return &___Hash_3; } inline void set_Hash_3(int32_t value) { ___Hash_3 = value; } inline static int32_t get_offset_of_prefixed_name_cache_4() { return static_cast<int32_t>(offsetof(XmlNameEntry_t1073099671, ___prefixed_name_cache_4)); } inline String_t* get_prefixed_name_cache_4() const { return ___prefixed_name_cache_4; } inline String_t** get_address_of_prefixed_name_cache_4() { return &___prefixed_name_cache_4; } inline void set_prefixed_name_cache_4(String_t* value) { ___prefixed_name_cache_4 = value; Il2CppCodeGenWriteBarrier((&___prefixed_name_cache_4), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNAMEENTRY_T1073099671_H #ifndef DTDNODE_T858560093_H #define DTDNODE_T858560093_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDNode struct DTDNode_t858560093 : public RuntimeObject { public: // Mono.Xml.DTDObjectModel Mono.Xml.DTDNode::root DTDObjectModel_t1729680289 * ___root_0; // System.Boolean Mono.Xml.DTDNode::isInternalSubset bool ___isInternalSubset_1; // System.String Mono.Xml.DTDNode::baseURI String_t* ___baseURI_2; // System.Int32 Mono.Xml.DTDNode::lineNumber int32_t ___lineNumber_3; // System.Int32 Mono.Xml.DTDNode::linePosition int32_t ___linePosition_4; public: inline static int32_t get_offset_of_root_0() { return static_cast<int32_t>(offsetof(DTDNode_t858560093, ___root_0)); } inline DTDObjectModel_t1729680289 * get_root_0() const { return ___root_0; } inline DTDObjectModel_t1729680289 ** get_address_of_root_0() { return &___root_0; } inline void set_root_0(DTDObjectModel_t1729680289 * value) { ___root_0 = value; Il2CppCodeGenWriteBarrier((&___root_0), value); } inline static int32_t get_offset_of_isInternalSubset_1() { return static_cast<int32_t>(offsetof(DTDNode_t858560093, ___isInternalSubset_1)); } inline bool get_isInternalSubset_1() const { return ___isInternalSubset_1; } inline bool* get_address_of_isInternalSubset_1() { return &___isInternalSubset_1; } inline void set_isInternalSubset_1(bool value) { ___isInternalSubset_1 = value; } inline static int32_t get_offset_of_baseURI_2() { return static_cast<int32_t>(offsetof(DTDNode_t858560093, ___baseURI_2)); } inline String_t* get_baseURI_2() const { return ___baseURI_2; } inline String_t** get_address_of_baseURI_2() { return &___baseURI_2; } inline void set_baseURI_2(String_t* value) { ___baseURI_2 = value; Il2CppCodeGenWriteBarrier((&___baseURI_2), value); } inline static int32_t get_offset_of_lineNumber_3() { return static_cast<int32_t>(offsetof(DTDNode_t858560093, ___lineNumber_3)); } inline int32_t get_lineNumber_3() const { return ___lineNumber_3; } inline int32_t* get_address_of_lineNumber_3() { return &___lineNumber_3; } inline void set_lineNumber_3(int32_t value) { ___lineNumber_3 = value; } inline static int32_t get_offset_of_linePosition_4() { return static_cast<int32_t>(offsetof(DTDNode_t858560093, ___linePosition_4)); } inline int32_t get_linePosition_4() const { return ___linePosition_4; } inline int32_t* get_address_of_linePosition_4() { return &___linePosition_4; } inline void set_linePosition_4(int32_t value) { ___linePosition_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDNODE_T858560093_H #ifndef VALUETYPE_T3640485471_H #define VALUETYPE_T3640485471_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t3640485471 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_t3640485471_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_t3640485471_marshaled_com { }; #endif // VALUETYPE_T3640485471_H #ifndef DTDOBJECTMODEL_T1729680289_H #define DTDOBJECTMODEL_T1729680289_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDObjectModel struct DTDObjectModel_t1729680289 : public RuntimeObject { public: // Mono.Xml.DTDAutomataFactory Mono.Xml.DTDObjectModel::factory DTDAutomataFactory_t2958275022 * ___factory_0; // Mono.Xml.DTDElementAutomata Mono.Xml.DTDObjectModel::rootAutomata DTDElementAutomata_t1050190167 * ___rootAutomata_1; // Mono.Xml.DTDEmptyAutomata Mono.Xml.DTDObjectModel::emptyAutomata DTDEmptyAutomata_t465590953 * ___emptyAutomata_2; // Mono.Xml.DTDAnyAutomata Mono.Xml.DTDObjectModel::anyAutomata DTDAnyAutomata_t3633486160 * ___anyAutomata_3; // Mono.Xml.DTDInvalidAutomata Mono.Xml.DTDObjectModel::invalidAutomata DTDInvalidAutomata_t1406553220 * ___invalidAutomata_4; // Mono.Xml.DTDElementDeclarationCollection Mono.Xml.DTDObjectModel::elementDecls DTDElementDeclarationCollection_t222313714 * ___elementDecls_5; // Mono.Xml.DTDAttListDeclarationCollection Mono.Xml.DTDObjectModel::attListDecls DTDAttListDeclarationCollection_t2220366188 * ___attListDecls_6; // Mono.Xml.DTDParameterEntityDeclarationCollection Mono.Xml.DTDObjectModel::peDecls DTDParameterEntityDeclarationCollection_t2844734410 * ___peDecls_7; // Mono.Xml.DTDEntityDeclarationCollection Mono.Xml.DTDObjectModel::entityDecls DTDEntityDeclarationCollection_t2250844513 * ___entityDecls_8; // Mono.Xml.DTDNotationDeclarationCollection Mono.Xml.DTDObjectModel::notationDecls DTDNotationDeclarationCollection_t959292105 * ___notationDecls_9; // System.Collections.ArrayList Mono.Xml.DTDObjectModel::validationErrors ArrayList_t2718874744 * ___validationErrors_10; // System.Xml.XmlResolver Mono.Xml.DTDObjectModel::resolver XmlResolver_t626023767 * ___resolver_11; // System.Xml.XmlNameTable Mono.Xml.DTDObjectModel::nameTable XmlNameTable_t71772148 * ___nameTable_12; // System.Collections.Hashtable Mono.Xml.DTDObjectModel::externalResources Hashtable_t1853889766 * ___externalResources_13; // System.String Mono.Xml.DTDObjectModel::baseURI String_t* ___baseURI_14; // System.String Mono.Xml.DTDObjectModel::name String_t* ___name_15; // System.String Mono.Xml.DTDObjectModel::publicId String_t* ___publicId_16; // System.String Mono.Xml.DTDObjectModel::systemId String_t* ___systemId_17; // System.String Mono.Xml.DTDObjectModel::intSubset String_t* ___intSubset_18; // System.Boolean Mono.Xml.DTDObjectModel::intSubsetHasPERef bool ___intSubsetHasPERef_19; // System.Boolean Mono.Xml.DTDObjectModel::isStandalone bool ___isStandalone_20; // System.Int32 Mono.Xml.DTDObjectModel::lineNumber int32_t ___lineNumber_21; // System.Int32 Mono.Xml.DTDObjectModel::linePosition int32_t ___linePosition_22; public: inline static int32_t get_offset_of_factory_0() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___factory_0)); } inline DTDAutomataFactory_t2958275022 * get_factory_0() const { return ___factory_0; } inline DTDAutomataFactory_t2958275022 ** get_address_of_factory_0() { return &___factory_0; } inline void set_factory_0(DTDAutomataFactory_t2958275022 * value) { ___factory_0 = value; Il2CppCodeGenWriteBarrier((&___factory_0), value); } inline static int32_t get_offset_of_rootAutomata_1() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___rootAutomata_1)); } inline DTDElementAutomata_t1050190167 * get_rootAutomata_1() const { return ___rootAutomata_1; } inline DTDElementAutomata_t1050190167 ** get_address_of_rootAutomata_1() { return &___rootAutomata_1; } inline void set_rootAutomata_1(DTDElementAutomata_t1050190167 * value) { ___rootAutomata_1 = value; Il2CppCodeGenWriteBarrier((&___rootAutomata_1), value); } inline static int32_t get_offset_of_emptyAutomata_2() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___emptyAutomata_2)); } inline DTDEmptyAutomata_t465590953 * get_emptyAutomata_2() const { return ___emptyAutomata_2; } inline DTDEmptyAutomata_t465590953 ** get_address_of_emptyAutomata_2() { return &___emptyAutomata_2; } inline void set_emptyAutomata_2(DTDEmptyAutomata_t465590953 * value) { ___emptyAutomata_2 = value; Il2CppCodeGenWriteBarrier((&___emptyAutomata_2), value); } inline static int32_t get_offset_of_anyAutomata_3() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___anyAutomata_3)); } inline DTDAnyAutomata_t3633486160 * get_anyAutomata_3() const { return ___anyAutomata_3; } inline DTDAnyAutomata_t3633486160 ** get_address_of_anyAutomata_3() { return &___anyAutomata_3; } inline void set_anyAutomata_3(DTDAnyAutomata_t3633486160 * value) { ___anyAutomata_3 = value; Il2CppCodeGenWriteBarrier((&___anyAutomata_3), value); } inline static int32_t get_offset_of_invalidAutomata_4() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___invalidAutomata_4)); } inline DTDInvalidAutomata_t1406553220 * get_invalidAutomata_4() const { return ___invalidAutomata_4; } inline DTDInvalidAutomata_t1406553220 ** get_address_of_invalidAutomata_4() { return &___invalidAutomata_4; } inline void set_invalidAutomata_4(DTDInvalidAutomata_t1406553220 * value) { ___invalidAutomata_4 = value; Il2CppCodeGenWriteBarrier((&___invalidAutomata_4), value); } inline static int32_t get_offset_of_elementDecls_5() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___elementDecls_5)); } inline DTDElementDeclarationCollection_t222313714 * get_elementDecls_5() const { return ___elementDecls_5; } inline DTDElementDeclarationCollection_t222313714 ** get_address_of_elementDecls_5() { return &___elementDecls_5; } inline void set_elementDecls_5(DTDElementDeclarationCollection_t222313714 * value) { ___elementDecls_5 = value; Il2CppCodeGenWriteBarrier((&___elementDecls_5), value); } inline static int32_t get_offset_of_attListDecls_6() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___attListDecls_6)); } inline DTDAttListDeclarationCollection_t2220366188 * get_attListDecls_6() const { return ___attListDecls_6; } inline DTDAttListDeclarationCollection_t2220366188 ** get_address_of_attListDecls_6() { return &___attListDecls_6; } inline void set_attListDecls_6(DTDAttListDeclarationCollection_t2220366188 * value) { ___attListDecls_6 = value; Il2CppCodeGenWriteBarrier((&___attListDecls_6), value); } inline static int32_t get_offset_of_peDecls_7() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___peDecls_7)); } inline DTDParameterEntityDeclarationCollection_t2844734410 * get_peDecls_7() const { return ___peDecls_7; } inline DTDParameterEntityDeclarationCollection_t2844734410 ** get_address_of_peDecls_7() { return &___peDecls_7; } inline void set_peDecls_7(DTDParameterEntityDeclarationCollection_t2844734410 * value) { ___peDecls_7 = value; Il2CppCodeGenWriteBarrier((&___peDecls_7), value); } inline static int32_t get_offset_of_entityDecls_8() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___entityDecls_8)); } inline DTDEntityDeclarationCollection_t2250844513 * get_entityDecls_8() const { return ___entityDecls_8; } inline DTDEntityDeclarationCollection_t2250844513 ** get_address_of_entityDecls_8() { return &___entityDecls_8; } inline void set_entityDecls_8(DTDEntityDeclarationCollection_t2250844513 * value) { ___entityDecls_8 = value; Il2CppCodeGenWriteBarrier((&___entityDecls_8), value); } inline static int32_t get_offset_of_notationDecls_9() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___notationDecls_9)); } inline DTDNotationDeclarationCollection_t959292105 * get_notationDecls_9() const { return ___notationDecls_9; } inline DTDNotationDeclarationCollection_t959292105 ** get_address_of_notationDecls_9() { return &___notationDecls_9; } inline void set_notationDecls_9(DTDNotationDeclarationCollection_t959292105 * value) { ___notationDecls_9 = value; Il2CppCodeGenWriteBarrier((&___notationDecls_9), value); } inline static int32_t get_offset_of_validationErrors_10() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___validationErrors_10)); } inline ArrayList_t2718874744 * get_validationErrors_10() const { return ___validationErrors_10; } inline ArrayList_t2718874744 ** get_address_of_validationErrors_10() { return &___validationErrors_10; } inline void set_validationErrors_10(ArrayList_t2718874744 * value) { ___validationErrors_10 = value; Il2CppCodeGenWriteBarrier((&___validationErrors_10), value); } inline static int32_t get_offset_of_resolver_11() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___resolver_11)); } inline XmlResolver_t626023767 * get_resolver_11() const { return ___resolver_11; } inline XmlResolver_t626023767 ** get_address_of_resolver_11() { return &___resolver_11; } inline void set_resolver_11(XmlResolver_t626023767 * value) { ___resolver_11 = value; Il2CppCodeGenWriteBarrier((&___resolver_11), value); } inline static int32_t get_offset_of_nameTable_12() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___nameTable_12)); } inline XmlNameTable_t71772148 * get_nameTable_12() const { return ___nameTable_12; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_12() { return &___nameTable_12; } inline void set_nameTable_12(XmlNameTable_t71772148 * value) { ___nameTable_12 = value; Il2CppCodeGenWriteBarrier((&___nameTable_12), value); } inline static int32_t get_offset_of_externalResources_13() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___externalResources_13)); } inline Hashtable_t1853889766 * get_externalResources_13() const { return ___externalResources_13; } inline Hashtable_t1853889766 ** get_address_of_externalResources_13() { return &___externalResources_13; } inline void set_externalResources_13(Hashtable_t1853889766 * value) { ___externalResources_13 = value; Il2CppCodeGenWriteBarrier((&___externalResources_13), value); } inline static int32_t get_offset_of_baseURI_14() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___baseURI_14)); } inline String_t* get_baseURI_14() const { return ___baseURI_14; } inline String_t** get_address_of_baseURI_14() { return &___baseURI_14; } inline void set_baseURI_14(String_t* value) { ___baseURI_14 = value; Il2CppCodeGenWriteBarrier((&___baseURI_14), value); } inline static int32_t get_offset_of_name_15() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___name_15)); } inline String_t* get_name_15() const { return ___name_15; } inline String_t** get_address_of_name_15() { return &___name_15; } inline void set_name_15(String_t* value) { ___name_15 = value; Il2CppCodeGenWriteBarrier((&___name_15), value); } inline static int32_t get_offset_of_publicId_16() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___publicId_16)); } inline String_t* get_publicId_16() const { return ___publicId_16; } inline String_t** get_address_of_publicId_16() { return &___publicId_16; } inline void set_publicId_16(String_t* value) { ___publicId_16 = value; Il2CppCodeGenWriteBarrier((&___publicId_16), value); } inline static int32_t get_offset_of_systemId_17() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___systemId_17)); } inline String_t* get_systemId_17() const { return ___systemId_17; } inline String_t** get_address_of_systemId_17() { return &___systemId_17; } inline void set_systemId_17(String_t* value) { ___systemId_17 = value; Il2CppCodeGenWriteBarrier((&___systemId_17), value); } inline static int32_t get_offset_of_intSubset_18() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___intSubset_18)); } inline String_t* get_intSubset_18() const { return ___intSubset_18; } inline String_t** get_address_of_intSubset_18() { return &___intSubset_18; } inline void set_intSubset_18(String_t* value) { ___intSubset_18 = value; Il2CppCodeGenWriteBarrier((&___intSubset_18), value); } inline static int32_t get_offset_of_intSubsetHasPERef_19() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___intSubsetHasPERef_19)); } inline bool get_intSubsetHasPERef_19() const { return ___intSubsetHasPERef_19; } inline bool* get_address_of_intSubsetHasPERef_19() { return &___intSubsetHasPERef_19; } inline void set_intSubsetHasPERef_19(bool value) { ___intSubsetHasPERef_19 = value; } inline static int32_t get_offset_of_isStandalone_20() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___isStandalone_20)); } inline bool get_isStandalone_20() const { return ___isStandalone_20; } inline bool* get_address_of_isStandalone_20() { return &___isStandalone_20; } inline void set_isStandalone_20(bool value) { ___isStandalone_20 = value; } inline static int32_t get_offset_of_lineNumber_21() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___lineNumber_21)); } inline int32_t get_lineNumber_21() const { return ___lineNumber_21; } inline int32_t* get_address_of_lineNumber_21() { return &___lineNumber_21; } inline void set_lineNumber_21(int32_t value) { ___lineNumber_21 = value; } inline static int32_t get_offset_of_linePosition_22() { return static_cast<int32_t>(offsetof(DTDObjectModel_t1729680289, ___linePosition_22)); } inline int32_t get_linePosition_22() const { return ___linePosition_22; } inline int32_t* get_address_of_linePosition_22() { return &___linePosition_22; } inline void set_linePosition_22(int32_t value) { ___linePosition_22 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDOBJECTMODEL_T1729680289_H #ifndef CODEIDENTIFIER_T2202687290_H #define CODEIDENTIFIER_T2202687290_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.CodeIdentifier struct CodeIdentifier_t2202687290 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CODEIDENTIFIER_T2202687290_H #ifndef XSDIDENTITYSTEP_T1480907129_H #define XSDIDENTITYSTEP_T1480907129_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdIdentityStep struct XsdIdentityStep_t1480907129 : public RuntimeObject { public: // System.Boolean Mono.Xml.Schema.XsdIdentityStep::IsCurrent bool ___IsCurrent_0; // System.Boolean Mono.Xml.Schema.XsdIdentityStep::IsAttribute bool ___IsAttribute_1; // System.Boolean Mono.Xml.Schema.XsdIdentityStep::IsAnyName bool ___IsAnyName_2; // System.String Mono.Xml.Schema.XsdIdentityStep::NsName String_t* ___NsName_3; // System.String Mono.Xml.Schema.XsdIdentityStep::Name String_t* ___Name_4; // System.String Mono.Xml.Schema.XsdIdentityStep::Namespace String_t* ___Namespace_5; public: inline static int32_t get_offset_of_IsCurrent_0() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___IsCurrent_0)); } inline bool get_IsCurrent_0() const { return ___IsCurrent_0; } inline bool* get_address_of_IsCurrent_0() { return &___IsCurrent_0; } inline void set_IsCurrent_0(bool value) { ___IsCurrent_0 = value; } inline static int32_t get_offset_of_IsAttribute_1() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___IsAttribute_1)); } inline bool get_IsAttribute_1() const { return ___IsAttribute_1; } inline bool* get_address_of_IsAttribute_1() { return &___IsAttribute_1; } inline void set_IsAttribute_1(bool value) { ___IsAttribute_1 = value; } inline static int32_t get_offset_of_IsAnyName_2() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___IsAnyName_2)); } inline bool get_IsAnyName_2() const { return ___IsAnyName_2; } inline bool* get_address_of_IsAnyName_2() { return &___IsAnyName_2; } inline void set_IsAnyName_2(bool value) { ___IsAnyName_2 = value; } inline static int32_t get_offset_of_NsName_3() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___NsName_3)); } inline String_t* get_NsName_3() const { return ___NsName_3; } inline String_t** get_address_of_NsName_3() { return &___NsName_3; } inline void set_NsName_3(String_t* value) { ___NsName_3 = value; Il2CppCodeGenWriteBarrier((&___NsName_3), value); } inline static int32_t get_offset_of_Name_4() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___Name_4)); } inline String_t* get_Name_4() const { return ___Name_4; } inline String_t** get_address_of_Name_4() { return &___Name_4; } inline void set_Name_4(String_t* value) { ___Name_4 = value; Il2CppCodeGenWriteBarrier((&___Name_4), value); } inline static int32_t get_offset_of_Namespace_5() { return static_cast<int32_t>(offsetof(XsdIdentityStep_t1480907129, ___Namespace_5)); } inline String_t* get_Namespace_5() const { return ___Namespace_5; } inline String_t** get_address_of_Namespace_5() { return &___Namespace_5; } inline void set_Namespace_5(String_t* value) { ___Namespace_5 = value; Il2CppCodeGenWriteBarrier((&___Namespace_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDIDENTITYSTEP_T1480907129_H #ifndef XSDIDENTITYPATH_T991900844_H #define XSDIDENTITYPATH_T991900844_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdIdentityPath struct XsdIdentityPath_t991900844 : public RuntimeObject { public: // Mono.Xml.Schema.XsdIdentityStep[] Mono.Xml.Schema.XsdIdentityPath::OrderedSteps XsdIdentityStepU5BU5D_t2964233348* ___OrderedSteps_0; // System.Boolean Mono.Xml.Schema.XsdIdentityPath::Descendants bool ___Descendants_1; public: inline static int32_t get_offset_of_OrderedSteps_0() { return static_cast<int32_t>(offsetof(XsdIdentityPath_t991900844, ___OrderedSteps_0)); } inline XsdIdentityStepU5BU5D_t2964233348* get_OrderedSteps_0() const { return ___OrderedSteps_0; } inline XsdIdentityStepU5BU5D_t2964233348** get_address_of_OrderedSteps_0() { return &___OrderedSteps_0; } inline void set_OrderedSteps_0(XsdIdentityStepU5BU5D_t2964233348* value) { ___OrderedSteps_0 = value; Il2CppCodeGenWriteBarrier((&___OrderedSteps_0), value); } inline static int32_t get_offset_of_Descendants_1() { return static_cast<int32_t>(offsetof(XsdIdentityPath_t991900844, ___Descendants_1)); } inline bool get_Descendants_1() const { return ___Descendants_1; } inline bool* get_address_of_Descendants_1() { return &___Descendants_1; } inline void set_Descendants_1(bool value) { ___Descendants_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDIDENTITYPATH_T991900844_H #ifndef MEMBERINFO_T_H #define MEMBERINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMBERINFO_T_H #ifndef ATTRIBUTE_T861562559_H #define ATTRIBUTE_T861562559_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Attribute struct Attribute_t861562559 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ATTRIBUTE_T861562559_H #ifndef TYPETRANSLATOR_T3446962748_H #define TYPETRANSLATOR_T3446962748_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.TypeTranslator struct TypeTranslator_t3446962748 : public RuntimeObject { public: public: }; struct TypeTranslator_t3446962748_StaticFields { public: // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::nameCache Hashtable_t1853889766 * ___nameCache_0; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::primitiveTypes Hashtable_t1853889766 * ___primitiveTypes_1; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::primitiveArrayTypes Hashtable_t1853889766 * ___primitiveArrayTypes_2; // System.Collections.Hashtable System.Xml.Serialization.TypeTranslator::nullableTypes Hashtable_t1853889766 * ___nullableTypes_3; public: inline static int32_t get_offset_of_nameCache_0() { return static_cast<int32_t>(offsetof(TypeTranslator_t3446962748_StaticFields, ___nameCache_0)); } inline Hashtable_t1853889766 * get_nameCache_0() const { return ___nameCache_0; } inline Hashtable_t1853889766 ** get_address_of_nameCache_0() { return &___nameCache_0; } inline void set_nameCache_0(Hashtable_t1853889766 * value) { ___nameCache_0 = value; Il2CppCodeGenWriteBarrier((&___nameCache_0), value); } inline static int32_t get_offset_of_primitiveTypes_1() { return static_cast<int32_t>(offsetof(TypeTranslator_t3446962748_StaticFields, ___primitiveTypes_1)); } inline Hashtable_t1853889766 * get_primitiveTypes_1() const { return ___primitiveTypes_1; } inline Hashtable_t1853889766 ** get_address_of_primitiveTypes_1() { return &___primitiveTypes_1; } inline void set_primitiveTypes_1(Hashtable_t1853889766 * value) { ___primitiveTypes_1 = value; Il2CppCodeGenWriteBarrier((&___primitiveTypes_1), value); } inline static int32_t get_offset_of_primitiveArrayTypes_2() { return static_cast<int32_t>(offsetof(TypeTranslator_t3446962748_StaticFields, ___primitiveArrayTypes_2)); } inline Hashtable_t1853889766 * get_primitiveArrayTypes_2() const { return ___primitiveArrayTypes_2; } inline Hashtable_t1853889766 ** get_address_of_primitiveArrayTypes_2() { return &___primitiveArrayTypes_2; } inline void set_primitiveArrayTypes_2(Hashtable_t1853889766 * value) { ___primitiveArrayTypes_2 = value; Il2CppCodeGenWriteBarrier((&___primitiveArrayTypes_2), value); } inline static int32_t get_offset_of_nullableTypes_3() { return static_cast<int32_t>(offsetof(TypeTranslator_t3446962748_StaticFields, ___nullableTypes_3)); } inline Hashtable_t1853889766 * get_nullableTypes_3() const { return ___nullableTypes_3; } inline Hashtable_t1853889766 ** get_address_of_nullableTypes_3() { return &___nullableTypes_3; } inline void set_nullableTypes_3(Hashtable_t1853889766 * value) { ___nullableTypes_3 = value; Il2CppCodeGenWriteBarrier((&___nullableTypes_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPETRANSLATOR_T3446962748_H #ifndef BINDER_T2999457153_H #define BINDER_T2999457153_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.Binder struct Binder_t2999457153 : public RuntimeObject { public: public: }; struct Binder_t2999457153_StaticFields { public: // System.Reflection.Binder System.Reflection.Binder::default_binder Binder_t2999457153 * ___default_binder_0; public: inline static int32_t get_offset_of_default_binder_0() { return static_cast<int32_t>(offsetof(Binder_t2999457153_StaticFields, ___default_binder_0)); } inline Binder_t2999457153 * get_default_binder_0() const { return ___default_binder_0; } inline Binder_t2999457153 ** get_address_of_default_binder_0() { return &___default_binder_0; } inline void set_default_binder_0(Binder_t2999457153 * value) { ___default_binder_0 = value; Il2CppCodeGenWriteBarrier((&___default_binder_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDER_T2999457153_H #ifndef HASHTABLE_T1853889766_H #define HASHTABLE_T1853889766_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Hashtable struct Hashtable_t1853889766 : public RuntimeObject { public: // System.Int32 System.Collections.Hashtable::inUse int32_t ___inUse_1; // System.Int32 System.Collections.Hashtable::modificationCount int32_t ___modificationCount_2; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_3; // System.Collections.Hashtable/Slot[] System.Collections.Hashtable::table SlotU5BU5D_t2994659099* ___table_4; // System.Int32[] System.Collections.Hashtable::hashes Int32U5BU5D_t385246372* ___hashes_5; // System.Int32 System.Collections.Hashtable::threshold int32_t ___threshold_6; // System.Collections.Hashtable/HashKeys System.Collections.Hashtable::hashKeys HashKeys_t1568156503 * ___hashKeys_7; // System.Collections.Hashtable/HashValues System.Collections.Hashtable::hashValues HashValues_t618387445 * ___hashValues_8; // System.Collections.IHashCodeProvider System.Collections.Hashtable::hcpRef RuntimeObject* ___hcpRef_9; // System.Collections.IComparer System.Collections.Hashtable::comparerRef RuntimeObject* ___comparerRef_10; // System.Runtime.Serialization.SerializationInfo System.Collections.Hashtable::serializationInfo SerializationInfo_t950877179 * ___serializationInfo_11; // System.Collections.IEqualityComparer System.Collections.Hashtable::equalityComparer RuntimeObject* ___equalityComparer_12; public: inline static int32_t get_offset_of_inUse_1() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___inUse_1)); } inline int32_t get_inUse_1() const { return ___inUse_1; } inline int32_t* get_address_of_inUse_1() { return &___inUse_1; } inline void set_inUse_1(int32_t value) { ___inUse_1 = value; } inline static int32_t get_offset_of_modificationCount_2() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___modificationCount_2)); } inline int32_t get_modificationCount_2() const { return ___modificationCount_2; } inline int32_t* get_address_of_modificationCount_2() { return &___modificationCount_2; } inline void set_modificationCount_2(int32_t value) { ___modificationCount_2 = value; } inline static int32_t get_offset_of_loadFactor_3() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___loadFactor_3)); } inline float get_loadFactor_3() const { return ___loadFactor_3; } inline float* get_address_of_loadFactor_3() { return &___loadFactor_3; } inline void set_loadFactor_3(float value) { ___loadFactor_3 = value; } inline static int32_t get_offset_of_table_4() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___table_4)); } inline SlotU5BU5D_t2994659099* get_table_4() const { return ___table_4; } inline SlotU5BU5D_t2994659099** get_address_of_table_4() { return &___table_4; } inline void set_table_4(SlotU5BU5D_t2994659099* value) { ___table_4 = value; Il2CppCodeGenWriteBarrier((&___table_4), value); } inline static int32_t get_offset_of_hashes_5() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashes_5)); } inline Int32U5BU5D_t385246372* get_hashes_5() const { return ___hashes_5; } inline Int32U5BU5D_t385246372** get_address_of_hashes_5() { return &___hashes_5; } inline void set_hashes_5(Int32U5BU5D_t385246372* value) { ___hashes_5 = value; Il2CppCodeGenWriteBarrier((&___hashes_5), value); } inline static int32_t get_offset_of_threshold_6() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___threshold_6)); } inline int32_t get_threshold_6() const { return ___threshold_6; } inline int32_t* get_address_of_threshold_6() { return &___threshold_6; } inline void set_threshold_6(int32_t value) { ___threshold_6 = value; } inline static int32_t get_offset_of_hashKeys_7() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashKeys_7)); } inline HashKeys_t1568156503 * get_hashKeys_7() const { return ___hashKeys_7; } inline HashKeys_t1568156503 ** get_address_of_hashKeys_7() { return &___hashKeys_7; } inline void set_hashKeys_7(HashKeys_t1568156503 * value) { ___hashKeys_7 = value; Il2CppCodeGenWriteBarrier((&___hashKeys_7), value); } inline static int32_t get_offset_of_hashValues_8() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hashValues_8)); } inline HashValues_t618387445 * get_hashValues_8() const { return ___hashValues_8; } inline HashValues_t618387445 ** get_address_of_hashValues_8() { return &___hashValues_8; } inline void set_hashValues_8(HashValues_t618387445 * value) { ___hashValues_8 = value; Il2CppCodeGenWriteBarrier((&___hashValues_8), value); } inline static int32_t get_offset_of_hcpRef_9() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___hcpRef_9)); } inline RuntimeObject* get_hcpRef_9() const { return ___hcpRef_9; } inline RuntimeObject** get_address_of_hcpRef_9() { return &___hcpRef_9; } inline void set_hcpRef_9(RuntimeObject* value) { ___hcpRef_9 = value; Il2CppCodeGenWriteBarrier((&___hcpRef_9), value); } inline static int32_t get_offset_of_comparerRef_10() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___comparerRef_10)); } inline RuntimeObject* get_comparerRef_10() const { return ___comparerRef_10; } inline RuntimeObject** get_address_of_comparerRef_10() { return &___comparerRef_10; } inline void set_comparerRef_10(RuntimeObject* value) { ___comparerRef_10 = value; Il2CppCodeGenWriteBarrier((&___comparerRef_10), value); } inline static int32_t get_offset_of_serializationInfo_11() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___serializationInfo_11)); } inline SerializationInfo_t950877179 * get_serializationInfo_11() const { return ___serializationInfo_11; } inline SerializationInfo_t950877179 ** get_address_of_serializationInfo_11() { return &___serializationInfo_11; } inline void set_serializationInfo_11(SerializationInfo_t950877179 * value) { ___serializationInfo_11 = value; Il2CppCodeGenWriteBarrier((&___serializationInfo_11), value); } inline static int32_t get_offset_of_equalityComparer_12() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766, ___equalityComparer_12)); } inline RuntimeObject* get_equalityComparer_12() const { return ___equalityComparer_12; } inline RuntimeObject** get_address_of_equalityComparer_12() { return &___equalityComparer_12; } inline void set_equalityComparer_12(RuntimeObject* value) { ___equalityComparer_12 = value; Il2CppCodeGenWriteBarrier((&___equalityComparer_12), value); } }; struct Hashtable_t1853889766_StaticFields { public: // System.Int32[] System.Collections.Hashtable::primeTbl Int32U5BU5D_t385246372* ___primeTbl_13; public: inline static int32_t get_offset_of_primeTbl_13() { return static_cast<int32_t>(offsetof(Hashtable_t1853889766_StaticFields, ___primeTbl_13)); } inline Int32U5BU5D_t385246372* get_primeTbl_13() const { return ___primeTbl_13; } inline Int32U5BU5D_t385246372** get_address_of_primeTbl_13() { return &___primeTbl_13; } inline void set_primeTbl_13(Int32U5BU5D_t385246372* value) { ___primeTbl_13 = value; Il2CppCodeGenWriteBarrier((&___primeTbl_13), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // HASHTABLE_T1853889766_H #ifndef XMLSCHEMAOBJECTENUMERATOR_T503074204_H #define XMLSCHEMAOBJECTENUMERATOR_T503074204_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObjectEnumerator struct XmlSchemaObjectEnumerator_t503074204 : public RuntimeObject { public: // System.Collections.IEnumerator System.Xml.Schema.XmlSchemaObjectEnumerator::ienum RuntimeObject* ___ienum_0; public: inline static int32_t get_offset_of_ienum_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectEnumerator_t503074204, ___ienum_0)); } inline RuntimeObject* get_ienum_0() const { return ___ienum_0; } inline RuntimeObject** get_address_of_ienum_0() { return &___ienum_0; } inline void set_ienum_0(RuntimeObject* value) { ___ienum_0 = value; Il2CppCodeGenWriteBarrier((&___ienum_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAOBJECTENUMERATOR_T503074204_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::length int32_t ___length_0; // System.Char System.String::start_char Il2CppChar ___start_char_1; public: inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); } inline int32_t get_length_0() const { return ___length_0; } inline int32_t* get_address_of_length_0() { return &___length_0; } inline void set_length_0(int32_t value) { ___length_0 = value; } inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); } inline Il2CppChar get_start_char_1() const { return ___start_char_1; } inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; } inline void set_start_char_1(Il2CppChar value) { ___start_char_1 = value; } }; struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_2; // System.Char[] System.String::WhiteChars CharU5BU5D_t3528271667* ___WhiteChars_3; public: inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); } inline String_t* get_Empty_2() const { return ___Empty_2; } inline String_t** get_address_of_Empty_2() { return &___Empty_2; } inline void set_Empty_2(String_t* value) { ___Empty_2 = value; Il2CppCodeGenWriteBarrier((&___Empty_2), value); } inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); } inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; } inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; } inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value) { ___WhiteChars_3 = value; Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef XMLREADER_T3121518892_H #define XMLREADER_T3121518892_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlReader struct XmlReader_t3121518892 : public RuntimeObject { public: // System.Text.StringBuilder System.Xml.XmlReader::readStringBuffer StringBuilder_t * ___readStringBuffer_0; // System.Xml.XmlReaderBinarySupport System.Xml.XmlReader::binary XmlReaderBinarySupport_t1809665003 * ___binary_1; // System.Xml.XmlReaderSettings System.Xml.XmlReader::settings XmlReaderSettings_t2186285234 * ___settings_2; public: inline static int32_t get_offset_of_readStringBuffer_0() { return static_cast<int32_t>(offsetof(XmlReader_t3121518892, ___readStringBuffer_0)); } inline StringBuilder_t * get_readStringBuffer_0() const { return ___readStringBuffer_0; } inline StringBuilder_t ** get_address_of_readStringBuffer_0() { return &___readStringBuffer_0; } inline void set_readStringBuffer_0(StringBuilder_t * value) { ___readStringBuffer_0 = value; Il2CppCodeGenWriteBarrier((&___readStringBuffer_0), value); } inline static int32_t get_offset_of_binary_1() { return static_cast<int32_t>(offsetof(XmlReader_t3121518892, ___binary_1)); } inline XmlReaderBinarySupport_t1809665003 * get_binary_1() const { return ___binary_1; } inline XmlReaderBinarySupport_t1809665003 ** get_address_of_binary_1() { return &___binary_1; } inline void set_binary_1(XmlReaderBinarySupport_t1809665003 * value) { ___binary_1 = value; Il2CppCodeGenWriteBarrier((&___binary_1), value); } inline static int32_t get_offset_of_settings_2() { return static_cast<int32_t>(offsetof(XmlReader_t3121518892, ___settings_2)); } inline XmlReaderSettings_t2186285234 * get_settings_2() const { return ___settings_2; } inline XmlReaderSettings_t2186285234 ** get_address_of_settings_2() { return &___settings_2; } inline void set_settings_2(XmlReaderSettings_t2186285234 * value) { ___settings_2 = value; Il2CppCodeGenWriteBarrier((&___settings_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLREADER_T3121518892_H #ifndef XMLSCHEMAOBJECTTABLE_T2546974348_H #define XMLSCHEMAOBJECTTABLE_T2546974348_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObjectTable struct XmlSchemaObjectTable_t2546974348 : public RuntimeObject { public: // System.Collections.Specialized.HybridDictionary System.Xml.Schema.XmlSchemaObjectTable::table HybridDictionary_t4070033136 * ___table_0; public: inline static int32_t get_offset_of_table_0() { return static_cast<int32_t>(offsetof(XmlSchemaObjectTable_t2546974348, ___table_0)); } inline HybridDictionary_t4070033136 * get_table_0() const { return ___table_0; } inline HybridDictionary_t4070033136 ** get_address_of_table_0() { return &___table_0; } inline void set_table_0(HybridDictionary_t4070033136 * value) { ___table_0 = value; Il2CppCodeGenWriteBarrier((&___table_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAOBJECTTABLE_T2546974348_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.IntPtr[] System.Exception::trace_ips IntPtrU5BU5D_t4013366056* ___trace_ips_0; // System.Exception System.Exception::inner_exception Exception_t * ___inner_exception_1; // System.String System.Exception::message String_t* ___message_2; // System.String System.Exception::help_link String_t* ___help_link_3; // System.String System.Exception::class_name String_t* ___class_name_4; // System.String System.Exception::stack_trace String_t* ___stack_trace_5; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_6; // System.Int32 System.Exception::remote_stack_index int32_t ___remote_stack_index_7; // System.Int32 System.Exception::hresult int32_t ___hresult_8; // System.String System.Exception::source String_t* ___source_9; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_10; public: inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); } inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; } inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; } inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value) { ___trace_ips_0 = value; Il2CppCodeGenWriteBarrier((&___trace_ips_0), value); } inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); } inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; } inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; } inline void set_inner_exception_1(Exception_t * value) { ___inner_exception_1 = value; Il2CppCodeGenWriteBarrier((&___inner_exception_1), value); } inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); } inline String_t* get_message_2() const { return ___message_2; } inline String_t** get_address_of_message_2() { return &___message_2; } inline void set_message_2(String_t* value) { ___message_2 = value; Il2CppCodeGenWriteBarrier((&___message_2), value); } inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); } inline String_t* get_help_link_3() const { return ___help_link_3; } inline String_t** get_address_of_help_link_3() { return &___help_link_3; } inline void set_help_link_3(String_t* value) { ___help_link_3 = value; Il2CppCodeGenWriteBarrier((&___help_link_3), value); } inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); } inline String_t* get_class_name_4() const { return ___class_name_4; } inline String_t** get_address_of_class_name_4() { return &___class_name_4; } inline void set_class_name_4(String_t* value) { ___class_name_4 = value; Il2CppCodeGenWriteBarrier((&___class_name_4), value); } inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); } inline String_t* get_stack_trace_5() const { return ___stack_trace_5; } inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; } inline void set_stack_trace_5(String_t* value) { ___stack_trace_5 = value; Il2CppCodeGenWriteBarrier((&___stack_trace_5), value); } inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); } inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; } inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; } inline void set__remoteStackTraceString_6(String_t* value) { ____remoteStackTraceString_6 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value); } inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); } inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; } inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; } inline void set_remote_stack_index_7(int32_t value) { ___remote_stack_index_7 = value; } inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); } inline int32_t get_hresult_8() const { return ___hresult_8; } inline int32_t* get_address_of_hresult_8() { return &___hresult_8; } inline void set_hresult_8(int32_t value) { ___hresult_8 = value; } inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); } inline String_t* get_source_9() const { return ___source_9; } inline String_t** get_address_of_source_9() { return &___source_9; } inline void set_source_9(String_t* value) { ___source_9 = value; Il2CppCodeGenWriteBarrier((&___source_9), value); } inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); } inline RuntimeObject* get__data_10() const { return ____data_10; } inline RuntimeObject** get_address_of__data_10() { return &____data_10; } inline void set__data_10(RuntimeObject* value) { ____data_10 = value; Il2CppCodeGenWriteBarrier((&____data_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // EXCEPTION_T_H #ifndef CHAR_T3634460470_H #define CHAR_T3634460470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_t3634460470 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Char_t3634460470, ___m_value_2)); } inline Il2CppChar get_m_value_2() const { return ___m_value_2; } inline Il2CppChar* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(Il2CppChar value) { ___m_value_2 = value; } }; struct Char_t3634460470_StaticFields { public: // System.Byte* System.Char::category_data uint8_t* ___category_data_3; // System.Byte* System.Char::numeric_data uint8_t* ___numeric_data_4; // System.Double* System.Char::numeric_data_values double* ___numeric_data_values_5; // System.UInt16* System.Char::to_lower_data_low uint16_t* ___to_lower_data_low_6; // System.UInt16* System.Char::to_lower_data_high uint16_t* ___to_lower_data_high_7; // System.UInt16* System.Char::to_upper_data_low uint16_t* ___to_upper_data_low_8; // System.UInt16* System.Char::to_upper_data_high uint16_t* ___to_upper_data_high_9; public: inline static int32_t get_offset_of_category_data_3() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___category_data_3)); } inline uint8_t* get_category_data_3() const { return ___category_data_3; } inline uint8_t** get_address_of_category_data_3() { return &___category_data_3; } inline void set_category_data_3(uint8_t* value) { ___category_data_3 = value; } inline static int32_t get_offset_of_numeric_data_4() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_4)); } inline uint8_t* get_numeric_data_4() const { return ___numeric_data_4; } inline uint8_t** get_address_of_numeric_data_4() { return &___numeric_data_4; } inline void set_numeric_data_4(uint8_t* value) { ___numeric_data_4 = value; } inline static int32_t get_offset_of_numeric_data_values_5() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___numeric_data_values_5)); } inline double* get_numeric_data_values_5() const { return ___numeric_data_values_5; } inline double** get_address_of_numeric_data_values_5() { return &___numeric_data_values_5; } inline void set_numeric_data_values_5(double* value) { ___numeric_data_values_5 = value; } inline static int32_t get_offset_of_to_lower_data_low_6() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_low_6)); } inline uint16_t* get_to_lower_data_low_6() const { return ___to_lower_data_low_6; } inline uint16_t** get_address_of_to_lower_data_low_6() { return &___to_lower_data_low_6; } inline void set_to_lower_data_low_6(uint16_t* value) { ___to_lower_data_low_6 = value; } inline static int32_t get_offset_of_to_lower_data_high_7() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_lower_data_high_7)); } inline uint16_t* get_to_lower_data_high_7() const { return ___to_lower_data_high_7; } inline uint16_t** get_address_of_to_lower_data_high_7() { return &___to_lower_data_high_7; } inline void set_to_lower_data_high_7(uint16_t* value) { ___to_lower_data_high_7 = value; } inline static int32_t get_offset_of_to_upper_data_low_8() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_low_8)); } inline uint16_t* get_to_upper_data_low_8() const { return ___to_upper_data_low_8; } inline uint16_t** get_address_of_to_upper_data_low_8() { return &___to_upper_data_low_8; } inline void set_to_upper_data_low_8(uint16_t* value) { ___to_upper_data_low_8 = value; } inline static int32_t get_offset_of_to_upper_data_high_9() { return static_cast<int32_t>(offsetof(Char_t3634460470_StaticFields, ___to_upper_data_high_9)); } inline uint16_t* get_to_upper_data_high_9() const { return ___to_upper_data_high_9; } inline uint16_t** get_address_of_to_upper_data_high_9() { return &___to_upper_data_high_9; } inline void set_to_upper_data_high_9(uint16_t* value) { ___to_upper_data_high_9 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_T3634460470_H #ifndef DICTIONARYENTRY_T3123975638_H #define DICTIONARYENTRY_T3123975638_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638 { public: // System.Object System.Collections.DictionaryEntry::_key RuntimeObject * ____key_0; // System.Object System.Collections.DictionaryEntry::_value RuntimeObject * ____value_1; public: inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____key_0)); } inline RuntimeObject * get__key_0() const { return ____key_0; } inline RuntimeObject ** get_address_of__key_0() { return &____key_0; } inline void set__key_0(RuntimeObject * value) { ____key_0 = value; Il2CppCodeGenWriteBarrier((&____key_0), value); } inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_t3123975638, ____value_1)); } inline RuntimeObject * get__value_1() const { return ____value_1; } inline RuntimeObject ** get_address_of__value_1() { return &____value_1; } inline void set__value_1(RuntimeObject * value) { ____value_1 = value; Il2CppCodeGenWriteBarrier((&____value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_pinvoke { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; // Native definition for COM marshalling of System.Collections.DictionaryEntry struct DictionaryEntry_t3123975638_marshaled_com { Il2CppIUnknown* ____key_0; Il2CppIUnknown* ____value_1; }; #endif // DICTIONARYENTRY_T3123975638_H #ifndef XMLATTRIBUTEATTRIBUTE_T2511360870_H #define XMLATTRIBUTEATTRIBUTE_T2511360870_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlAttributeAttribute struct XmlAttributeAttribute_t2511360870 : public Attribute_t861562559 { public: // System.String System.Xml.Serialization.XmlAttributeAttribute::attributeName String_t* ___attributeName_0; // System.String System.Xml.Serialization.XmlAttributeAttribute::dataType String_t* ___dataType_1; public: inline static int32_t get_offset_of_attributeName_0() { return static_cast<int32_t>(offsetof(XmlAttributeAttribute_t2511360870, ___attributeName_0)); } inline String_t* get_attributeName_0() const { return ___attributeName_0; } inline String_t** get_address_of_attributeName_0() { return &___attributeName_0; } inline void set_attributeName_0(String_t* value) { ___attributeName_0 = value; Il2CppCodeGenWriteBarrier((&___attributeName_0), value); } inline static int32_t get_offset_of_dataType_1() { return static_cast<int32_t>(offsetof(XmlAttributeAttribute_t2511360870, ___dataType_1)); } inline String_t* get_dataType_1() const { return ___dataType_1; } inline String_t** get_address_of_dataType_1() { return &___dataType_1; } inline void set_dataType_1(String_t* value) { ___dataType_1 = value; Il2CppCodeGenWriteBarrier((&___dataType_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLATTRIBUTEATTRIBUTE_T2511360870_H #ifndef INT32_T2950945753_H #define INT32_T2950945753_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t2950945753 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); } inline int32_t get_m_value_2() const { return ___m_value_2; } inline int32_t* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(int32_t value) { ___m_value_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T2950945753_H #ifndef U24ARRAYTYPEU248_T3244137464_H #define U24ARRAYTYPEU248_T3244137464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$8 struct U24ArrayTypeU248_t3244137464 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU248_t3244137464__padding[8]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU248_T3244137464_H #ifndef XMLANYELEMENTATTRIBUTE_T4038919363_H #define XMLANYELEMENTATTRIBUTE_T4038919363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlAnyElementAttribute struct XmlAnyElementAttribute_t4038919363 : public Attribute_t861562559 { public: // System.Int32 System.Xml.Serialization.XmlAnyElementAttribute::order int32_t ___order_0; public: inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(XmlAnyElementAttribute_t4038919363, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLANYELEMENTATTRIBUTE_T4038919363_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef SYSTEMEXCEPTION_T176217640_H #define SYSTEMEXCEPTION_T176217640_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t176217640 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T176217640_H #ifndef ENUM_T4135868527_H #define ENUM_T4135868527_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Enum struct Enum_t4135868527 : public ValueType_t3640485471 { public: public: }; struct Enum_t4135868527_StaticFields { public: // System.Char[] System.Enum::split_char CharU5BU5D_t3528271667* ___split_char_0; public: inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); } inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; } inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; } inline void set_split_char_0(CharU5BU5D_t3528271667* value) { ___split_char_0 = value; Il2CppCodeGenWriteBarrier((&___split_char_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Enum struct Enum_t4135868527_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t4135868527_marshaled_com { }; #endif // ENUM_T4135868527_H #ifndef DTDATTLISTDECLARATION_T3593159715_H #define DTDATTLISTDECLARATION_T3593159715_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDAttListDeclaration struct DTDAttListDeclaration_t3593159715 : public DTDNode_t858560093 { public: // System.String Mono.Xml.DTDAttListDeclaration::name String_t* ___name_5; // System.Collections.Hashtable Mono.Xml.DTDAttListDeclaration::attributeOrders Hashtable_t1853889766 * ___attributeOrders_6; // System.Collections.ArrayList Mono.Xml.DTDAttListDeclaration::attributes ArrayList_t2718874744 * ___attributes_7; public: inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(DTDAttListDeclaration_t3593159715, ___name_5)); } inline String_t* get_name_5() const { return ___name_5; } inline String_t** get_address_of_name_5() { return &___name_5; } inline void set_name_5(String_t* value) { ___name_5 = value; Il2CppCodeGenWriteBarrier((&___name_5), value); } inline static int32_t get_offset_of_attributeOrders_6() { return static_cast<int32_t>(offsetof(DTDAttListDeclaration_t3593159715, ___attributeOrders_6)); } inline Hashtable_t1853889766 * get_attributeOrders_6() const { return ___attributeOrders_6; } inline Hashtable_t1853889766 ** get_address_of_attributeOrders_6() { return &___attributeOrders_6; } inline void set_attributeOrders_6(Hashtable_t1853889766 * value) { ___attributeOrders_6 = value; Il2CppCodeGenWriteBarrier((&___attributeOrders_6), value); } inline static int32_t get_offset_of_attributes_7() { return static_cast<int32_t>(offsetof(DTDAttListDeclaration_t3593159715, ___attributes_7)); } inline ArrayList_t2718874744 * get_attributes_7() const { return ___attributes_7; } inline ArrayList_t2718874744 ** get_address_of_attributes_7() { return &___attributes_7; } inline void set_attributes_7(ArrayList_t2718874744 * value) { ___attributes_7 = value; Il2CppCodeGenWriteBarrier((&___attributes_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDATTLISTDECLARATION_T3593159715_H #ifndef VOID_T1185182177_H #define VOID_T1185182177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t1185182177 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T1185182177_H #ifndef XMLLINKEDNODE_T1437094927_H #define XMLLINKEDNODE_T1437094927_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlLinkedNode struct XmlLinkedNode_t1437094927 : public XmlNode_t3767805227 { public: // System.Xml.XmlLinkedNode System.Xml.XmlLinkedNode::nextSibling XmlLinkedNode_t1437094927 * ___nextSibling_5; public: inline static int32_t get_offset_of_nextSibling_5() { return static_cast<int32_t>(offsetof(XmlLinkedNode_t1437094927, ___nextSibling_5)); } inline XmlLinkedNode_t1437094927 * get_nextSibling_5() const { return ___nextSibling_5; } inline XmlLinkedNode_t1437094927 ** get_address_of_nextSibling_5() { return &___nextSibling_5; } inline void set_nextSibling_5(XmlLinkedNode_t1437094927 * value) { ___nextSibling_5 = value; Il2CppCodeGenWriteBarrier((&___nextSibling_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLLINKEDNODE_T1437094927_H #ifndef XMLIGNOREATTRIBUTE_T1428424057_H #define XMLIGNOREATTRIBUTE_T1428424057_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlIgnoreAttribute struct XmlIgnoreAttribute_t1428424057 : public Attribute_t861562559 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLIGNOREATTRIBUTE_T1428424057_H #ifndef XMLNAMESPACEDECLARATIONSATTRIBUTE_T966425202_H #define XMLNAMESPACEDECLARATIONSATTRIBUTE_T966425202_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlNamespaceDeclarationsAttribute struct XmlNamespaceDeclarationsAttribute_t966425202 : public Attribute_t861562559 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNAMESPACEDECLARATIONSATTRIBUTE_T966425202_H #ifndef XMLROOTATTRIBUTE_T2306097217_H #define XMLROOTATTRIBUTE_T2306097217_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlRootAttribute struct XmlRootAttribute_t2306097217 : public Attribute_t861562559 { public: // System.String System.Xml.Serialization.XmlRootAttribute::elementName String_t* ___elementName_0; // System.Boolean System.Xml.Serialization.XmlRootAttribute::isNullable bool ___isNullable_1; // System.String System.Xml.Serialization.XmlRootAttribute::ns String_t* ___ns_2; public: inline static int32_t get_offset_of_elementName_0() { return static_cast<int32_t>(offsetof(XmlRootAttribute_t2306097217, ___elementName_0)); } inline String_t* get_elementName_0() const { return ___elementName_0; } inline String_t** get_address_of_elementName_0() { return &___elementName_0; } inline void set_elementName_0(String_t* value) { ___elementName_0 = value; Il2CppCodeGenWriteBarrier((&___elementName_0), value); } inline static int32_t get_offset_of_isNullable_1() { return static_cast<int32_t>(offsetof(XmlRootAttribute_t2306097217, ___isNullable_1)); } inline bool get_isNullable_1() const { return ___isNullable_1; } inline bool* get_address_of_isNullable_1() { return &___isNullable_1; } inline void set_isNullable_1(bool value) { ___isNullable_1 = value; } inline static int32_t get_offset_of_ns_2() { return static_cast<int32_t>(offsetof(XmlRootAttribute_t2306097217, ___ns_2)); } inline String_t* get_ns_2() const { return ___ns_2; } inline String_t** get_address_of_ns_2() { return &___ns_2; } inline void set_ns_2(String_t* value) { ___ns_2 = value; Il2CppCodeGenWriteBarrier((&___ns_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLROOTATTRIBUTE_T2306097217_H #ifndef XMLENUMATTRIBUTE_T106705320_H #define XMLENUMATTRIBUTE_T106705320_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlEnumAttribute struct XmlEnumAttribute_t106705320 : public Attribute_t861562559 { public: // System.String System.Xml.Serialization.XmlEnumAttribute::name String_t* ___name_0; public: inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(XmlEnumAttribute_t106705320, ___name_0)); } inline String_t* get_name_0() const { return ___name_0; } inline String_t** get_address_of_name_0() { return &___name_0; } inline void set_name_0(String_t* value) { ___name_0 = value; Il2CppCodeGenWriteBarrier((&___name_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLENUMATTRIBUTE_T106705320_H #ifndef XMLATTRIBUTE_T1173852259_H #define XMLATTRIBUTE_T1173852259_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlAttribute struct XmlAttribute_t1173852259 : public XmlNode_t3767805227 { public: // System.Xml.XmlNameEntry System.Xml.XmlAttribute::name XmlNameEntry_t1073099671 * ___name_5; // System.Boolean System.Xml.XmlAttribute::isDefault bool ___isDefault_6; // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::lastLinkedChild XmlLinkedNode_t1437094927 * ___lastLinkedChild_7; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlAttribute::schemaInfo RuntimeObject* ___schemaInfo_8; public: inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(XmlAttribute_t1173852259, ___name_5)); } inline XmlNameEntry_t1073099671 * get_name_5() const { return ___name_5; } inline XmlNameEntry_t1073099671 ** get_address_of_name_5() { return &___name_5; } inline void set_name_5(XmlNameEntry_t1073099671 * value) { ___name_5 = value; Il2CppCodeGenWriteBarrier((&___name_5), value); } inline static int32_t get_offset_of_isDefault_6() { return static_cast<int32_t>(offsetof(XmlAttribute_t1173852259, ___isDefault_6)); } inline bool get_isDefault_6() const { return ___isDefault_6; } inline bool* get_address_of_isDefault_6() { return &___isDefault_6; } inline void set_isDefault_6(bool value) { ___isDefault_6 = value; } inline static int32_t get_offset_of_lastLinkedChild_7() { return static_cast<int32_t>(offsetof(XmlAttribute_t1173852259, ___lastLinkedChild_7)); } inline XmlLinkedNode_t1437094927 * get_lastLinkedChild_7() const { return ___lastLinkedChild_7; } inline XmlLinkedNode_t1437094927 ** get_address_of_lastLinkedChild_7() { return &___lastLinkedChild_7; } inline void set_lastLinkedChild_7(XmlLinkedNode_t1437094927 * value) { ___lastLinkedChild_7 = value; Il2CppCodeGenWriteBarrier((&___lastLinkedChild_7), value); } inline static int32_t get_offset_of_schemaInfo_8() { return static_cast<int32_t>(offsetof(XmlAttribute_t1173852259, ___schemaInfo_8)); } inline RuntimeObject* get_schemaInfo_8() const { return ___schemaInfo_8; } inline RuntimeObject** get_address_of_schemaInfo_8() { return &___schemaInfo_8; } inline void set_schemaInfo_8(RuntimeObject* value) { ___schemaInfo_8 = value; Il2CppCodeGenWriteBarrier((&___schemaInfo_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLATTRIBUTE_T1173852259_H #ifndef XMLELEMENTATTRIBUTE_T17472343_H #define XMLELEMENTATTRIBUTE_T17472343_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlElementAttribute struct XmlElementAttribute_t17472343 : public Attribute_t861562559 { public: // System.String System.Xml.Serialization.XmlElementAttribute::elementName String_t* ___elementName_0; // System.Type System.Xml.Serialization.XmlElementAttribute::type Type_t * ___type_1; // System.Int32 System.Xml.Serialization.XmlElementAttribute::order int32_t ___order_2; public: inline static int32_t get_offset_of_elementName_0() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t17472343, ___elementName_0)); } inline String_t* get_elementName_0() const { return ___elementName_0; } inline String_t** get_address_of_elementName_0() { return &___elementName_0; } inline void set_elementName_0(String_t* value) { ___elementName_0 = value; Il2CppCodeGenWriteBarrier((&___elementName_0), value); } inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t17472343, ___type_1)); } inline Type_t * get_type_1() const { return ___type_1; } inline Type_t ** get_address_of_type_1() { return &___type_1; } inline void set_type_1(Type_t * value) { ___type_1 = value; Il2CppCodeGenWriteBarrier((&___type_1), value); } inline static int32_t get_offset_of_order_2() { return static_cast<int32_t>(offsetof(XmlElementAttribute_t17472343, ___order_2)); } inline int32_t get_order_2() const { return ___order_2; } inline int32_t* get_address_of_order_2() { return &___order_2; } inline void set_order_2(int32_t value) { ___order_2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLELEMENTATTRIBUTE_T17472343_H #ifndef XMLDOCUMENT_T2837193595_H #define XMLDOCUMENT_T2837193595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlDocument struct XmlDocument_t2837193595 : public XmlNode_t3767805227 { public: // System.Boolean System.Xml.XmlDocument::optimal_create_element bool ___optimal_create_element_6; // System.Boolean System.Xml.XmlDocument::optimal_create_attribute bool ___optimal_create_attribute_7; // System.Xml.XmlNameTable System.Xml.XmlDocument::nameTable XmlNameTable_t71772148 * ___nameTable_8; // System.String System.Xml.XmlDocument::baseURI String_t* ___baseURI_9; // System.Xml.XmlImplementation System.Xml.XmlDocument::implementation XmlImplementation_t254178875 * ___implementation_10; // System.Boolean System.Xml.XmlDocument::preserveWhitespace bool ___preserveWhitespace_11; // System.Xml.XmlResolver System.Xml.XmlDocument::resolver XmlResolver_t626023767 * ___resolver_12; // System.Collections.Hashtable System.Xml.XmlDocument::idTable Hashtable_t1853889766 * ___idTable_13; // System.Xml.XmlNameEntryCache System.Xml.XmlDocument::nameCache XmlNameEntryCache_t2890546907 * ___nameCache_14; // System.Xml.XmlLinkedNode System.Xml.XmlDocument::lastLinkedChild XmlLinkedNode_t1437094927 * ___lastLinkedChild_15; // System.Xml.Schema.XmlSchemaSet System.Xml.XmlDocument::schemas XmlSchemaSet_t266093086 * ___schemas_16; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlDocument::schemaInfo RuntimeObject* ___schemaInfo_17; // System.Boolean System.Xml.XmlDocument::loadMode bool ___loadMode_18; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeChanged XmlNodeChangedEventHandler_t1533444722 * ___NodeChanged_19; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeChanging XmlNodeChangedEventHandler_t1533444722 * ___NodeChanging_20; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeInserted XmlNodeChangedEventHandler_t1533444722 * ___NodeInserted_21; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeInserting XmlNodeChangedEventHandler_t1533444722 * ___NodeInserting_22; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeRemoved XmlNodeChangedEventHandler_t1533444722 * ___NodeRemoved_23; // System.Xml.XmlNodeChangedEventHandler System.Xml.XmlDocument::NodeRemoving XmlNodeChangedEventHandler_t1533444722 * ___NodeRemoving_24; public: inline static int32_t get_offset_of_optimal_create_element_6() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___optimal_create_element_6)); } inline bool get_optimal_create_element_6() const { return ___optimal_create_element_6; } inline bool* get_address_of_optimal_create_element_6() { return &___optimal_create_element_6; } inline void set_optimal_create_element_6(bool value) { ___optimal_create_element_6 = value; } inline static int32_t get_offset_of_optimal_create_attribute_7() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___optimal_create_attribute_7)); } inline bool get_optimal_create_attribute_7() const { return ___optimal_create_attribute_7; } inline bool* get_address_of_optimal_create_attribute_7() { return &___optimal_create_attribute_7; } inline void set_optimal_create_attribute_7(bool value) { ___optimal_create_attribute_7 = value; } inline static int32_t get_offset_of_nameTable_8() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___nameTable_8)); } inline XmlNameTable_t71772148 * get_nameTable_8() const { return ___nameTable_8; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_8() { return &___nameTable_8; } inline void set_nameTable_8(XmlNameTable_t71772148 * value) { ___nameTable_8 = value; Il2CppCodeGenWriteBarrier((&___nameTable_8), value); } inline static int32_t get_offset_of_baseURI_9() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___baseURI_9)); } inline String_t* get_baseURI_9() const { return ___baseURI_9; } inline String_t** get_address_of_baseURI_9() { return &___baseURI_9; } inline void set_baseURI_9(String_t* value) { ___baseURI_9 = value; Il2CppCodeGenWriteBarrier((&___baseURI_9), value); } inline static int32_t get_offset_of_implementation_10() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___implementation_10)); } inline XmlImplementation_t254178875 * get_implementation_10() const { return ___implementation_10; } inline XmlImplementation_t254178875 ** get_address_of_implementation_10() { return &___implementation_10; } inline void set_implementation_10(XmlImplementation_t254178875 * value) { ___implementation_10 = value; Il2CppCodeGenWriteBarrier((&___implementation_10), value); } inline static int32_t get_offset_of_preserveWhitespace_11() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___preserveWhitespace_11)); } inline bool get_preserveWhitespace_11() const { return ___preserveWhitespace_11; } inline bool* get_address_of_preserveWhitespace_11() { return &___preserveWhitespace_11; } inline void set_preserveWhitespace_11(bool value) { ___preserveWhitespace_11 = value; } inline static int32_t get_offset_of_resolver_12() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___resolver_12)); } inline XmlResolver_t626023767 * get_resolver_12() const { return ___resolver_12; } inline XmlResolver_t626023767 ** get_address_of_resolver_12() { return &___resolver_12; } inline void set_resolver_12(XmlResolver_t626023767 * value) { ___resolver_12 = value; Il2CppCodeGenWriteBarrier((&___resolver_12), value); } inline static int32_t get_offset_of_idTable_13() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___idTable_13)); } inline Hashtable_t1853889766 * get_idTable_13() const { return ___idTable_13; } inline Hashtable_t1853889766 ** get_address_of_idTable_13() { return &___idTable_13; } inline void set_idTable_13(Hashtable_t1853889766 * value) { ___idTable_13 = value; Il2CppCodeGenWriteBarrier((&___idTable_13), value); } inline static int32_t get_offset_of_nameCache_14() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___nameCache_14)); } inline XmlNameEntryCache_t2890546907 * get_nameCache_14() const { return ___nameCache_14; } inline XmlNameEntryCache_t2890546907 ** get_address_of_nameCache_14() { return &___nameCache_14; } inline void set_nameCache_14(XmlNameEntryCache_t2890546907 * value) { ___nameCache_14 = value; Il2CppCodeGenWriteBarrier((&___nameCache_14), value); } inline static int32_t get_offset_of_lastLinkedChild_15() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___lastLinkedChild_15)); } inline XmlLinkedNode_t1437094927 * get_lastLinkedChild_15() const { return ___lastLinkedChild_15; } inline XmlLinkedNode_t1437094927 ** get_address_of_lastLinkedChild_15() { return &___lastLinkedChild_15; } inline void set_lastLinkedChild_15(XmlLinkedNode_t1437094927 * value) { ___lastLinkedChild_15 = value; Il2CppCodeGenWriteBarrier((&___lastLinkedChild_15), value); } inline static int32_t get_offset_of_schemas_16() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___schemas_16)); } inline XmlSchemaSet_t266093086 * get_schemas_16() const { return ___schemas_16; } inline XmlSchemaSet_t266093086 ** get_address_of_schemas_16() { return &___schemas_16; } inline void set_schemas_16(XmlSchemaSet_t266093086 * value) { ___schemas_16 = value; Il2CppCodeGenWriteBarrier((&___schemas_16), value); } inline static int32_t get_offset_of_schemaInfo_17() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___schemaInfo_17)); } inline RuntimeObject* get_schemaInfo_17() const { return ___schemaInfo_17; } inline RuntimeObject** get_address_of_schemaInfo_17() { return &___schemaInfo_17; } inline void set_schemaInfo_17(RuntimeObject* value) { ___schemaInfo_17 = value; Il2CppCodeGenWriteBarrier((&___schemaInfo_17), value); } inline static int32_t get_offset_of_loadMode_18() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___loadMode_18)); } inline bool get_loadMode_18() const { return ___loadMode_18; } inline bool* get_address_of_loadMode_18() { return &___loadMode_18; } inline void set_loadMode_18(bool value) { ___loadMode_18 = value; } inline static int32_t get_offset_of_NodeChanged_19() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeChanged_19)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeChanged_19() const { return ___NodeChanged_19; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeChanged_19() { return &___NodeChanged_19; } inline void set_NodeChanged_19(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeChanged_19 = value; Il2CppCodeGenWriteBarrier((&___NodeChanged_19), value); } inline static int32_t get_offset_of_NodeChanging_20() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeChanging_20)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeChanging_20() const { return ___NodeChanging_20; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeChanging_20() { return &___NodeChanging_20; } inline void set_NodeChanging_20(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeChanging_20 = value; Il2CppCodeGenWriteBarrier((&___NodeChanging_20), value); } inline static int32_t get_offset_of_NodeInserted_21() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeInserted_21)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeInserted_21() const { return ___NodeInserted_21; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeInserted_21() { return &___NodeInserted_21; } inline void set_NodeInserted_21(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeInserted_21 = value; Il2CppCodeGenWriteBarrier((&___NodeInserted_21), value); } inline static int32_t get_offset_of_NodeInserting_22() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeInserting_22)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeInserting_22() const { return ___NodeInserting_22; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeInserting_22() { return &___NodeInserting_22; } inline void set_NodeInserting_22(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeInserting_22 = value; Il2CppCodeGenWriteBarrier((&___NodeInserting_22), value); } inline static int32_t get_offset_of_NodeRemoved_23() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeRemoved_23)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeRemoved_23() const { return ___NodeRemoved_23; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeRemoved_23() { return &___NodeRemoved_23; } inline void set_NodeRemoved_23(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeRemoved_23 = value; Il2CppCodeGenWriteBarrier((&___NodeRemoved_23), value); } inline static int32_t get_offset_of_NodeRemoving_24() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595, ___NodeRemoving_24)); } inline XmlNodeChangedEventHandler_t1533444722 * get_NodeRemoving_24() const { return ___NodeRemoving_24; } inline XmlNodeChangedEventHandler_t1533444722 ** get_address_of_NodeRemoving_24() { return &___NodeRemoving_24; } inline void set_NodeRemoving_24(XmlNodeChangedEventHandler_t1533444722 * value) { ___NodeRemoving_24 = value; Il2CppCodeGenWriteBarrier((&___NodeRemoving_24), value); } }; struct XmlDocument_t2837193595_StaticFields { public: // System.Type[] System.Xml.XmlDocument::optimal_create_types TypeU5BU5D_t3940880105* ___optimal_create_types_5; public: inline static int32_t get_offset_of_optimal_create_types_5() { return static_cast<int32_t>(offsetof(XmlDocument_t2837193595_StaticFields, ___optimal_create_types_5)); } inline TypeU5BU5D_t3940880105* get_optimal_create_types_5() const { return ___optimal_create_types_5; } inline TypeU5BU5D_t3940880105** get_address_of_optimal_create_types_5() { return &___optimal_create_types_5; } inline void set_optimal_create_types_5(TypeU5BU5D_t3940880105* value) { ___optimal_create_types_5 = value; Il2CppCodeGenWriteBarrier((&___optimal_create_types_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLDOCUMENT_T2837193595_H #ifndef DOUBLE_T594665363_H #define DOUBLE_T594665363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Double struct Double_t594665363 { public: // System.Double System.Double::m_value double ___m_value_13; public: inline static int32_t get_offset_of_m_value_13() { return static_cast<int32_t>(offsetof(Double_t594665363, ___m_value_13)); } inline double get_m_value_13() const { return ___m_value_13; } inline double* get_address_of_m_value_13() { return &___m_value_13; } inline void set_m_value_13(double value) { ___m_value_13 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DOUBLE_T594665363_H #ifndef SINGLE_T1397266774_H #define SINGLE_T1397266774_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Single struct Single_t1397266774 { public: // System.Single System.Single::m_value float ___m_value_7; public: inline static int32_t get_offset_of_m_value_7() { return static_cast<int32_t>(offsetof(Single_t1397266774, ___m_value_7)); } inline float get_m_value_7() const { return ___m_value_7; } inline float* get_address_of_m_value_7() { return &___m_value_7; } inline void set_m_value_7(float value) { ___m_value_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SINGLE_T1397266774_H #ifndef XMLSCHEMAPROVIDERATTRIBUTE_T3872582200_H #define XMLSCHEMAPROVIDERATTRIBUTE_T3872582200_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlSchemaProviderAttribute struct XmlSchemaProviderAttribute_t3872582200 : public Attribute_t861562559 { public: // System.String System.Xml.Serialization.XmlSchemaProviderAttribute::_methodName String_t* ____methodName_0; public: inline static int32_t get_offset_of__methodName_0() { return static_cast<int32_t>(offsetof(XmlSchemaProviderAttribute_t3872582200, ____methodName_0)); } inline String_t* get__methodName_0() const { return ____methodName_0; } inline String_t** get_address_of__methodName_0() { return &____methodName_0; } inline void set__methodName_0(String_t* value) { ____methodName_0 = value; Il2CppCodeGenWriteBarrier((&____methodName_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAPROVIDERATTRIBUTE_T3872582200_H #ifndef XMLSCHEMAOBJECTCOLLECTION_T1064819932_H #define XMLSCHEMAOBJECTCOLLECTION_T1064819932_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObjectCollection struct XmlSchemaObjectCollection_t1064819932 : public CollectionBase_t2727926298 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAOBJECTCOLLECTION_T1064819932_H #ifndef XMLTEXTATTRIBUTE_T499390083_H #define XMLTEXTATTRIBUTE_T499390083_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlTextAttribute struct XmlTextAttribute_t499390083 : public Attribute_t861562559 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLTEXTATTRIBUTE_T499390083_H #ifndef XMLSCHEMAREADER_T1164558392_H #define XMLSCHEMAREADER_T1164558392_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaReader struct XmlSchemaReader_t1164558392 : public XmlReader_t3121518892 { public: // System.Xml.XmlReader System.Xml.Schema.XmlSchemaReader::reader XmlReader_t3121518892 * ___reader_3; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaReader::handler ValidationEventHandler_t791314227 * ___handler_4; // System.Boolean System.Xml.Schema.XmlSchemaReader::hasLineInfo bool ___hasLineInfo_5; public: inline static int32_t get_offset_of_reader_3() { return static_cast<int32_t>(offsetof(XmlSchemaReader_t1164558392, ___reader_3)); } inline XmlReader_t3121518892 * get_reader_3() const { return ___reader_3; } inline XmlReader_t3121518892 ** get_address_of_reader_3() { return &___reader_3; } inline void set_reader_3(XmlReader_t3121518892 * value) { ___reader_3 = value; Il2CppCodeGenWriteBarrier((&___reader_3), value); } inline static int32_t get_offset_of_handler_4() { return static_cast<int32_t>(offsetof(XmlSchemaReader_t1164558392, ___handler_4)); } inline ValidationEventHandler_t791314227 * get_handler_4() const { return ___handler_4; } inline ValidationEventHandler_t791314227 ** get_address_of_handler_4() { return &___handler_4; } inline void set_handler_4(ValidationEventHandler_t791314227 * value) { ___handler_4 = value; Il2CppCodeGenWriteBarrier((&___handler_4), value); } inline static int32_t get_offset_of_hasLineInfo_5() { return static_cast<int32_t>(offsetof(XmlSchemaReader_t1164558392, ___hasLineInfo_5)); } inline bool get_hasLineInfo_5() const { return ___hasLineInfo_5; } inline bool* get_address_of_hasLineInfo_5() { return &___hasLineInfo_5; } inline void set_hasLineInfo_5(bool value) { ___hasLineInfo_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAREADER_T1164558392_H #ifndef XMLANYATTRIBUTEATTRIBUTE_T1449326428_H #define XMLANYATTRIBUTEATTRIBUTE_T1449326428_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.XmlAnyAttributeAttribute struct XmlAnyAttributeAttribute_t1449326428 : public Attribute_t861562559 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLANYATTRIBUTEATTRIBUTE_T1449326428_H #ifndef XMLURLRESOLVER_T817895037_H #define XMLURLRESOLVER_T817895037_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlUrlResolver struct XmlUrlResolver_t817895037 : public XmlResolver_t626023767 { public: // System.Net.ICredentials System.Xml.XmlUrlResolver::credential RuntimeObject* ___credential_0; public: inline static int32_t get_offset_of_credential_0() { return static_cast<int32_t>(offsetof(XmlUrlResolver_t817895037, ___credential_0)); } inline RuntimeObject* get_credential_0() const { return ___credential_0; } inline RuntimeObject** get_address_of_credential_0() { return &___credential_0; } inline void set_credential_0(RuntimeObject* value) { ___credential_0 = value; Il2CppCodeGenWriteBarrier((&___credential_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLURLRESOLVER_T817895037_H #ifndef GUID_T_H #define GUID_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Guid struct Guid_t { public: // System.Int32 System.Guid::_a int32_t ____a_0; // System.Int16 System.Guid::_b int16_t ____b_1; // System.Int16 System.Guid::_c int16_t ____c_2; // System.Byte System.Guid::_d uint8_t ____d_3; // System.Byte System.Guid::_e uint8_t ____e_4; // System.Byte System.Guid::_f uint8_t ____f_5; // System.Byte System.Guid::_g uint8_t ____g_6; // System.Byte System.Guid::_h uint8_t ____h_7; // System.Byte System.Guid::_i uint8_t ____i_8; // System.Byte System.Guid::_j uint8_t ____j_9; // System.Byte System.Guid::_k uint8_t ____k_10; public: inline static int32_t get_offset_of__a_0() { return static_cast<int32_t>(offsetof(Guid_t, ____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(Guid_t, ____b_1)); } inline int16_t get__b_1() const { return ____b_1; } inline int16_t* get_address_of__b_1() { return &____b_1; } inline void set__b_1(int16_t value) { ____b_1 = value; } inline static int32_t get_offset_of__c_2() { return static_cast<int32_t>(offsetof(Guid_t, ____c_2)); } inline int16_t get__c_2() const { return ____c_2; } inline int16_t* get_address_of__c_2() { return &____c_2; } inline void set__c_2(int16_t value) { ____c_2 = value; } inline static int32_t get_offset_of__d_3() { return static_cast<int32_t>(offsetof(Guid_t, ____d_3)); } inline uint8_t get__d_3() const { return ____d_3; } inline uint8_t* get_address_of__d_3() { return &____d_3; } inline void set__d_3(uint8_t value) { ____d_3 = value; } inline static int32_t get_offset_of__e_4() { return static_cast<int32_t>(offsetof(Guid_t, ____e_4)); } inline uint8_t get__e_4() const { return ____e_4; } inline uint8_t* get_address_of__e_4() { return &____e_4; } inline void set__e_4(uint8_t value) { ____e_4 = value; } inline static int32_t get_offset_of__f_5() { return static_cast<int32_t>(offsetof(Guid_t, ____f_5)); } inline uint8_t get__f_5() const { return ____f_5; } inline uint8_t* get_address_of__f_5() { return &____f_5; } inline void set__f_5(uint8_t value) { ____f_5 = value; } inline static int32_t get_offset_of__g_6() { return static_cast<int32_t>(offsetof(Guid_t, ____g_6)); } inline uint8_t get__g_6() const { return ____g_6; } inline uint8_t* get_address_of__g_6() { return &____g_6; } inline void set__g_6(uint8_t value) { ____g_6 = value; } inline static int32_t get_offset_of__h_7() { return static_cast<int32_t>(offsetof(Guid_t, ____h_7)); } inline uint8_t get__h_7() const { return ____h_7; } inline uint8_t* get_address_of__h_7() { return &____h_7; } inline void set__h_7(uint8_t value) { ____h_7 = value; } inline static int32_t get_offset_of__i_8() { return static_cast<int32_t>(offsetof(Guid_t, ____i_8)); } inline uint8_t get__i_8() const { return ____i_8; } inline uint8_t* get_address_of__i_8() { return &____i_8; } inline void set__i_8(uint8_t value) { ____i_8 = value; } inline static int32_t get_offset_of__j_9() { return static_cast<int32_t>(offsetof(Guid_t, ____j_9)); } inline uint8_t get__j_9() const { return ____j_9; } inline uint8_t* get_address_of__j_9() { return &____j_9; } inline void set__j_9(uint8_t value) { ____j_9 = value; } inline static int32_t get_offset_of__k_10() { return static_cast<int32_t>(offsetof(Guid_t, ____k_10)); } inline uint8_t get__k_10() const { return ____k_10; } inline uint8_t* get_address_of__k_10() { return &____k_10; } inline void set__k_10(uint8_t value) { ____k_10 = value; } }; struct Guid_t_StaticFields { public: // System.Guid System.Guid::Empty Guid_t ___Empty_11; // System.Object System.Guid::_rngAccess RuntimeObject * ____rngAccess_12; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng RandomNumberGenerator_t386037858 * ____rng_13; // System.Security.Cryptography.RandomNumberGenerator System.Guid::_fastRng RandomNumberGenerator_t386037858 * ____fastRng_14; public: inline static int32_t get_offset_of_Empty_11() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_11)); } inline Guid_t get_Empty_11() const { return ___Empty_11; } inline Guid_t * get_address_of_Empty_11() { return &___Empty_11; } inline void set_Empty_11(Guid_t value) { ___Empty_11 = value; } inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); } inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; } inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; } inline void set__rngAccess_12(RuntimeObject * value) { ____rngAccess_12 = value; Il2CppCodeGenWriteBarrier((&____rngAccess_12), value); } inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); } inline RandomNumberGenerator_t386037858 * get__rng_13() const { return ____rng_13; } inline RandomNumberGenerator_t386037858 ** get_address_of__rng_13() { return &____rng_13; } inline void set__rng_13(RandomNumberGenerator_t386037858 * value) { ____rng_13 = value; Il2CppCodeGenWriteBarrier((&____rng_13), value); } inline static int32_t get_offset_of__fastRng_14() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____fastRng_14)); } inline RandomNumberGenerator_t386037858 * get__fastRng_14() const { return ____fastRng_14; } inline RandomNumberGenerator_t386037858 ** get_address_of__fastRng_14() { return &____fastRng_14; } inline void set__fastRng_14(RandomNumberGenerator_t386037858 * value) { ____fastRng_14 = value; Il2CppCodeGenWriteBarrier((&____fastRng_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // GUID_T_H #ifndef NAMETABLE_T3178203267_H #define NAMETABLE_T3178203267_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.NameTable struct NameTable_t3178203267 : public XmlNameTable_t71772148 { public: // System.Int32 System.Xml.NameTable::count int32_t ___count_0; // System.Xml.NameTable/Entry[] System.Xml.NameTable::buckets EntryU5BU5D_t491982174* ___buckets_1; // System.Int32 System.Xml.NameTable::size int32_t ___size_2; public: inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(NameTable_t3178203267, ___count_0)); } inline int32_t get_count_0() const { return ___count_0; } inline int32_t* get_address_of_count_0() { return &___count_0; } inline void set_count_0(int32_t value) { ___count_0 = value; } inline static int32_t get_offset_of_buckets_1() { return static_cast<int32_t>(offsetof(NameTable_t3178203267, ___buckets_1)); } inline EntryU5BU5D_t491982174* get_buckets_1() const { return ___buckets_1; } inline EntryU5BU5D_t491982174** get_address_of_buckets_1() { return &___buckets_1; } inline void set_buckets_1(EntryU5BU5D_t491982174* value) { ___buckets_1 = value; Il2CppCodeGenWriteBarrier((&___buckets_1), value); } inline static int32_t get_offset_of_size_2() { return static_cast<int32_t>(offsetof(NameTable_t3178203267, ___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; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NAMETABLE_T3178203267_H #ifndef PARAMETERMODIFIER_T1461694466_H #define PARAMETERMODIFIER_T1461694466_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterModifier struct ParameterModifier_t1461694466 { public: // System.Boolean[] System.Reflection.ParameterModifier::_byref BooleanU5BU5D_t2897418192* ____byref_0; public: inline static int32_t get_offset_of__byref_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byref_0)); } inline BooleanU5BU5D_t2897418192* get__byref_0() const { return ____byref_0; } inline BooleanU5BU5D_t2897418192** get_address_of__byref_0() { return &____byref_0; } inline void set__byref_0(BooleanU5BU5D_t2897418192* value) { ____byref_0 = value; Il2CppCodeGenWriteBarrier((&____byref_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_pinvoke { int32_t* ____byref_0; }; // Native definition for COM marshalling of System.Reflection.ParameterModifier struct ParameterModifier_t1461694466_marshaled_com { int32_t* ____byref_0; }; #endif // PARAMETERMODIFIER_T1461694466_H #ifndef METHODBASE_T_H #define METHODBASE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodBase struct MethodBase_t : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODBASE_T_H #ifndef BOOLEAN_T97287965_H #define BOOLEAN_T97287965_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Boolean struct Boolean_t97287965 { public: // System.Boolean System.Boolean::m_value bool ___m_value_2; public: inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); } inline bool get_m_value_2() const { return ___m_value_2; } inline bool* get_address_of_m_value_2() { return &___m_value_2; } inline void set_m_value_2(bool value) { ___m_value_2 = value; } }; struct Boolean_t97287965_StaticFields { public: // System.String System.Boolean::FalseString String_t* ___FalseString_0; // System.String System.Boolean::TrueString String_t* ___TrueString_1; public: inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); } inline String_t* get_FalseString_0() const { return ___FalseString_0; } inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; } inline void set_FalseString_0(String_t* value) { ___FalseString_0 = value; Il2CppCodeGenWriteBarrier((&___FalseString_0), value); } inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); } inline String_t* get_TrueString_1() const { return ___TrueString_1; } inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; } inline void set_TrueString_1(String_t* value) { ___TrueString_1 = value; Il2CppCodeGenWriteBarrier((&___TrueString_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_T97287965_H #ifndef PROPERTYINFO_T_H #define PROPERTYINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.PropertyInfo struct PropertyInfo_t : public MemberInfo_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PROPERTYINFO_T_H #ifndef U24ARRAYTYPEU2412_T2490092598_H #define U24ARRAYTYPEU2412_T2490092598_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$12 struct U24ArrayTypeU2412_t2490092598 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU2412_t2490092598__padding[12]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU2412_T2490092598_H #ifndef DECIMAL_T2948259380_H #define DECIMAL_T2948259380_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Decimal struct Decimal_t2948259380 { public: // System.UInt32 System.Decimal::flags uint32_t ___flags_5; // System.UInt32 System.Decimal::hi uint32_t ___hi_6; // System.UInt32 System.Decimal::lo uint32_t ___lo_7; // System.UInt32 System.Decimal::mid uint32_t ___mid_8; public: inline static int32_t get_offset_of_flags_5() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___flags_5)); } inline uint32_t get_flags_5() const { return ___flags_5; } inline uint32_t* get_address_of_flags_5() { return &___flags_5; } inline void set_flags_5(uint32_t value) { ___flags_5 = value; } inline static int32_t get_offset_of_hi_6() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___hi_6)); } inline uint32_t get_hi_6() const { return ___hi_6; } inline uint32_t* get_address_of_hi_6() { return &___hi_6; } inline void set_hi_6(uint32_t value) { ___hi_6 = value; } inline static int32_t get_offset_of_lo_7() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___lo_7)); } inline uint32_t get_lo_7() const { return ___lo_7; } inline uint32_t* get_address_of_lo_7() { return &___lo_7; } inline void set_lo_7(uint32_t value) { ___lo_7 = value; } inline static int32_t get_offset_of_mid_8() { return static_cast<int32_t>(offsetof(Decimal_t2948259380, ___mid_8)); } inline uint32_t get_mid_8() const { return ___mid_8; } inline uint32_t* get_address_of_mid_8() { return &___mid_8; } inline void set_mid_8(uint32_t value) { ___mid_8 = value; } }; struct Decimal_t2948259380_StaticFields { public: // System.Decimal System.Decimal::MinValue Decimal_t2948259380 ___MinValue_0; // System.Decimal System.Decimal::MaxValue Decimal_t2948259380 ___MaxValue_1; // System.Decimal System.Decimal::MinusOne Decimal_t2948259380 ___MinusOne_2; // System.Decimal System.Decimal::One Decimal_t2948259380 ___One_3; // System.Decimal System.Decimal::MaxValueDiv10 Decimal_t2948259380 ___MaxValueDiv10_4; public: inline static int32_t get_offset_of_MinValue_0() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinValue_0)); } inline Decimal_t2948259380 get_MinValue_0() const { return ___MinValue_0; } inline Decimal_t2948259380 * get_address_of_MinValue_0() { return &___MinValue_0; } inline void set_MinValue_0(Decimal_t2948259380 value) { ___MinValue_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValue_1)); } inline Decimal_t2948259380 get_MaxValue_1() const { return ___MaxValue_1; } inline Decimal_t2948259380 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(Decimal_t2948259380 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinusOne_2() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MinusOne_2)); } inline Decimal_t2948259380 get_MinusOne_2() const { return ___MinusOne_2; } inline Decimal_t2948259380 * get_address_of_MinusOne_2() { return &___MinusOne_2; } inline void set_MinusOne_2(Decimal_t2948259380 value) { ___MinusOne_2 = value; } inline static int32_t get_offset_of_One_3() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___One_3)); } inline Decimal_t2948259380 get_One_3() const { return ___One_3; } inline Decimal_t2948259380 * get_address_of_One_3() { return &___One_3; } inline void set_One_3(Decimal_t2948259380 value) { ___One_3 = value; } inline static int32_t get_offset_of_MaxValueDiv10_4() { return static_cast<int32_t>(offsetof(Decimal_t2948259380_StaticFields, ___MaxValueDiv10_4)); } inline Decimal_t2948259380 get_MaxValueDiv10_4() const { return ___MaxValueDiv10_4; } inline Decimal_t2948259380 * get_address_of_MaxValueDiv10_4() { return &___MaxValueDiv10_4; } inline void set_MaxValueDiv10_4(Decimal_t2948259380 value) { ___MaxValueDiv10_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DECIMAL_T2948259380_H #ifndef U24ARRAYTYPEU24256_T1929481983_H #define U24ARRAYTYPEU24256_T1929481983_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$256 struct U24ArrayTypeU24256_t1929481983 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU24256_t1929481983__padding[256]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU24256_T1929481983_H #ifndef U24ARRAYTYPEU241280_T4290130235_H #define U24ARRAYTYPEU241280_T4290130235_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails>/$ArrayType$1280 struct U24ArrayTypeU241280_t4290130235 { public: union { struct { union { }; }; uint8_t U24ArrayTypeU241280_t4290130235__padding[1280]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U24ARRAYTYPEU241280_T4290130235_H #ifndef DICTIONARYBASE_T52754249_H #define DICTIONARYBASE_T52754249_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DictionaryBase struct DictionaryBase_t52754249 : public List_1_t218596005 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARYBASE_T52754249_H #ifndef XMLSCHEMAEXCEPTION_T3511258692_H #define XMLSCHEMAEXCEPTION_T3511258692_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaException struct XmlSchemaException_t3511258692 : public SystemException_t176217640 { public: // System.Boolean System.Xml.Schema.XmlSchemaException::hasLineInfo bool ___hasLineInfo_11; // System.Int32 System.Xml.Schema.XmlSchemaException::lineNumber int32_t ___lineNumber_12; // System.Int32 System.Xml.Schema.XmlSchemaException::linePosition int32_t ___linePosition_13; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaException::sourceObj XmlSchemaObject_t1315720168 * ___sourceObj_14; // System.String System.Xml.Schema.XmlSchemaException::sourceUri String_t* ___sourceUri_15; public: inline static int32_t get_offset_of_hasLineInfo_11() { return static_cast<int32_t>(offsetof(XmlSchemaException_t3511258692, ___hasLineInfo_11)); } inline bool get_hasLineInfo_11() const { return ___hasLineInfo_11; } inline bool* get_address_of_hasLineInfo_11() { return &___hasLineInfo_11; } inline void set_hasLineInfo_11(bool value) { ___hasLineInfo_11 = value; } inline static int32_t get_offset_of_lineNumber_12() { return static_cast<int32_t>(offsetof(XmlSchemaException_t3511258692, ___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_linePosition_13() { return static_cast<int32_t>(offsetof(XmlSchemaException_t3511258692, ___linePosition_13)); } inline int32_t get_linePosition_13() const { return ___linePosition_13; } inline int32_t* get_address_of_linePosition_13() { return &___linePosition_13; } inline void set_linePosition_13(int32_t value) { ___linePosition_13 = value; } inline static int32_t get_offset_of_sourceObj_14() { return static_cast<int32_t>(offsetof(XmlSchemaException_t3511258692, ___sourceObj_14)); } inline XmlSchemaObject_t1315720168 * get_sourceObj_14() const { return ___sourceObj_14; } inline XmlSchemaObject_t1315720168 ** get_address_of_sourceObj_14() { return &___sourceObj_14; } inline void set_sourceObj_14(XmlSchemaObject_t1315720168 * value) { ___sourceObj_14 = value; Il2CppCodeGenWriteBarrier((&___sourceObj_14), value); } inline static int32_t get_offset_of_sourceUri_15() { return static_cast<int32_t>(offsetof(XmlSchemaException_t3511258692, ___sourceUri_15)); } inline String_t* get_sourceUri_15() const { return ___sourceUri_15; } inline String_t** get_address_of_sourceUri_15() { return &___sourceUri_15; } inline void set_sourceUri_15(String_t* value) { ___sourceUri_15 = value; Il2CppCodeGenWriteBarrier((&___sourceUri_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAEXCEPTION_T3511258692_H #ifndef DELEGATE_T1188392813_H #define DELEGATE_T1188392813_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t1188392813 : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_5; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_6; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_7; // System.DelegateData System.Delegate::data DelegateData_t1677132599 * ___data_8; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); } inline intptr_t get_method_code_5() const { return ___method_code_5; } inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; } inline void set_method_code_5(intptr_t value) { ___method_code_5 = value; } inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); } inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; } inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; } inline void set_method_info_6(MethodInfo_t * value) { ___method_info_6 = value; Il2CppCodeGenWriteBarrier((&___method_info_6), value); } inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); } inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; } inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; } inline void set_original_method_info_7(MethodInfo_t * value) { ___original_method_info_7 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_7), value); } inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); } inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; } inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; } inline void set_data_8(DelegateData_t1677132599 * value) { ___data_8 = value; Il2CppCodeGenWriteBarrier((&___data_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DELEGATE_T1188392813_H #ifndef XMLSCHEMAOBJECT_T1315720168_H #define XMLSCHEMAOBJECT_T1315720168_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaObject struct XmlSchemaObject_t1315720168 : public RuntimeObject { public: // System.Int32 System.Xml.Schema.XmlSchemaObject::lineNumber int32_t ___lineNumber_0; // System.Int32 System.Xml.Schema.XmlSchemaObject::linePosition int32_t ___linePosition_1; // System.String System.Xml.Schema.XmlSchemaObject::sourceUri String_t* ___sourceUri_2; // System.Xml.Serialization.XmlSerializerNamespaces System.Xml.Schema.XmlSchemaObject::namespaces XmlSerializerNamespaces_t2702737953 * ___namespaces_3; // System.Collections.ArrayList System.Xml.Schema.XmlSchemaObject::unhandledAttributeList ArrayList_t2718874744 * ___unhandledAttributeList_4; // System.Boolean System.Xml.Schema.XmlSchemaObject::isCompiled bool ___isCompiled_5; // System.Int32 System.Xml.Schema.XmlSchemaObject::errorCount int32_t ___errorCount_6; // System.Guid System.Xml.Schema.XmlSchemaObject::CompilationId Guid_t ___CompilationId_7; // System.Guid System.Xml.Schema.XmlSchemaObject::ValidationId Guid_t ___ValidationId_8; // System.Boolean System.Xml.Schema.XmlSchemaObject::isRedefineChild bool ___isRedefineChild_9; // System.Boolean System.Xml.Schema.XmlSchemaObject::isRedefinedComponent bool ___isRedefinedComponent_10; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObject::redefinedObject XmlSchemaObject_t1315720168 * ___redefinedObject_11; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObject::parent XmlSchemaObject_t1315720168 * ___parent_12; public: inline static int32_t get_offset_of_lineNumber_0() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___lineNumber_0)); } inline int32_t get_lineNumber_0() const { return ___lineNumber_0; } inline int32_t* get_address_of_lineNumber_0() { return &___lineNumber_0; } inline void set_lineNumber_0(int32_t value) { ___lineNumber_0 = value; } inline static int32_t get_offset_of_linePosition_1() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___linePosition_1)); } inline int32_t get_linePosition_1() const { return ___linePosition_1; } inline int32_t* get_address_of_linePosition_1() { return &___linePosition_1; } inline void set_linePosition_1(int32_t value) { ___linePosition_1 = value; } inline static int32_t get_offset_of_sourceUri_2() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___sourceUri_2)); } inline String_t* get_sourceUri_2() const { return ___sourceUri_2; } inline String_t** get_address_of_sourceUri_2() { return &___sourceUri_2; } inline void set_sourceUri_2(String_t* value) { ___sourceUri_2 = value; Il2CppCodeGenWriteBarrier((&___sourceUri_2), value); } inline static int32_t get_offset_of_namespaces_3() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___namespaces_3)); } inline XmlSerializerNamespaces_t2702737953 * get_namespaces_3() const { return ___namespaces_3; } inline XmlSerializerNamespaces_t2702737953 ** get_address_of_namespaces_3() { return &___namespaces_3; } inline void set_namespaces_3(XmlSerializerNamespaces_t2702737953 * value) { ___namespaces_3 = value; Il2CppCodeGenWriteBarrier((&___namespaces_3), value); } inline static int32_t get_offset_of_unhandledAttributeList_4() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___unhandledAttributeList_4)); } inline ArrayList_t2718874744 * get_unhandledAttributeList_4() const { return ___unhandledAttributeList_4; } inline ArrayList_t2718874744 ** get_address_of_unhandledAttributeList_4() { return &___unhandledAttributeList_4; } inline void set_unhandledAttributeList_4(ArrayList_t2718874744 * value) { ___unhandledAttributeList_4 = value; Il2CppCodeGenWriteBarrier((&___unhandledAttributeList_4), value); } inline static int32_t get_offset_of_isCompiled_5() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___isCompiled_5)); } inline bool get_isCompiled_5() const { return ___isCompiled_5; } inline bool* get_address_of_isCompiled_5() { return &___isCompiled_5; } inline void set_isCompiled_5(bool value) { ___isCompiled_5 = value; } inline static int32_t get_offset_of_errorCount_6() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___errorCount_6)); } inline int32_t get_errorCount_6() const { return ___errorCount_6; } inline int32_t* get_address_of_errorCount_6() { return &___errorCount_6; } inline void set_errorCount_6(int32_t value) { ___errorCount_6 = value; } inline static int32_t get_offset_of_CompilationId_7() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___CompilationId_7)); } inline Guid_t get_CompilationId_7() const { return ___CompilationId_7; } inline Guid_t * get_address_of_CompilationId_7() { return &___CompilationId_7; } inline void set_CompilationId_7(Guid_t value) { ___CompilationId_7 = value; } inline static int32_t get_offset_of_ValidationId_8() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___ValidationId_8)); } inline Guid_t get_ValidationId_8() const { return ___ValidationId_8; } inline Guid_t * get_address_of_ValidationId_8() { return &___ValidationId_8; } inline void set_ValidationId_8(Guid_t value) { ___ValidationId_8 = value; } inline static int32_t get_offset_of_isRedefineChild_9() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___isRedefineChild_9)); } inline bool get_isRedefineChild_9() const { return ___isRedefineChild_9; } inline bool* get_address_of_isRedefineChild_9() { return &___isRedefineChild_9; } inline void set_isRedefineChild_9(bool value) { ___isRedefineChild_9 = value; } inline static int32_t get_offset_of_isRedefinedComponent_10() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___isRedefinedComponent_10)); } inline bool get_isRedefinedComponent_10() const { return ___isRedefinedComponent_10; } inline bool* get_address_of_isRedefinedComponent_10() { return &___isRedefinedComponent_10; } inline void set_isRedefinedComponent_10(bool value) { ___isRedefinedComponent_10 = value; } inline static int32_t get_offset_of_redefinedObject_11() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___redefinedObject_11)); } inline XmlSchemaObject_t1315720168 * get_redefinedObject_11() const { return ___redefinedObject_11; } inline XmlSchemaObject_t1315720168 ** get_address_of_redefinedObject_11() { return &___redefinedObject_11; } inline void set_redefinedObject_11(XmlSchemaObject_t1315720168 * value) { ___redefinedObject_11 = value; Il2CppCodeGenWriteBarrier((&___redefinedObject_11), value); } inline static int32_t get_offset_of_parent_12() { return static_cast<int32_t>(offsetof(XmlSchemaObject_t1315720168, ___parent_12)); } inline XmlSchemaObject_t1315720168 * get_parent_12() const { return ___parent_12; } inline XmlSchemaObject_t1315720168 ** get_address_of_parent_12() { return &___parent_12; } inline void set_parent_12(XmlSchemaObject_t1315720168 * value) { ___parent_12 = value; Il2CppCodeGenWriteBarrier((&___parent_12), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAOBJECT_T1315720168_H #ifndef ARITHMETICEXCEPTION_T4283546778_H #define ARITHMETICEXCEPTION_T4283546778_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArithmeticException struct ArithmeticException_t4283546778 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARITHMETICEXCEPTION_T4283546778_H #ifndef XMLSCHEMAUSE_T647315988_H #define XMLSCHEMAUSE_T647315988_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaUse struct XmlSchemaUse_t647315988 { public: // System.Int32 System.Xml.Schema.XmlSchemaUse::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaUse_t647315988, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAUSE_T647315988_H #ifndef NOTSUPPORTEDEXCEPTION_T1314879016_H #define NOTSUPPORTEDEXCEPTION_T1314879016_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NotSupportedException struct NotSupportedException_t1314879016 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NOTSUPPORTEDEXCEPTION_T1314879016_H #ifndef XMLEXCEPTION_T1761730631_H #define XMLEXCEPTION_T1761730631_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlException struct XmlException_t1761730631 : public SystemException_t176217640 { public: // System.Int32 System.Xml.XmlException::lineNumber int32_t ___lineNumber_11; // System.Int32 System.Xml.XmlException::linePosition int32_t ___linePosition_12; // System.String System.Xml.XmlException::sourceUri String_t* ___sourceUri_13; // System.String System.Xml.XmlException::res String_t* ___res_14; // System.String[] System.Xml.XmlException::messages StringU5BU5D_t1281789340* ___messages_15; public: inline static int32_t get_offset_of_lineNumber_11() { return static_cast<int32_t>(offsetof(XmlException_t1761730631, ___lineNumber_11)); } inline int32_t get_lineNumber_11() const { return ___lineNumber_11; } inline int32_t* get_address_of_lineNumber_11() { return &___lineNumber_11; } inline void set_lineNumber_11(int32_t value) { ___lineNumber_11 = value; } inline static int32_t get_offset_of_linePosition_12() { return static_cast<int32_t>(offsetof(XmlException_t1761730631, ___linePosition_12)); } inline int32_t get_linePosition_12() const { return ___linePosition_12; } inline int32_t* get_address_of_linePosition_12() { return &___linePosition_12; } inline void set_linePosition_12(int32_t value) { ___linePosition_12 = value; } inline static int32_t get_offset_of_sourceUri_13() { return static_cast<int32_t>(offsetof(XmlException_t1761730631, ___sourceUri_13)); } inline String_t* get_sourceUri_13() const { return ___sourceUri_13; } inline String_t** get_address_of_sourceUri_13() { return &___sourceUri_13; } inline void set_sourceUri_13(String_t* value) { ___sourceUri_13 = value; Il2CppCodeGenWriteBarrier((&___sourceUri_13), value); } inline static int32_t get_offset_of_res_14() { return static_cast<int32_t>(offsetof(XmlException_t1761730631, ___res_14)); } inline String_t* get_res_14() const { return ___res_14; } inline String_t** get_address_of_res_14() { return &___res_14; } inline void set_res_14(String_t* value) { ___res_14 = value; Il2CppCodeGenWriteBarrier((&___res_14), value); } inline static int32_t get_offset_of_messages_15() { return static_cast<int32_t>(offsetof(XmlException_t1761730631, ___messages_15)); } inline StringU5BU5D_t1281789340* get_messages_15() const { return ___messages_15; } inline StringU5BU5D_t1281789340** get_address_of_messages_15() { return &___messages_15; } inline void set_messages_15(StringU5BU5D_t1281789340* value) { ___messages_15 = value; Il2CppCodeGenWriteBarrier((&___messages_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLEXCEPTION_T1761730631_H #ifndef METHODINFO_T_H #define METHODINFO_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.MethodInfo struct MethodInfo_t : public MethodBase_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // METHODINFO_T_H #ifndef XMLELEMENT_T561603118_H #define XMLELEMENT_T561603118_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlElement struct XmlElement_t561603118 : public XmlLinkedNode_t1437094927 { public: // System.Xml.XmlAttributeCollection System.Xml.XmlElement::attributes XmlAttributeCollection_t2316283784 * ___attributes_6; // System.Xml.XmlNameEntry System.Xml.XmlElement::name XmlNameEntry_t1073099671 * ___name_7; // System.Xml.XmlLinkedNode System.Xml.XmlElement::lastLinkedChild XmlLinkedNode_t1437094927 * ___lastLinkedChild_8; // System.Boolean System.Xml.XmlElement::isNotEmpty bool ___isNotEmpty_9; // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlElement::schemaInfo RuntimeObject* ___schemaInfo_10; public: inline static int32_t get_offset_of_attributes_6() { return static_cast<int32_t>(offsetof(XmlElement_t561603118, ___attributes_6)); } inline XmlAttributeCollection_t2316283784 * get_attributes_6() const { return ___attributes_6; } inline XmlAttributeCollection_t2316283784 ** get_address_of_attributes_6() { return &___attributes_6; } inline void set_attributes_6(XmlAttributeCollection_t2316283784 * value) { ___attributes_6 = value; Il2CppCodeGenWriteBarrier((&___attributes_6), value); } inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(XmlElement_t561603118, ___name_7)); } inline XmlNameEntry_t1073099671 * get_name_7() const { return ___name_7; } inline XmlNameEntry_t1073099671 ** get_address_of_name_7() { return &___name_7; } inline void set_name_7(XmlNameEntry_t1073099671 * value) { ___name_7 = value; Il2CppCodeGenWriteBarrier((&___name_7), value); } inline static int32_t get_offset_of_lastLinkedChild_8() { return static_cast<int32_t>(offsetof(XmlElement_t561603118, ___lastLinkedChild_8)); } inline XmlLinkedNode_t1437094927 * get_lastLinkedChild_8() const { return ___lastLinkedChild_8; } inline XmlLinkedNode_t1437094927 ** get_address_of_lastLinkedChild_8() { return &___lastLinkedChild_8; } inline void set_lastLinkedChild_8(XmlLinkedNode_t1437094927 * value) { ___lastLinkedChild_8 = value; Il2CppCodeGenWriteBarrier((&___lastLinkedChild_8), value); } inline static int32_t get_offset_of_isNotEmpty_9() { return static_cast<int32_t>(offsetof(XmlElement_t561603118, ___isNotEmpty_9)); } inline bool get_isNotEmpty_9() const { return ___isNotEmpty_9; } inline bool* get_address_of_isNotEmpty_9() { return &___isNotEmpty_9; } inline void set_isNotEmpty_9(bool value) { ___isNotEmpty_9 = value; } inline static int32_t get_offset_of_schemaInfo_10() { return static_cast<int32_t>(offsetof(XmlElement_t561603118, ___schemaInfo_10)); } inline RuntimeObject* get_schemaInfo_10() const { return ___schemaInfo_10; } inline RuntimeObject** get_address_of_schemaInfo_10() { return &___schemaInfo_10; } inline void set_schemaInfo_10(RuntimeObject* value) { ___schemaInfo_10 = value; Il2CppCodeGenWriteBarrier((&___schemaInfo_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLELEMENT_T561603118_H #ifndef ARGUMENTEXCEPTION_T132251570_H #define ARGUMENTEXCEPTION_T132251570_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_t132251570 : public SystemException_t176217640 { public: // System.String System.ArgumentException::param_name String_t* ___param_name_12; public: inline static int32_t get_offset_of_param_name_12() { return static_cast<int32_t>(offsetof(ArgumentException_t132251570, ___param_name_12)); } inline String_t* get_param_name_12() const { return ___param_name_12; } inline String_t** get_address_of_param_name_12() { return &___param_name_12; } inline void set_param_name_12(String_t* value) { ___param_name_12 = value; Il2CppCodeGenWriteBarrier((&___param_name_12), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_T132251570_H #ifndef XMLSCHEMAFORM_T4264307319_H #define XMLSCHEMAFORM_T4264307319_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaForm struct XmlSchemaForm_t4264307319 { public: // System.Int32 System.Xml.Schema.XmlSchemaForm::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaForm_t4264307319, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAFORM_T4264307319_H #ifndef DTDCOLLECTIONBASE_T3926218464_H #define DTDCOLLECTIONBASE_T3926218464_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDCollectionBase struct DTDCollectionBase_t3926218464 : public DictionaryBase_t52754249 { public: // Mono.Xml.DTDObjectModel Mono.Xml.DTDCollectionBase::root DTDObjectModel_t1729680289 * ___root_5; public: inline static int32_t get_offset_of_root_5() { return static_cast<int32_t>(offsetof(DTDCollectionBase_t3926218464, ___root_5)); } inline DTDObjectModel_t1729680289 * get_root_5() const { return ___root_5; } inline DTDObjectModel_t1729680289 ** get_address_of_root_5() { return &___root_5; } inline void set_root_5(DTDObjectModel_t1729680289 * value) { ___root_5 = value; Il2CppCodeGenWriteBarrier((&___root_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDCOLLECTIONBASE_T3926218464_H #ifndef XMLSCHEMASET_T266093086_H #define XMLSCHEMASET_T266093086_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSet struct XmlSchemaSet_t266093086 : public RuntimeObject { public: // System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaSet::nameTable XmlNameTable_t71772148 * ___nameTable_0; // System.Xml.XmlResolver System.Xml.Schema.XmlSchemaSet::xmlResolver XmlResolver_t626023767 * ___xmlResolver_1; // System.Collections.ArrayList System.Xml.Schema.XmlSchemaSet::schemas ArrayList_t2718874744 * ___schemas_2; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::attributes XmlSchemaObjectTable_t2546974348 * ___attributes_3; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::elements XmlSchemaObjectTable_t2546974348 * ___elements_4; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::types XmlSchemaObjectTable_t2546974348 * ___types_5; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::idCollection Hashtable_t1853889766 * ___idCollection_6; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::namedIdentities XmlSchemaObjectTable_t2546974348 * ___namedIdentities_7; // System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::settings XmlSchemaCompilationSettings_t2218765537 * ___settings_8; // System.Boolean System.Xml.Schema.XmlSchemaSet::isCompiled bool ___isCompiled_9; // System.Guid System.Xml.Schema.XmlSchemaSet::CompilationId Guid_t ___CompilationId_10; // System.Xml.Schema.ValidationEventHandler System.Xml.Schema.XmlSchemaSet::ValidationEventHandler ValidationEventHandler_t791314227 * ___ValidationEventHandler_11; public: inline static int32_t get_offset_of_nameTable_0() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___nameTable_0)); } inline XmlNameTable_t71772148 * get_nameTable_0() const { return ___nameTable_0; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_0() { return &___nameTable_0; } inline void set_nameTable_0(XmlNameTable_t71772148 * value) { ___nameTable_0 = value; Il2CppCodeGenWriteBarrier((&___nameTable_0), value); } inline static int32_t get_offset_of_xmlResolver_1() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___xmlResolver_1)); } inline XmlResolver_t626023767 * get_xmlResolver_1() const { return ___xmlResolver_1; } inline XmlResolver_t626023767 ** get_address_of_xmlResolver_1() { return &___xmlResolver_1; } inline void set_xmlResolver_1(XmlResolver_t626023767 * value) { ___xmlResolver_1 = value; Il2CppCodeGenWriteBarrier((&___xmlResolver_1), value); } inline static int32_t get_offset_of_schemas_2() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___schemas_2)); } inline ArrayList_t2718874744 * get_schemas_2() const { return ___schemas_2; } inline ArrayList_t2718874744 ** get_address_of_schemas_2() { return &___schemas_2; } inline void set_schemas_2(ArrayList_t2718874744 * value) { ___schemas_2 = value; Il2CppCodeGenWriteBarrier((&___schemas_2), value); } inline static int32_t get_offset_of_attributes_3() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___attributes_3)); } inline XmlSchemaObjectTable_t2546974348 * get_attributes_3() const { return ___attributes_3; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributes_3() { return &___attributes_3; } inline void set_attributes_3(XmlSchemaObjectTable_t2546974348 * value) { ___attributes_3 = value; Il2CppCodeGenWriteBarrier((&___attributes_3), value); } inline static int32_t get_offset_of_elements_4() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___elements_4)); } inline XmlSchemaObjectTable_t2546974348 * get_elements_4() const { return ___elements_4; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_elements_4() { return &___elements_4; } inline void set_elements_4(XmlSchemaObjectTable_t2546974348 * value) { ___elements_4 = value; Il2CppCodeGenWriteBarrier((&___elements_4), value); } inline static int32_t get_offset_of_types_5() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___types_5)); } inline XmlSchemaObjectTable_t2546974348 * get_types_5() const { return ___types_5; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_types_5() { return &___types_5; } inline void set_types_5(XmlSchemaObjectTable_t2546974348 * value) { ___types_5 = value; Il2CppCodeGenWriteBarrier((&___types_5), value); } inline static int32_t get_offset_of_idCollection_6() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___idCollection_6)); } inline Hashtable_t1853889766 * get_idCollection_6() const { return ___idCollection_6; } inline Hashtable_t1853889766 ** get_address_of_idCollection_6() { return &___idCollection_6; } inline void set_idCollection_6(Hashtable_t1853889766 * value) { ___idCollection_6 = value; Il2CppCodeGenWriteBarrier((&___idCollection_6), value); } inline static int32_t get_offset_of_namedIdentities_7() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___namedIdentities_7)); } inline XmlSchemaObjectTable_t2546974348 * get_namedIdentities_7() const { return ___namedIdentities_7; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_namedIdentities_7() { return &___namedIdentities_7; } inline void set_namedIdentities_7(XmlSchemaObjectTable_t2546974348 * value) { ___namedIdentities_7 = value; Il2CppCodeGenWriteBarrier((&___namedIdentities_7), value); } inline static int32_t get_offset_of_settings_8() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___settings_8)); } inline XmlSchemaCompilationSettings_t2218765537 * get_settings_8() const { return ___settings_8; } inline XmlSchemaCompilationSettings_t2218765537 ** get_address_of_settings_8() { return &___settings_8; } inline void set_settings_8(XmlSchemaCompilationSettings_t2218765537 * value) { ___settings_8 = value; Il2CppCodeGenWriteBarrier((&___settings_8), value); } inline static int32_t get_offset_of_isCompiled_9() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___isCompiled_9)); } inline bool get_isCompiled_9() const { return ___isCompiled_9; } inline bool* get_address_of_isCompiled_9() { return &___isCompiled_9; } inline void set_isCompiled_9(bool value) { ___isCompiled_9 = value; } inline static int32_t get_offset_of_CompilationId_10() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___CompilationId_10)); } inline Guid_t get_CompilationId_10() const { return ___CompilationId_10; } inline Guid_t * get_address_of_CompilationId_10() { return &___CompilationId_10; } inline void set_CompilationId_10(Guid_t value) { ___CompilationId_10 = value; } inline static int32_t get_offset_of_ValidationEventHandler_11() { return static_cast<int32_t>(offsetof(XmlSchemaSet_t266093086, ___ValidationEventHandler_11)); } inline ValidationEventHandler_t791314227 * get_ValidationEventHandler_11() const { return ___ValidationEventHandler_11; } inline ValidationEventHandler_t791314227 ** get_address_of_ValidationEventHandler_11() { return &___ValidationEventHandler_11; } inline void set_ValidationEventHandler_11(ValidationEventHandler_t791314227 * value) { ___ValidationEventHandler_11 = value; Il2CppCodeGenWriteBarrier((&___ValidationEventHandler_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASET_T266093086_H #ifndef DTDATTRIBUTEOCCURENCETYPE_T2323614041_H #define DTDATTRIBUTEOCCURENCETYPE_T2323614041_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDAttributeOccurenceType struct DTDAttributeOccurenceType_t2323614041 { public: // System.Int32 Mono.Xml.DTDAttributeOccurenceType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(DTDAttributeOccurenceType_t2323614041, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDATTRIBUTEOCCURENCETYPE_T2323614041_H #ifndef WRITESTATE_T3983380671_H #define WRITESTATE_T3983380671_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.WriteState struct WriteState_t3983380671 { public: // System.Int32 System.Xml.WriteState::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(WriteState_t3983380671, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WRITESTATE_T3983380671_H #ifndef XMLSCHEMACONTENTPROCESSING_T826201100_H #define XMLSCHEMACONTENTPROCESSING_T826201100_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaContentProcessing struct XmlSchemaContentProcessing_t826201100 { public: // System.Int32 System.Xml.Schema.XmlSchemaContentProcessing::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaContentProcessing_t826201100, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACONTENTPROCESSING_T826201100_H #ifndef WHITESPACEHANDLING_T784045650_H #define WHITESPACEHANDLING_T784045650_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.WhitespaceHandling struct WhitespaceHandling_t784045650 { public: // System.Int32 System.Xml.WhitespaceHandling::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(WhitespaceHandling_t784045650, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WHITESPACEHANDLING_T784045650_H #ifndef PARAMETERATTRIBUTES_T1826424051_H #define PARAMETERATTRIBUTES_T1826424051_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterAttributes struct ParameterAttributes_t1826424051 { public: // System.Int32 System.Reflection.ParameterAttributes::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParameterAttributes_t1826424051, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARAMETERATTRIBUTES_T1826424051_H #ifndef VALIDATIONTYPE_T4049928607_H #define VALIDATIONTYPE_T4049928607_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.ValidationType struct ValidationType_t4049928607 { public: // System.Int32 System.Xml.ValidationType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ValidationType_t4049928607, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALIDATIONTYPE_T4049928607_H #ifndef BINDINGFLAGS_T2721792723_H #define BINDINGFLAGS_T2721792723_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.BindingFlags struct BindingFlags_t2721792723 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BINDINGFLAGS_T2721792723_H #ifndef XMLSCHEMADERIVATIONMETHOD_T1774354337_H #define XMLSCHEMADERIVATIONMETHOD_T1774354337_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaDerivationMethod struct XmlSchemaDerivationMethod_t1774354337 { public: // System.Int32 System.Xml.Schema.XmlSchemaDerivationMethod::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaDerivationMethod_t1774354337, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMADERIVATIONMETHOD_T1774354337_H #ifndef XMLDOCUMENTTYPE_T4112370061_H #define XMLDOCUMENTTYPE_T4112370061_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlDocumentType struct XmlDocumentType_t4112370061 : public XmlLinkedNode_t1437094927 { public: // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::entities XmlNamedNodeMap_t2821286253 * ___entities_6; // System.Xml.XmlNamedNodeMap System.Xml.XmlDocumentType::notations XmlNamedNodeMap_t2821286253 * ___notations_7; // Mono.Xml.DTDObjectModel System.Xml.XmlDocumentType::dtd DTDObjectModel_t1729680289 * ___dtd_8; public: inline static int32_t get_offset_of_entities_6() { return static_cast<int32_t>(offsetof(XmlDocumentType_t4112370061, ___entities_6)); } inline XmlNamedNodeMap_t2821286253 * get_entities_6() const { return ___entities_6; } inline XmlNamedNodeMap_t2821286253 ** get_address_of_entities_6() { return &___entities_6; } inline void set_entities_6(XmlNamedNodeMap_t2821286253 * value) { ___entities_6 = value; Il2CppCodeGenWriteBarrier((&___entities_6), value); } inline static int32_t get_offset_of_notations_7() { return static_cast<int32_t>(offsetof(XmlDocumentType_t4112370061, ___notations_7)); } inline XmlNamedNodeMap_t2821286253 * get_notations_7() const { return ___notations_7; } inline XmlNamedNodeMap_t2821286253 ** get_address_of_notations_7() { return &___notations_7; } inline void set_notations_7(XmlNamedNodeMap_t2821286253 * value) { ___notations_7 = value; Il2CppCodeGenWriteBarrier((&___notations_7), value); } inline static int32_t get_offset_of_dtd_8() { return static_cast<int32_t>(offsetof(XmlDocumentType_t4112370061, ___dtd_8)); } inline DTDObjectModel_t1729680289 * get_dtd_8() const { return ___dtd_8; } inline DTDObjectModel_t1729680289 ** get_address_of_dtd_8() { return &___dtd_8; } inline void set_dtd_8(DTDObjectModel_t1729680289 * value) { ___dtd_8 = value; Il2CppCodeGenWriteBarrier((&___dtd_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLDOCUMENTTYPE_T4112370061_H #ifndef XMLSEVERITYTYPE_T1894651412_H #define XMLSEVERITYTYPE_T1894651412_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSeverityType struct XmlSeverityType_t1894651412 { public: // System.Int32 System.Xml.Schema.XmlSeverityType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSeverityType_t1894651412, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSEVERITYTYPE_T1894651412_H #ifndef FACET_T1501039206_H #define FACET_T1501039206_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaFacet/Facet struct Facet_t1501039206 { public: // System.Int32 System.Xml.Schema.XmlSchemaFacet/Facet::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(Facet_t1501039206, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FACET_T1501039206_H #ifndef NUMBERSTYLES_T617258130_H #define NUMBERSTYLES_T617258130_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Globalization.NumberStyles struct NumberStyles_t617258130 { public: // System.Int32 System.Globalization.NumberStyles::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(NumberStyles_t617258130, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NUMBERSTYLES_T617258130_H #ifndef XMLTYPECODE_T2623622950_H #define XMLTYPECODE_T2623622950_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlTypeCode struct XmlTypeCode_t2623622950 { public: // System.Int32 System.Xml.Schema.XmlTypeCode::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlTypeCode_t2623622950, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLTYPECODE_T2623622950_H #ifndef CONSTRUCTORINFO_T5769829_H #define CONSTRUCTORINFO_T5769829_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ConstructorInfo struct ConstructorInfo_t5769829 : public MethodBase_t { public: public: }; struct ConstructorInfo_t5769829_StaticFields { public: // System.String System.Reflection.ConstructorInfo::ConstructorName String_t* ___ConstructorName_0; // System.String System.Reflection.ConstructorInfo::TypeConstructorName String_t* ___TypeConstructorName_1; public: inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___ConstructorName_0)); } inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; } inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; } inline void set_ConstructorName_0(String_t* value) { ___ConstructorName_0 = value; Il2CppCodeGenWriteBarrier((&___ConstructorName_0), value); } inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___TypeConstructorName_1)); } inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; } inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; } inline void set_TypeConstructorName_1(String_t* value) { ___TypeConstructorName_1 = value; Il2CppCodeGenWriteBarrier((&___TypeConstructorName_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CONSTRUCTORINFO_T5769829_H #ifndef XSDWHITESPACEFACET_T376308449_H #define XSDWHITESPACEFACET_T376308449_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdWhitespaceFacet struct XsdWhitespaceFacet_t376308449 { public: // System.Int32 Mono.Xml.Schema.XsdWhitespaceFacet::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XsdWhitespaceFacet_t376308449, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDWHITESPACEFACET_T376308449_H #ifndef REGEXOPTIONS_T92845595_H #define REGEXOPTIONS_T92845595_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t92845595 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(RegexOptions_t92845595, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEXOPTIONS_T92845595_H #ifndef XMLSCHEMACONTENTTYPE_T3022550233_H #define XMLSCHEMACONTENTTYPE_T3022550233_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaContentType struct XmlSchemaContentType_t3022550233 { public: // System.Int32 System.Xml.Schema.XmlSchemaContentType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaContentType_t3022550233, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACONTENTTYPE_T3022550233_H #ifndef NULLREFERENCEEXCEPTION_T1023182353_H #define NULLREFERENCEEXCEPTION_T1023182353_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.NullReferenceException struct NullReferenceException_t1023182353 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // NULLREFERENCEEXCEPTION_T1023182353_H #ifndef SCHEMATYPES_T1741406581_H #define SCHEMATYPES_T1741406581_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.SchemaTypes struct SchemaTypes_t1741406581 { public: // System.Int32 System.Xml.Serialization.SchemaTypes::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SchemaTypes_t1741406581, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SCHEMATYPES_T1741406581_H #ifndef INVALIDOPERATIONEXCEPTION_T56020091_H #define INVALIDOPERATIONEXCEPTION_T56020091_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidOperationException struct InvalidOperationException_t56020091 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDOPERATIONEXCEPTION_T56020091_H #ifndef RUNTIMETYPEHANDLE_T3027515415_H #define RUNTIMETYPEHANDLE_T3027515415_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeTypeHandle struct RuntimeTypeHandle_t3027515415 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t3027515415, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMETYPEHANDLE_T3027515415_H #ifndef XMLSCHEMAVALIDITY_T3794542157_H #define XMLSCHEMAVALIDITY_T3794542157_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaValidity struct XmlSchemaValidity_t3794542157 { public: // System.Int32 System.Xml.Schema.XmlSchemaValidity::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaValidity_t3794542157, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAVALIDITY_T3794542157_H #ifndef RUNTIMEFIELDHANDLE_T1871169219_H #define RUNTIMEFIELDHANDLE_T1871169219_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.RuntimeFieldHandle struct RuntimeFieldHandle_t1871169219 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t1871169219, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEFIELDHANDLE_T1871169219_H #ifndef XSDORDERING_T789960802_H #define XSDORDERING_T789960802_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdOrdering struct XsdOrdering_t789960802 { public: // System.Int32 Mono.Xml.Schema.XsdOrdering::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XsdOrdering_t789960802, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDORDERING_T789960802_H #ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255363_H #define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255363_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t3057255363 : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields { public: // <PrivateImplementationDetails>/$ArrayType$8 <PrivateImplementationDetails>::$$field-36 U24ArrayTypeU248_t3244137464 ___U24U24fieldU2D36_0; // <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-37 U24ArrayTypeU24256_t1929481983 ___U24U24fieldU2D37_1; // <PrivateImplementationDetails>/$ArrayType$256 <PrivateImplementationDetails>::$$field-38 U24ArrayTypeU24256_t1929481983 ___U24U24fieldU2D38_2; // <PrivateImplementationDetails>/$ArrayType$1280 <PrivateImplementationDetails>::$$field-39 U24ArrayTypeU241280_t4290130235 ___U24U24fieldU2D39_3; // <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-40 U24ArrayTypeU2412_t2490092598 ___U24U24fieldU2D40_4; // <PrivateImplementationDetails>/$ArrayType$12 <PrivateImplementationDetails>::$$field-41 U24ArrayTypeU2412_t2490092598 ___U24U24fieldU2D41_5; // <PrivateImplementationDetails>/$ArrayType$8 <PrivateImplementationDetails>::$$field-43 U24ArrayTypeU248_t3244137464 ___U24U24fieldU2D43_6; // <PrivateImplementationDetails>/$ArrayType$8 <PrivateImplementationDetails>::$$field-44 U24ArrayTypeU248_t3244137464 ___U24U24fieldU2D44_7; public: inline static int32_t get_offset_of_U24U24fieldU2D36_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D36_0)); } inline U24ArrayTypeU248_t3244137464 get_U24U24fieldU2D36_0() const { return ___U24U24fieldU2D36_0; } inline U24ArrayTypeU248_t3244137464 * get_address_of_U24U24fieldU2D36_0() { return &___U24U24fieldU2D36_0; } inline void set_U24U24fieldU2D36_0(U24ArrayTypeU248_t3244137464 value) { ___U24U24fieldU2D36_0 = value; } inline static int32_t get_offset_of_U24U24fieldU2D37_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D37_1)); } inline U24ArrayTypeU24256_t1929481983 get_U24U24fieldU2D37_1() const { return ___U24U24fieldU2D37_1; } inline U24ArrayTypeU24256_t1929481983 * get_address_of_U24U24fieldU2D37_1() { return &___U24U24fieldU2D37_1; } inline void set_U24U24fieldU2D37_1(U24ArrayTypeU24256_t1929481983 value) { ___U24U24fieldU2D37_1 = value; } inline static int32_t get_offset_of_U24U24fieldU2D38_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D38_2)); } inline U24ArrayTypeU24256_t1929481983 get_U24U24fieldU2D38_2() const { return ___U24U24fieldU2D38_2; } inline U24ArrayTypeU24256_t1929481983 * get_address_of_U24U24fieldU2D38_2() { return &___U24U24fieldU2D38_2; } inline void set_U24U24fieldU2D38_2(U24ArrayTypeU24256_t1929481983 value) { ___U24U24fieldU2D38_2 = value; } inline static int32_t get_offset_of_U24U24fieldU2D39_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D39_3)); } inline U24ArrayTypeU241280_t4290130235 get_U24U24fieldU2D39_3() const { return ___U24U24fieldU2D39_3; } inline U24ArrayTypeU241280_t4290130235 * get_address_of_U24U24fieldU2D39_3() { return &___U24U24fieldU2D39_3; } inline void set_U24U24fieldU2D39_3(U24ArrayTypeU241280_t4290130235 value) { ___U24U24fieldU2D39_3 = value; } inline static int32_t get_offset_of_U24U24fieldU2D40_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D40_4)); } inline U24ArrayTypeU2412_t2490092598 get_U24U24fieldU2D40_4() const { return ___U24U24fieldU2D40_4; } inline U24ArrayTypeU2412_t2490092598 * get_address_of_U24U24fieldU2D40_4() { return &___U24U24fieldU2D40_4; } inline void set_U24U24fieldU2D40_4(U24ArrayTypeU2412_t2490092598 value) { ___U24U24fieldU2D40_4 = value; } inline static int32_t get_offset_of_U24U24fieldU2D41_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D41_5)); } inline U24ArrayTypeU2412_t2490092598 get_U24U24fieldU2D41_5() const { return ___U24U24fieldU2D41_5; } inline U24ArrayTypeU2412_t2490092598 * get_address_of_U24U24fieldU2D41_5() { return &___U24U24fieldU2D41_5; } inline void set_U24U24fieldU2D41_5(U24ArrayTypeU2412_t2490092598 value) { ___U24U24fieldU2D41_5 = value; } inline static int32_t get_offset_of_U24U24fieldU2D43_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D43_6)); } inline U24ArrayTypeU248_t3244137464 get_U24U24fieldU2D43_6() const { return ___U24U24fieldU2D43_6; } inline U24ArrayTypeU248_t3244137464 * get_address_of_U24U24fieldU2D43_6() { return &___U24U24fieldU2D43_6; } inline void set_U24U24fieldU2D43_6(U24ArrayTypeU248_t3244137464 value) { ___U24U24fieldU2D43_6 = value; } inline static int32_t get_offset_of_U24U24fieldU2D44_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t3057255363_StaticFields, ___U24U24fieldU2D44_7)); } inline U24ArrayTypeU248_t3244137464 get_U24U24fieldU2D44_7() const { return ___U24U24fieldU2D44_7; } inline U24ArrayTypeU248_t3244137464 * get_address_of_U24U24fieldU2D44_7() { return &___U24U24fieldU2D44_7; } inline void set_U24U24fieldU2D44_7(U24ArrayTypeU248_t3244137464 value) { ___U24U24fieldU2D44_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_T3057255363_H #ifndef XMLCHARACTERDATA_T1167807131_H #define XMLCHARACTERDATA_T1167807131_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlCharacterData struct XmlCharacterData_t1167807131 : public XmlLinkedNode_t1437094927 { public: // System.String System.Xml.XmlCharacterData::data String_t* ___data_6; public: inline static int32_t get_offset_of_data_6() { return static_cast<int32_t>(offsetof(XmlCharacterData_t1167807131, ___data_6)); } inline String_t* get_data_6() const { return ___data_6; } inline String_t** get_address_of_data_6() { return &___data_6; } inline void set_data_6(String_t* value) { ___data_6 = value; Il2CppCodeGenWriteBarrier((&___data_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLCHARACTERDATA_T1167807131_H #ifndef XMLSCHEMAVALIDATIONFLAGS_T877176585_H #define XMLSCHEMAVALIDATIONFLAGS_T877176585_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaValidationFlags struct XmlSchemaValidationFlags_t877176585 { public: // System.Int32 System.Xml.Schema.XmlSchemaValidationFlags::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSchemaValidationFlags_t877176585, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAVALIDATIONFLAGS_T877176585_H #ifndef XMLNODETYPE_T1672767151_H #define XMLNODETYPE_T1672767151_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlNodeType struct XmlNodeType_t1672767151 { public: // System.Int32 System.Xml.XmlNodeType::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlNodeType_t1672767151, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLNODETYPE_T1672767151_H #ifndef XMLSPACE_T3324193251_H #define XMLSPACE_T3324193251_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlSpace struct XmlSpace_t3324193251 { public: // System.Int32 System.Xml.XmlSpace::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(XmlSpace_t3324193251, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSPACE_T3324193251_H #ifndef STREAMINGCONTEXTSTATES_T3580100459_H #define STREAMINGCONTEXTSTATES_T3580100459_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_t3580100459 { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___1; public: inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StreamingContextStates_t3580100459, ___value___1)); } inline int32_t get_value___1() const { return ___value___1; } inline int32_t* get_address_of_value___1() { return &___value___1; } inline void set_value___1(int32_t value) { ___value___1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAMINGCONTEXTSTATES_T3580100459_H #ifndef FORMATEXCEPTION_T154580423_H #define FORMATEXCEPTION_T154580423_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.FormatException struct FormatException_t154580423 : public SystemException_t176217640 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FORMATEXCEPTION_T154580423_H #ifndef XMLSCHEMAANNOTATION_T2553753397_H #define XMLSCHEMAANNOTATION_T2553753397_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAnnotation struct XmlSchemaAnnotation_t2553753397 : public XmlSchemaObject_t1315720168 { public: // System.String System.Xml.Schema.XmlSchemaAnnotation::id String_t* ___id_13; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaAnnotation::items XmlSchemaObjectCollection_t1064819932 * ___items_14; public: inline static int32_t get_offset_of_id_13() { return static_cast<int32_t>(offsetof(XmlSchemaAnnotation_t2553753397, ___id_13)); } inline String_t* get_id_13() const { return ___id_13; } inline String_t** get_address_of_id_13() { return &___id_13; } inline void set_id_13(String_t* value) { ___id_13 = value; Il2CppCodeGenWriteBarrier((&___id_13), value); } inline static int32_t get_offset_of_items_14() { return static_cast<int32_t>(offsetof(XmlSchemaAnnotation_t2553753397, ___items_14)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_14() const { return ___items_14; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_14() { return &___items_14; } inline void set_items_14(XmlSchemaObjectCollection_t1064819932 * value) { ___items_14 = value; Il2CppCodeGenWriteBarrier((&___items_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAANNOTATION_T2553753397_H #ifndef XMLSCHEMAVALIDATIONEXCEPTION_T816160496_H #define XMLSCHEMAVALIDATIONEXCEPTION_T816160496_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaValidationException struct XmlSchemaValidationException_t816160496 : public XmlSchemaException_t3511258692 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAVALIDATIONEXCEPTION_T816160496_H #ifndef STREAMINGCONTEXT_T3711869237_H #define STREAMINGCONTEXT_T3711869237_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237 { public: // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::state int32_t ___state_0; // System.Object System.Runtime.Serialization.StreamingContext::additional RuntimeObject * ___additional_1; public: inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___state_0)); } inline int32_t get_state_0() const { return ___state_0; } inline int32_t* get_address_of_state_0() { return &___state_0; } inline void set_state_0(int32_t value) { ___state_0 = value; } inline static int32_t get_offset_of_additional_1() { return static_cast<int32_t>(offsetof(StreamingContext_t3711869237, ___additional_1)); } inline RuntimeObject * get_additional_1() const { return ___additional_1; } inline RuntimeObject ** get_address_of_additional_1() { return &___additional_1; } inline void set_additional_1(RuntimeObject * value) { ___additional_1 = value; Il2CppCodeGenWriteBarrier((&___additional_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237_marshaled_pinvoke { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t3711869237_marshaled_com { int32_t ___state_0; Il2CppIUnknown* ___additional_1; }; #endif // STREAMINGCONTEXT_T3711869237_H #ifndef TYPEDATA_T476999220_H #define TYPEDATA_T476999220_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Serialization.TypeData struct TypeData_t476999220 : public RuntimeObject { public: // System.Type System.Xml.Serialization.TypeData::type Type_t * ___type_0; // System.String System.Xml.Serialization.TypeData::elementName String_t* ___elementName_1; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::sType int32_t ___sType_2; // System.Type System.Xml.Serialization.TypeData::listItemType Type_t * ___listItemType_3; // System.String System.Xml.Serialization.TypeData::typeName String_t* ___typeName_4; // System.String System.Xml.Serialization.TypeData::fullTypeName String_t* ___fullTypeName_5; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::listItemTypeData TypeData_t476999220 * ___listItemTypeData_6; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::mappedType TypeData_t476999220 * ___mappedType_7; // System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Serialization.TypeData::facet XmlSchemaPatternFacet_t3316004401 * ___facet_8; // System.Boolean System.Xml.Serialization.TypeData::hasPublicConstructor bool ___hasPublicConstructor_9; // System.Boolean System.Xml.Serialization.TypeData::nullableOverride bool ___nullableOverride_10; public: inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___type_0)); } inline Type_t * get_type_0() const { return ___type_0; } inline Type_t ** get_address_of_type_0() { return &___type_0; } inline void set_type_0(Type_t * value) { ___type_0 = value; Il2CppCodeGenWriteBarrier((&___type_0), value); } inline static int32_t get_offset_of_elementName_1() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___elementName_1)); } inline String_t* get_elementName_1() const { return ___elementName_1; } inline String_t** get_address_of_elementName_1() { return &___elementName_1; } inline void set_elementName_1(String_t* value) { ___elementName_1 = value; Il2CppCodeGenWriteBarrier((&___elementName_1), value); } inline static int32_t get_offset_of_sType_2() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___sType_2)); } inline int32_t get_sType_2() const { return ___sType_2; } inline int32_t* get_address_of_sType_2() { return &___sType_2; } inline void set_sType_2(int32_t value) { ___sType_2 = value; } inline static int32_t get_offset_of_listItemType_3() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___listItemType_3)); } inline Type_t * get_listItemType_3() const { return ___listItemType_3; } inline Type_t ** get_address_of_listItemType_3() { return &___listItemType_3; } inline void set_listItemType_3(Type_t * value) { ___listItemType_3 = value; Il2CppCodeGenWriteBarrier((&___listItemType_3), value); } inline static int32_t get_offset_of_typeName_4() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___typeName_4)); } inline String_t* get_typeName_4() const { return ___typeName_4; } inline String_t** get_address_of_typeName_4() { return &___typeName_4; } inline void set_typeName_4(String_t* value) { ___typeName_4 = value; Il2CppCodeGenWriteBarrier((&___typeName_4), value); } inline static int32_t get_offset_of_fullTypeName_5() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___fullTypeName_5)); } inline String_t* get_fullTypeName_5() const { return ___fullTypeName_5; } inline String_t** get_address_of_fullTypeName_5() { return &___fullTypeName_5; } inline void set_fullTypeName_5(String_t* value) { ___fullTypeName_5 = value; Il2CppCodeGenWriteBarrier((&___fullTypeName_5), value); } inline static int32_t get_offset_of_listItemTypeData_6() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___listItemTypeData_6)); } inline TypeData_t476999220 * get_listItemTypeData_6() const { return ___listItemTypeData_6; } inline TypeData_t476999220 ** get_address_of_listItemTypeData_6() { return &___listItemTypeData_6; } inline void set_listItemTypeData_6(TypeData_t476999220 * value) { ___listItemTypeData_6 = value; Il2CppCodeGenWriteBarrier((&___listItemTypeData_6), value); } inline static int32_t get_offset_of_mappedType_7() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___mappedType_7)); } inline TypeData_t476999220 * get_mappedType_7() const { return ___mappedType_7; } inline TypeData_t476999220 ** get_address_of_mappedType_7() { return &___mappedType_7; } inline void set_mappedType_7(TypeData_t476999220 * value) { ___mappedType_7 = value; Il2CppCodeGenWriteBarrier((&___mappedType_7), value); } inline static int32_t get_offset_of_facet_8() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___facet_8)); } inline XmlSchemaPatternFacet_t3316004401 * get_facet_8() const { return ___facet_8; } inline XmlSchemaPatternFacet_t3316004401 ** get_address_of_facet_8() { return &___facet_8; } inline void set_facet_8(XmlSchemaPatternFacet_t3316004401 * value) { ___facet_8 = value; Il2CppCodeGenWriteBarrier((&___facet_8), value); } inline static int32_t get_offset_of_hasPublicConstructor_9() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___hasPublicConstructor_9)); } inline bool get_hasPublicConstructor_9() const { return ___hasPublicConstructor_9; } inline bool* get_address_of_hasPublicConstructor_9() { return &___hasPublicConstructor_9; } inline void set_hasPublicConstructor_9(bool value) { ___hasPublicConstructor_9 = value; } inline static int32_t get_offset_of_nullableOverride_10() { return static_cast<int32_t>(offsetof(TypeData_t476999220, ___nullableOverride_10)); } inline bool get_nullableOverride_10() const { return ___nullableOverride_10; } inline bool* get_address_of_nullableOverride_10() { return &___nullableOverride_10; } inline void set_nullableOverride_10(bool value) { ___nullableOverride_10 = value; } }; struct TypeData_t476999220_StaticFields { public: // System.String[] System.Xml.Serialization.TypeData::keywords StringU5BU5D_t1281789340* ___keywords_11; public: inline static int32_t get_offset_of_keywords_11() { return static_cast<int32_t>(offsetof(TypeData_t476999220_StaticFields, ___keywords_11)); } inline StringU5BU5D_t1281789340* get_keywords_11() const { return ___keywords_11; } inline StringU5BU5D_t1281789340** get_address_of_keywords_11() { return &___keywords_11; } inline void set_keywords_11(StringU5BU5D_t1281789340* value) { ___keywords_11 = value; Il2CppCodeGenWriteBarrier((&___keywords_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPEDATA_T476999220_H #ifndef XMLPARSERCONTEXT_T2544895291_H #define XMLPARSERCONTEXT_T2544895291_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlParserContext struct XmlParserContext_t2544895291 : public RuntimeObject { public: // System.String System.Xml.XmlParserContext::baseURI String_t* ___baseURI_0; // System.String System.Xml.XmlParserContext::docTypeName String_t* ___docTypeName_1; // System.Text.Encoding System.Xml.XmlParserContext::encoding Encoding_t1523322056 * ___encoding_2; // System.String System.Xml.XmlParserContext::internalSubset String_t* ___internalSubset_3; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::namespaceManager XmlNamespaceManager_t418790500 * ___namespaceManager_4; // System.Xml.XmlNameTable System.Xml.XmlParserContext::nameTable XmlNameTable_t71772148 * ___nameTable_5; // System.String System.Xml.XmlParserContext::publicID String_t* ___publicID_6; // System.String System.Xml.XmlParserContext::systemID String_t* ___systemID_7; // System.String System.Xml.XmlParserContext::xmlLang String_t* ___xmlLang_8; // System.Xml.XmlSpace System.Xml.XmlParserContext::xmlSpace int32_t ___xmlSpace_9; // System.Collections.ArrayList System.Xml.XmlParserContext::contextItems ArrayList_t2718874744 * ___contextItems_10; // System.Int32 System.Xml.XmlParserContext::contextItemCount int32_t ___contextItemCount_11; // Mono.Xml.DTDObjectModel System.Xml.XmlParserContext::dtd DTDObjectModel_t1729680289 * ___dtd_12; public: inline static int32_t get_offset_of_baseURI_0() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___baseURI_0)); } inline String_t* get_baseURI_0() const { return ___baseURI_0; } inline String_t** get_address_of_baseURI_0() { return &___baseURI_0; } inline void set_baseURI_0(String_t* value) { ___baseURI_0 = value; Il2CppCodeGenWriteBarrier((&___baseURI_0), value); } inline static int32_t get_offset_of_docTypeName_1() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___docTypeName_1)); } inline String_t* get_docTypeName_1() const { return ___docTypeName_1; } inline String_t** get_address_of_docTypeName_1() { return &___docTypeName_1; } inline void set_docTypeName_1(String_t* value) { ___docTypeName_1 = value; Il2CppCodeGenWriteBarrier((&___docTypeName_1), value); } inline static int32_t get_offset_of_encoding_2() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___encoding_2)); } inline Encoding_t1523322056 * get_encoding_2() const { return ___encoding_2; } inline Encoding_t1523322056 ** get_address_of_encoding_2() { return &___encoding_2; } inline void set_encoding_2(Encoding_t1523322056 * value) { ___encoding_2 = value; Il2CppCodeGenWriteBarrier((&___encoding_2), value); } inline static int32_t get_offset_of_internalSubset_3() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___internalSubset_3)); } inline String_t* get_internalSubset_3() const { return ___internalSubset_3; } inline String_t** get_address_of_internalSubset_3() { return &___internalSubset_3; } inline void set_internalSubset_3(String_t* value) { ___internalSubset_3 = value; Il2CppCodeGenWriteBarrier((&___internalSubset_3), value); } inline static int32_t get_offset_of_namespaceManager_4() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___namespaceManager_4)); } inline XmlNamespaceManager_t418790500 * get_namespaceManager_4() const { return ___namespaceManager_4; } inline XmlNamespaceManager_t418790500 ** get_address_of_namespaceManager_4() { return &___namespaceManager_4; } inline void set_namespaceManager_4(XmlNamespaceManager_t418790500 * value) { ___namespaceManager_4 = value; Il2CppCodeGenWriteBarrier((&___namespaceManager_4), value); } inline static int32_t get_offset_of_nameTable_5() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___nameTable_5)); } inline XmlNameTable_t71772148 * get_nameTable_5() const { return ___nameTable_5; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_5() { return &___nameTable_5; } inline void set_nameTable_5(XmlNameTable_t71772148 * value) { ___nameTable_5 = value; Il2CppCodeGenWriteBarrier((&___nameTable_5), value); } inline static int32_t get_offset_of_publicID_6() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___publicID_6)); } inline String_t* get_publicID_6() const { return ___publicID_6; } inline String_t** get_address_of_publicID_6() { return &___publicID_6; } inline void set_publicID_6(String_t* value) { ___publicID_6 = value; Il2CppCodeGenWriteBarrier((&___publicID_6), value); } inline static int32_t get_offset_of_systemID_7() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___systemID_7)); } inline String_t* get_systemID_7() const { return ___systemID_7; } inline String_t** get_address_of_systemID_7() { return &___systemID_7; } inline void set_systemID_7(String_t* value) { ___systemID_7 = value; Il2CppCodeGenWriteBarrier((&___systemID_7), value); } inline static int32_t get_offset_of_xmlLang_8() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___xmlLang_8)); } inline String_t* get_xmlLang_8() const { return ___xmlLang_8; } inline String_t** get_address_of_xmlLang_8() { return &___xmlLang_8; } inline void set_xmlLang_8(String_t* value) { ___xmlLang_8 = value; Il2CppCodeGenWriteBarrier((&___xmlLang_8), value); } inline static int32_t get_offset_of_xmlSpace_9() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___xmlSpace_9)); } inline int32_t get_xmlSpace_9() const { return ___xmlSpace_9; } inline int32_t* get_address_of_xmlSpace_9() { return &___xmlSpace_9; } inline void set_xmlSpace_9(int32_t value) { ___xmlSpace_9 = value; } inline static int32_t get_offset_of_contextItems_10() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___contextItems_10)); } inline ArrayList_t2718874744 * get_contextItems_10() const { return ___contextItems_10; } inline ArrayList_t2718874744 ** get_address_of_contextItems_10() { return &___contextItems_10; } inline void set_contextItems_10(ArrayList_t2718874744 * value) { ___contextItems_10 = value; Il2CppCodeGenWriteBarrier((&___contextItems_10), value); } inline static int32_t get_offset_of_contextItemCount_11() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___contextItemCount_11)); } inline int32_t get_contextItemCount_11() const { return ___contextItemCount_11; } inline int32_t* get_address_of_contextItemCount_11() { return &___contextItemCount_11; } inline void set_contextItemCount_11(int32_t value) { ___contextItemCount_11 = value; } inline static int32_t get_offset_of_dtd_12() { return static_cast<int32_t>(offsetof(XmlParserContext_t2544895291, ___dtd_12)); } inline DTDObjectModel_t1729680289 * get_dtd_12() const { return ___dtd_12; } inline DTDObjectModel_t1729680289 ** get_address_of_dtd_12() { return &___dtd_12; } inline void set_dtd_12(DTDObjectModel_t1729680289 * value) { ___dtd_12 = value; Il2CppCodeGenWriteBarrier((&___dtd_12), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLPARSERCONTEXT_T2544895291_H #ifndef PARAMETERINFO_T1861056598_H #define PARAMETERINFO_T1861056598_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Reflection.ParameterInfo struct ParameterInfo_t1861056598 : public RuntimeObject { public: // System.Type System.Reflection.ParameterInfo::ClassImpl Type_t * ___ClassImpl_0; // System.Object System.Reflection.ParameterInfo::DefaultValueImpl RuntimeObject * ___DefaultValueImpl_1; // System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl MemberInfo_t * ___MemberImpl_2; // System.String System.Reflection.ParameterInfo::NameImpl String_t* ___NameImpl_3; // System.Int32 System.Reflection.ParameterInfo::PositionImpl int32_t ___PositionImpl_4; // System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl int32_t ___AttrsImpl_5; // System.Reflection.Emit.UnmanagedMarshal System.Reflection.ParameterInfo::marshalAs UnmanagedMarshal_t984015687 * ___marshalAs_6; public: inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___ClassImpl_0)); } inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; } inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; } inline void set_ClassImpl_0(Type_t * value) { ___ClassImpl_0 = value; Il2CppCodeGenWriteBarrier((&___ClassImpl_0), value); } inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___DefaultValueImpl_1)); } inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; } inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; } inline void set_DefaultValueImpl_1(RuntimeObject * value) { ___DefaultValueImpl_1 = value; Il2CppCodeGenWriteBarrier((&___DefaultValueImpl_1), value); } inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___MemberImpl_2)); } inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; } inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; } inline void set_MemberImpl_2(MemberInfo_t * value) { ___MemberImpl_2 = value; Il2CppCodeGenWriteBarrier((&___MemberImpl_2), value); } inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___NameImpl_3)); } inline String_t* get_NameImpl_3() const { return ___NameImpl_3; } inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; } inline void set_NameImpl_3(String_t* value) { ___NameImpl_3 = value; Il2CppCodeGenWriteBarrier((&___NameImpl_3), value); } inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___PositionImpl_4)); } inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; } inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; } inline void set_PositionImpl_4(int32_t value) { ___PositionImpl_4 = value; } inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___AttrsImpl_5)); } inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; } inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; } inline void set_AttrsImpl_5(int32_t value) { ___AttrsImpl_5 = value; } inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___marshalAs_6)); } inline UnmanagedMarshal_t984015687 * get_marshalAs_6() const { return ___marshalAs_6; } inline UnmanagedMarshal_t984015687 ** get_address_of_marshalAs_6() { return &___marshalAs_6; } inline void set_marshalAs_6(UnmanagedMarshal_t984015687 * value) { ___marshalAs_6 = value; Il2CppCodeGenWriteBarrier((&___marshalAs_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // PARAMETERINFO_T1861056598_H #ifndef DTDATTRIBUTEDEFINITION_T3434905422_H #define DTDATTRIBUTEDEFINITION_T3434905422_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDAttributeDefinition struct DTDAttributeDefinition_t3434905422 : public DTDNode_t858560093 { public: // System.String Mono.Xml.DTDAttributeDefinition::name String_t* ___name_5; // System.Xml.Schema.XmlSchemaDatatype Mono.Xml.DTDAttributeDefinition::datatype XmlSchemaDatatype_t322714710 * ___datatype_6; // System.Collections.ArrayList Mono.Xml.DTDAttributeDefinition::enumeratedLiterals ArrayList_t2718874744 * ___enumeratedLiterals_7; // System.String Mono.Xml.DTDAttributeDefinition::unresolvedDefault String_t* ___unresolvedDefault_8; // System.Collections.ArrayList Mono.Xml.DTDAttributeDefinition::enumeratedNotations ArrayList_t2718874744 * ___enumeratedNotations_9; // Mono.Xml.DTDAttributeOccurenceType Mono.Xml.DTDAttributeDefinition::occurenceType int32_t ___occurenceType_10; // System.String Mono.Xml.DTDAttributeDefinition::resolvedDefaultValue String_t* ___resolvedDefaultValue_11; public: inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___name_5)); } inline String_t* get_name_5() const { return ___name_5; } inline String_t** get_address_of_name_5() { return &___name_5; } inline void set_name_5(String_t* value) { ___name_5 = value; Il2CppCodeGenWriteBarrier((&___name_5), value); } inline static int32_t get_offset_of_datatype_6() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___datatype_6)); } inline XmlSchemaDatatype_t322714710 * get_datatype_6() const { return ___datatype_6; } inline XmlSchemaDatatype_t322714710 ** get_address_of_datatype_6() { return &___datatype_6; } inline void set_datatype_6(XmlSchemaDatatype_t322714710 * value) { ___datatype_6 = value; Il2CppCodeGenWriteBarrier((&___datatype_6), value); } inline static int32_t get_offset_of_enumeratedLiterals_7() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___enumeratedLiterals_7)); } inline ArrayList_t2718874744 * get_enumeratedLiterals_7() const { return ___enumeratedLiterals_7; } inline ArrayList_t2718874744 ** get_address_of_enumeratedLiterals_7() { return &___enumeratedLiterals_7; } inline void set_enumeratedLiterals_7(ArrayList_t2718874744 * value) { ___enumeratedLiterals_7 = value; Il2CppCodeGenWriteBarrier((&___enumeratedLiterals_7), value); } inline static int32_t get_offset_of_unresolvedDefault_8() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___unresolvedDefault_8)); } inline String_t* get_unresolvedDefault_8() const { return ___unresolvedDefault_8; } inline String_t** get_address_of_unresolvedDefault_8() { return &___unresolvedDefault_8; } inline void set_unresolvedDefault_8(String_t* value) { ___unresolvedDefault_8 = value; Il2CppCodeGenWriteBarrier((&___unresolvedDefault_8), value); } inline static int32_t get_offset_of_enumeratedNotations_9() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___enumeratedNotations_9)); } inline ArrayList_t2718874744 * get_enumeratedNotations_9() const { return ___enumeratedNotations_9; } inline ArrayList_t2718874744 ** get_address_of_enumeratedNotations_9() { return &___enumeratedNotations_9; } inline void set_enumeratedNotations_9(ArrayList_t2718874744 * value) { ___enumeratedNotations_9 = value; Il2CppCodeGenWriteBarrier((&___enumeratedNotations_9), value); } inline static int32_t get_offset_of_occurenceType_10() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___occurenceType_10)); } inline int32_t get_occurenceType_10() const { return ___occurenceType_10; } inline int32_t* get_address_of_occurenceType_10() { return &___occurenceType_10; } inline void set_occurenceType_10(int32_t value) { ___occurenceType_10 = value; } inline static int32_t get_offset_of_resolvedDefaultValue_11() { return static_cast<int32_t>(offsetof(DTDAttributeDefinition_t3434905422, ___resolvedDefaultValue_11)); } inline String_t* get_resolvedDefaultValue_11() const { return ___resolvedDefaultValue_11; } inline String_t** get_address_of_resolvedDefaultValue_11() { return &___resolvedDefaultValue_11; } inline void set_resolvedDefaultValue_11(String_t* value) { ___resolvedDefaultValue_11 = value; Il2CppCodeGenWriteBarrier((&___resolvedDefaultValue_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDATTRIBUTEDEFINITION_T3434905422_H #ifndef XMLSCHEMAUTIL_T956145399_H #define XMLSCHEMAUTIL_T956145399_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaUtil struct XmlSchemaUtil_t956145399 : public RuntimeObject { public: public: }; struct XmlSchemaUtil_t956145399_StaticFields { public: // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::FinalAllowed int32_t ___FinalAllowed_0; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::ElementBlockAllowed int32_t ___ElementBlockAllowed_1; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::ComplexTypeBlockAllowed int32_t ___ComplexTypeBlockAllowed_2; // System.Boolean System.Xml.Schema.XmlSchemaUtil::StrictMsCompliant bool ___StrictMsCompliant_3; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map4B Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4B_4; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map4C Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4C_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map4D Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4D_6; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map4E Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4E_7; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map4F Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4F_8; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaUtil::<>f__switch$map50 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map50_9; public: inline static int32_t get_offset_of_FinalAllowed_0() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___FinalAllowed_0)); } inline int32_t get_FinalAllowed_0() const { return ___FinalAllowed_0; } inline int32_t* get_address_of_FinalAllowed_0() { return &___FinalAllowed_0; } inline void set_FinalAllowed_0(int32_t value) { ___FinalAllowed_0 = value; } inline static int32_t get_offset_of_ElementBlockAllowed_1() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___ElementBlockAllowed_1)); } inline int32_t get_ElementBlockAllowed_1() const { return ___ElementBlockAllowed_1; } inline int32_t* get_address_of_ElementBlockAllowed_1() { return &___ElementBlockAllowed_1; } inline void set_ElementBlockAllowed_1(int32_t value) { ___ElementBlockAllowed_1 = value; } inline static int32_t get_offset_of_ComplexTypeBlockAllowed_2() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___ComplexTypeBlockAllowed_2)); } inline int32_t get_ComplexTypeBlockAllowed_2() const { return ___ComplexTypeBlockAllowed_2; } inline int32_t* get_address_of_ComplexTypeBlockAllowed_2() { return &___ComplexTypeBlockAllowed_2; } inline void set_ComplexTypeBlockAllowed_2(int32_t value) { ___ComplexTypeBlockAllowed_2 = value; } inline static int32_t get_offset_of_StrictMsCompliant_3() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___StrictMsCompliant_3)); } inline bool get_StrictMsCompliant_3() const { return ___StrictMsCompliant_3; } inline bool* get_address_of_StrictMsCompliant_3() { return &___StrictMsCompliant_3; } inline void set_StrictMsCompliant_3(bool value) { ___StrictMsCompliant_3 = value; } inline static int32_t get_offset_of_U3CU3Ef__switchU24map4B_4() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map4B_4)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4B_4() const { return ___U3CU3Ef__switchU24map4B_4; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4B_4() { return &___U3CU3Ef__switchU24map4B_4; } inline void set_U3CU3Ef__switchU24map4B_4(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4B_4 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4B_4), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map4C_5() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map4C_5)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4C_5() const { return ___U3CU3Ef__switchU24map4C_5; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4C_5() { return &___U3CU3Ef__switchU24map4C_5; } inline void set_U3CU3Ef__switchU24map4C_5(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4C_5 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4C_5), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map4D_6() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map4D_6)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4D_6() const { return ___U3CU3Ef__switchU24map4D_6; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4D_6() { return &___U3CU3Ef__switchU24map4D_6; } inline void set_U3CU3Ef__switchU24map4D_6(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4D_6 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4D_6), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map4E_7() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map4E_7)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4E_7() const { return ___U3CU3Ef__switchU24map4E_7; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4E_7() { return &___U3CU3Ef__switchU24map4E_7; } inline void set_U3CU3Ef__switchU24map4E_7(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4E_7 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4E_7), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map4F_8() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map4F_8)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4F_8() const { return ___U3CU3Ef__switchU24map4F_8; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4F_8() { return &___U3CU3Ef__switchU24map4F_8; } inline void set_U3CU3Ef__switchU24map4F_8(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4F_8 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4F_8), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map50_9() { return static_cast<int32_t>(offsetof(XmlSchemaUtil_t956145399_StaticFields, ___U3CU3Ef__switchU24map50_9)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map50_9() const { return ___U3CU3Ef__switchU24map50_9; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map50_9() { return &___U3CU3Ef__switchU24map50_9; } inline void set_U3CU3Ef__switchU24map50_9(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map50_9 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map50_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAUTIL_T956145399_H #ifndef REGEX_T3657309853_H #define REGEX_T3657309853_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.Regex struct Regex_t3657309853 : public RuntimeObject { public: // System.Text.RegularExpressions.IMachineFactory System.Text.RegularExpressions.Regex::machineFactory RuntimeObject* ___machineFactory_2; // System.Collections.IDictionary System.Text.RegularExpressions.Regex::mapping RuntimeObject* ___mapping_3; // System.Int32 System.Text.RegularExpressions.Regex::group_count int32_t ___group_count_4; // System.Int32 System.Text.RegularExpressions.Regex::gap int32_t ___gap_5; // System.String[] System.Text.RegularExpressions.Regex::group_names StringU5BU5D_t1281789340* ___group_names_6; // System.Int32[] System.Text.RegularExpressions.Regex::group_numbers Int32U5BU5D_t385246372* ___group_numbers_7; // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_8; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_9; public: inline static int32_t get_offset_of_machineFactory_2() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___machineFactory_2)); } inline RuntimeObject* get_machineFactory_2() const { return ___machineFactory_2; } inline RuntimeObject** get_address_of_machineFactory_2() { return &___machineFactory_2; } inline void set_machineFactory_2(RuntimeObject* value) { ___machineFactory_2 = value; Il2CppCodeGenWriteBarrier((&___machineFactory_2), value); } inline static int32_t get_offset_of_mapping_3() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___mapping_3)); } inline RuntimeObject* get_mapping_3() const { return ___mapping_3; } inline RuntimeObject** get_address_of_mapping_3() { return &___mapping_3; } inline void set_mapping_3(RuntimeObject* value) { ___mapping_3 = value; Il2CppCodeGenWriteBarrier((&___mapping_3), value); } inline static int32_t get_offset_of_group_count_4() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___group_count_4)); } inline int32_t get_group_count_4() const { return ___group_count_4; } inline int32_t* get_address_of_group_count_4() { return &___group_count_4; } inline void set_group_count_4(int32_t value) { ___group_count_4 = value; } inline static int32_t get_offset_of_gap_5() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___gap_5)); } inline int32_t get_gap_5() const { return ___gap_5; } inline int32_t* get_address_of_gap_5() { return &___gap_5; } inline void set_gap_5(int32_t value) { ___gap_5 = value; } inline static int32_t get_offset_of_group_names_6() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___group_names_6)); } inline StringU5BU5D_t1281789340* get_group_names_6() const { return ___group_names_6; } inline StringU5BU5D_t1281789340** get_address_of_group_names_6() { return &___group_names_6; } inline void set_group_names_6(StringU5BU5D_t1281789340* value) { ___group_names_6 = value; Il2CppCodeGenWriteBarrier((&___group_names_6), value); } inline static int32_t get_offset_of_group_numbers_7() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___group_numbers_7)); } inline Int32U5BU5D_t385246372* get_group_numbers_7() const { return ___group_numbers_7; } inline Int32U5BU5D_t385246372** get_address_of_group_numbers_7() { return &___group_numbers_7; } inline void set_group_numbers_7(Int32U5BU5D_t385246372* value) { ___group_numbers_7 = value; Il2CppCodeGenWriteBarrier((&___group_numbers_7), value); } inline static int32_t get_offset_of_pattern_8() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___pattern_8)); } inline String_t* get_pattern_8() const { return ___pattern_8; } inline String_t** get_address_of_pattern_8() { return &___pattern_8; } inline void set_pattern_8(String_t* value) { ___pattern_8 = value; Il2CppCodeGenWriteBarrier((&___pattern_8), value); } inline static int32_t get_offset_of_roptions_9() { return static_cast<int32_t>(offsetof(Regex_t3657309853, ___roptions_9)); } inline int32_t get_roptions_9() const { return ___roptions_9; } inline int32_t* get_address_of_roptions_9() { return &___roptions_9; } inline void set_roptions_9(int32_t value) { ___roptions_9 = value; } }; struct Regex_t3657309853_StaticFields { public: // System.Text.RegularExpressions.FactoryCache System.Text.RegularExpressions.Regex::cache FactoryCache_t2327118887 * ___cache_0; // System.Boolean System.Text.RegularExpressions.Regex::old_rx bool ___old_rx_1; public: inline static int32_t get_offset_of_cache_0() { return static_cast<int32_t>(offsetof(Regex_t3657309853_StaticFields, ___cache_0)); } inline FactoryCache_t2327118887 * get_cache_0() const { return ___cache_0; } inline FactoryCache_t2327118887 ** get_address_of_cache_0() { return &___cache_0; } inline void set_cache_0(FactoryCache_t2327118887 * value) { ___cache_0 = value; Il2CppCodeGenWriteBarrier((&___cache_0), value); } inline static int32_t get_offset_of_old_rx_1() { return static_cast<int32_t>(offsetof(Regex_t3657309853_StaticFields, ___old_rx_1)); } inline bool get_old_rx_1() const { return ___old_rx_1; } inline bool* get_address_of_old_rx_1() { return &___old_rx_1; } inline void set_old_rx_1(bool value) { ___old_rx_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEX_T3657309853_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t1188392813 { public: // System.MulticastDelegate System.MulticastDelegate::prev MulticastDelegate_t * ___prev_9; // System.MulticastDelegate System.MulticastDelegate::kpm_next MulticastDelegate_t * ___kpm_next_10; public: inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); } inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; } inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; } inline void set_prev_9(MulticastDelegate_t * value) { ___prev_9 = value; Il2CppCodeGenWriteBarrier((&___prev_9), value); } inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); } inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; } inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; } inline void set_kpm_next_10(MulticastDelegate_t * value) { ___kpm_next_10 = value; Il2CppCodeGenWriteBarrier((&___kpm_next_10), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MULTICASTDELEGATE_T_H #ifndef DTDATTLISTDECLARATIONCOLLECTION_T2220366188_H #define DTDATTLISTDECLARATIONCOLLECTION_T2220366188_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.DTDAttListDeclarationCollection struct DTDAttListDeclarationCollection_t2220366188 : public DTDCollectionBase_t3926218464 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DTDATTLISTDECLARATIONCOLLECTION_T2220366188_H #ifndef XMLSCHEMADATATYPE_T322714710_H #define XMLSCHEMADATATYPE_T322714710_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaDatatype struct XmlSchemaDatatype_t322714710 : public RuntimeObject { public: // Mono.Xml.Schema.XsdWhitespaceFacet System.Xml.Schema.XmlSchemaDatatype::WhitespaceValue int32_t ___WhitespaceValue_0; // System.Text.StringBuilder System.Xml.Schema.XmlSchemaDatatype::sb StringBuilder_t * ___sb_2; public: inline static int32_t get_offset_of_WhitespaceValue_0() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710, ___WhitespaceValue_0)); } inline int32_t get_WhitespaceValue_0() const { return ___WhitespaceValue_0; } inline int32_t* get_address_of_WhitespaceValue_0() { return &___WhitespaceValue_0; } inline void set_WhitespaceValue_0(int32_t value) { ___WhitespaceValue_0 = value; } inline static int32_t get_offset_of_sb_2() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710, ___sb_2)); } inline StringBuilder_t * get_sb_2() const { return ___sb_2; } inline StringBuilder_t ** get_address_of_sb_2() { return &___sb_2; } inline void set_sb_2(StringBuilder_t * value) { ___sb_2 = value; Il2CppCodeGenWriteBarrier((&___sb_2), value); } }; struct XmlSchemaDatatype_t322714710_StaticFields { public: // System.Char[] System.Xml.Schema.XmlSchemaDatatype::wsChars CharU5BU5D_t3528271667* ___wsChars_1; // Mono.Xml.Schema.XsdAnySimpleType System.Xml.Schema.XmlSchemaDatatype::datatypeAnySimpleType XsdAnySimpleType_t1257864485 * ___datatypeAnySimpleType_3; // Mono.Xml.Schema.XsdString System.Xml.Schema.XmlSchemaDatatype::datatypeString XsdString_t3049094358 * ___datatypeString_4; // Mono.Xml.Schema.XsdNormalizedString System.Xml.Schema.XmlSchemaDatatype::datatypeNormalizedString XsdNormalizedString_t3260789355 * ___datatypeNormalizedString_5; // Mono.Xml.Schema.XsdToken System.Xml.Schema.XmlSchemaDatatype::datatypeToken XsdToken_t1239036978 * ___datatypeToken_6; // Mono.Xml.Schema.XsdLanguage System.Xml.Schema.XmlSchemaDatatype::datatypeLanguage XsdLanguage_t1876291273 * ___datatypeLanguage_7; // Mono.Xml.Schema.XsdNMToken System.Xml.Schema.XmlSchemaDatatype::datatypeNMToken XsdNMToken_t834691671 * ___datatypeNMToken_8; // Mono.Xml.Schema.XsdNMTokens System.Xml.Schema.XmlSchemaDatatype::datatypeNMTokens XsdNMTokens_t4246953255 * ___datatypeNMTokens_9; // Mono.Xml.Schema.XsdName System.Xml.Schema.XmlSchemaDatatype::datatypeName XsdName_t2755146808 * ___datatypeName_10; // Mono.Xml.Schema.XsdNCName System.Xml.Schema.XmlSchemaDatatype::datatypeNCName XsdNCName_t3943159043 * ___datatypeNCName_11; // Mono.Xml.Schema.XsdID System.Xml.Schema.XmlSchemaDatatype::datatypeID XsdID_t34704195 * ___datatypeID_12; // Mono.Xml.Schema.XsdIDRef System.Xml.Schema.XmlSchemaDatatype::datatypeIDRef XsdIDRef_t2913612829 * ___datatypeIDRef_13; // Mono.Xml.Schema.XsdIDRefs System.Xml.Schema.XmlSchemaDatatype::datatypeIDRefs XsdIDRefs_t16099206 * ___datatypeIDRefs_14; // Mono.Xml.Schema.XsdEntity System.Xml.Schema.XmlSchemaDatatype::datatypeEntity XsdEntity_t3956505874 * ___datatypeEntity_15; // Mono.Xml.Schema.XsdEntities System.Xml.Schema.XmlSchemaDatatype::datatypeEntities XsdEntities_t1477210398 * ___datatypeEntities_16; // Mono.Xml.Schema.XsdNotation System.Xml.Schema.XmlSchemaDatatype::datatypeNotation XsdNotation_t2827634056 * ___datatypeNotation_17; // Mono.Xml.Schema.XsdDecimal System.Xml.Schema.XmlSchemaDatatype::datatypeDecimal XsdDecimal_t1288601093 * ___datatypeDecimal_18; // Mono.Xml.Schema.XsdInteger System.Xml.Schema.XmlSchemaDatatype::datatypeInteger XsdInteger_t2044766898 * ___datatypeInteger_19; // Mono.Xml.Schema.XsdLong System.Xml.Schema.XmlSchemaDatatype::datatypeLong XsdLong_t1324632828 * ___datatypeLong_20; // Mono.Xml.Schema.XsdInt System.Xml.Schema.XmlSchemaDatatype::datatypeInt XsdInt_t33917785 * ___datatypeInt_21; // Mono.Xml.Schema.XsdShort System.Xml.Schema.XmlSchemaDatatype::datatypeShort XsdShort_t3489811876 * ___datatypeShort_22; // Mono.Xml.Schema.XsdByte System.Xml.Schema.XmlSchemaDatatype::datatypeByte XsdByte_t2221093920 * ___datatypeByte_23; // Mono.Xml.Schema.XsdNonNegativeInteger System.Xml.Schema.XmlSchemaDatatype::datatypeNonNegativeInteger XsdNonNegativeInteger_t308064234 * ___datatypeNonNegativeInteger_24; // Mono.Xml.Schema.XsdPositiveInteger System.Xml.Schema.XmlSchemaDatatype::datatypePositiveInteger XsdPositiveInteger_t1704031413 * ___datatypePositiveInteger_25; // Mono.Xml.Schema.XsdUnsignedLong System.Xml.Schema.XmlSchemaDatatype::datatypeUnsignedLong XsdUnsignedLong_t1409593434 * ___datatypeUnsignedLong_26; // Mono.Xml.Schema.XsdUnsignedInt System.Xml.Schema.XmlSchemaDatatype::datatypeUnsignedInt XsdUnsignedInt_t72105793 * ___datatypeUnsignedInt_27; // Mono.Xml.Schema.XsdUnsignedShort System.Xml.Schema.XmlSchemaDatatype::datatypeUnsignedShort XsdUnsignedShort_t3654069686 * ___datatypeUnsignedShort_28; // Mono.Xml.Schema.XsdUnsignedByte System.Xml.Schema.XmlSchemaDatatype::datatypeUnsignedByte XsdUnsignedByte_t2304219558 * ___datatypeUnsignedByte_29; // Mono.Xml.Schema.XsdNonPositiveInteger System.Xml.Schema.XmlSchemaDatatype::datatypeNonPositiveInteger XsdNonPositiveInteger_t1029055398 * ___datatypeNonPositiveInteger_30; // Mono.Xml.Schema.XsdNegativeInteger System.Xml.Schema.XmlSchemaDatatype::datatypeNegativeInteger XsdNegativeInteger_t2178753546 * ___datatypeNegativeInteger_31; // Mono.Xml.Schema.XsdFloat System.Xml.Schema.XmlSchemaDatatype::datatypeFloat XsdFloat_t3181928905 * ___datatypeFloat_32; // Mono.Xml.Schema.XsdDouble System.Xml.Schema.XmlSchemaDatatype::datatypeDouble XsdDouble_t3324344982 * ___datatypeDouble_33; // Mono.Xml.Schema.XsdBase64Binary System.Xml.Schema.XmlSchemaDatatype::datatypeBase64Binary XsdBase64Binary_t3360383190 * ___datatypeBase64Binary_34; // Mono.Xml.Schema.XsdBoolean System.Xml.Schema.XmlSchemaDatatype::datatypeBoolean XsdBoolean_t380164876 * ___datatypeBoolean_35; // Mono.Xml.Schema.XsdAnyURI System.Xml.Schema.XmlSchemaDatatype::datatypeAnyURI XsdAnyURI_t2755748070 * ___datatypeAnyURI_36; // Mono.Xml.Schema.XsdDuration System.Xml.Schema.XmlSchemaDatatype::datatypeDuration XsdDuration_t1555973170 * ___datatypeDuration_37; // Mono.Xml.Schema.XsdDateTime System.Xml.Schema.XmlSchemaDatatype::datatypeDateTime XsdDateTime_t2563698975 * ___datatypeDateTime_38; // Mono.Xml.Schema.XsdDate System.Xml.Schema.XmlSchemaDatatype::datatypeDate XsdDate_t1417753656 * ___datatypeDate_39; // Mono.Xml.Schema.XsdTime System.Xml.Schema.XmlSchemaDatatype::datatypeTime XsdTime_t3558487088 * ___datatypeTime_40; // Mono.Xml.Schema.XsdHexBinary System.Xml.Schema.XmlSchemaDatatype::datatypeHexBinary XsdHexBinary_t882812470 * ___datatypeHexBinary_41; // Mono.Xml.Schema.XsdQName System.Xml.Schema.XmlSchemaDatatype::datatypeQName XsdQName_t2385631467 * ___datatypeQName_42; // Mono.Xml.Schema.XsdGYearMonth System.Xml.Schema.XmlSchemaDatatype::datatypeGYearMonth XsdGYearMonth_t3399073121 * ___datatypeGYearMonth_43; // Mono.Xml.Schema.XsdGMonthDay System.Xml.Schema.XmlSchemaDatatype::datatypeGMonthDay XsdGMonthDay_t2605134399 * ___datatypeGMonthDay_44; // Mono.Xml.Schema.XsdGYear System.Xml.Schema.XmlSchemaDatatype::datatypeGYear XsdGYear_t3316212116 * ___datatypeGYear_45; // Mono.Xml.Schema.XsdGMonth System.Xml.Schema.XmlSchemaDatatype::datatypeGMonth XsdGMonth_t3913018815 * ___datatypeGMonth_46; // Mono.Xml.Schema.XsdGDay System.Xml.Schema.XmlSchemaDatatype::datatypeGDay XsdGDay_t293490745 * ___datatypeGDay_47; // Mono.Xml.Schema.XdtAnyAtomicType System.Xml.Schema.XmlSchemaDatatype::datatypeAnyAtomicType XdtAnyAtomicType_t269366253 * ___datatypeAnyAtomicType_48; // Mono.Xml.Schema.XdtUntypedAtomic System.Xml.Schema.XmlSchemaDatatype::datatypeUntypedAtomic XdtUntypedAtomic_t1388131523 * ___datatypeUntypedAtomic_49; // Mono.Xml.Schema.XdtDayTimeDuration System.Xml.Schema.XmlSchemaDatatype::datatypeDayTimeDuration XdtDayTimeDuration_t268779858 * ___datatypeDayTimeDuration_50; // Mono.Xml.Schema.XdtYearMonthDuration System.Xml.Schema.XmlSchemaDatatype::datatypeYearMonthDuration XdtYearMonthDuration_t1503718519 * ___datatypeYearMonthDuration_51; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaDatatype::<>f__switch$map3E Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map3E_52; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaDatatype::<>f__switch$map3F Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map3F_53; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaDatatype::<>f__switch$map40 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map40_54; public: inline static int32_t get_offset_of_wsChars_1() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___wsChars_1)); } inline CharU5BU5D_t3528271667* get_wsChars_1() const { return ___wsChars_1; } inline CharU5BU5D_t3528271667** get_address_of_wsChars_1() { return &___wsChars_1; } inline void set_wsChars_1(CharU5BU5D_t3528271667* value) { ___wsChars_1 = value; Il2CppCodeGenWriteBarrier((&___wsChars_1), value); } inline static int32_t get_offset_of_datatypeAnySimpleType_3() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeAnySimpleType_3)); } inline XsdAnySimpleType_t1257864485 * get_datatypeAnySimpleType_3() const { return ___datatypeAnySimpleType_3; } inline XsdAnySimpleType_t1257864485 ** get_address_of_datatypeAnySimpleType_3() { return &___datatypeAnySimpleType_3; } inline void set_datatypeAnySimpleType_3(XsdAnySimpleType_t1257864485 * value) { ___datatypeAnySimpleType_3 = value; Il2CppCodeGenWriteBarrier((&___datatypeAnySimpleType_3), value); } inline static int32_t get_offset_of_datatypeString_4() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeString_4)); } inline XsdString_t3049094358 * get_datatypeString_4() const { return ___datatypeString_4; } inline XsdString_t3049094358 ** get_address_of_datatypeString_4() { return &___datatypeString_4; } inline void set_datatypeString_4(XsdString_t3049094358 * value) { ___datatypeString_4 = value; Il2CppCodeGenWriteBarrier((&___datatypeString_4), value); } inline static int32_t get_offset_of_datatypeNormalizedString_5() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNormalizedString_5)); } inline XsdNormalizedString_t3260789355 * get_datatypeNormalizedString_5() const { return ___datatypeNormalizedString_5; } inline XsdNormalizedString_t3260789355 ** get_address_of_datatypeNormalizedString_5() { return &___datatypeNormalizedString_5; } inline void set_datatypeNormalizedString_5(XsdNormalizedString_t3260789355 * value) { ___datatypeNormalizedString_5 = value; Il2CppCodeGenWriteBarrier((&___datatypeNormalizedString_5), value); } inline static int32_t get_offset_of_datatypeToken_6() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeToken_6)); } inline XsdToken_t1239036978 * get_datatypeToken_6() const { return ___datatypeToken_6; } inline XsdToken_t1239036978 ** get_address_of_datatypeToken_6() { return &___datatypeToken_6; } inline void set_datatypeToken_6(XsdToken_t1239036978 * value) { ___datatypeToken_6 = value; Il2CppCodeGenWriteBarrier((&___datatypeToken_6), value); } inline static int32_t get_offset_of_datatypeLanguage_7() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeLanguage_7)); } inline XsdLanguage_t1876291273 * get_datatypeLanguage_7() const { return ___datatypeLanguage_7; } inline XsdLanguage_t1876291273 ** get_address_of_datatypeLanguage_7() { return &___datatypeLanguage_7; } inline void set_datatypeLanguage_7(XsdLanguage_t1876291273 * value) { ___datatypeLanguage_7 = value; Il2CppCodeGenWriteBarrier((&___datatypeLanguage_7), value); } inline static int32_t get_offset_of_datatypeNMToken_8() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNMToken_8)); } inline XsdNMToken_t834691671 * get_datatypeNMToken_8() const { return ___datatypeNMToken_8; } inline XsdNMToken_t834691671 ** get_address_of_datatypeNMToken_8() { return &___datatypeNMToken_8; } inline void set_datatypeNMToken_8(XsdNMToken_t834691671 * value) { ___datatypeNMToken_8 = value; Il2CppCodeGenWriteBarrier((&___datatypeNMToken_8), value); } inline static int32_t get_offset_of_datatypeNMTokens_9() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNMTokens_9)); } inline XsdNMTokens_t4246953255 * get_datatypeNMTokens_9() const { return ___datatypeNMTokens_9; } inline XsdNMTokens_t4246953255 ** get_address_of_datatypeNMTokens_9() { return &___datatypeNMTokens_9; } inline void set_datatypeNMTokens_9(XsdNMTokens_t4246953255 * value) { ___datatypeNMTokens_9 = value; Il2CppCodeGenWriteBarrier((&___datatypeNMTokens_9), value); } inline static int32_t get_offset_of_datatypeName_10() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeName_10)); } inline XsdName_t2755146808 * get_datatypeName_10() const { return ___datatypeName_10; } inline XsdName_t2755146808 ** get_address_of_datatypeName_10() { return &___datatypeName_10; } inline void set_datatypeName_10(XsdName_t2755146808 * value) { ___datatypeName_10 = value; Il2CppCodeGenWriteBarrier((&___datatypeName_10), value); } inline static int32_t get_offset_of_datatypeNCName_11() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNCName_11)); } inline XsdNCName_t3943159043 * get_datatypeNCName_11() const { return ___datatypeNCName_11; } inline XsdNCName_t3943159043 ** get_address_of_datatypeNCName_11() { return &___datatypeNCName_11; } inline void set_datatypeNCName_11(XsdNCName_t3943159043 * value) { ___datatypeNCName_11 = value; Il2CppCodeGenWriteBarrier((&___datatypeNCName_11), value); } inline static int32_t get_offset_of_datatypeID_12() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeID_12)); } inline XsdID_t34704195 * get_datatypeID_12() const { return ___datatypeID_12; } inline XsdID_t34704195 ** get_address_of_datatypeID_12() { return &___datatypeID_12; } inline void set_datatypeID_12(XsdID_t34704195 * value) { ___datatypeID_12 = value; Il2CppCodeGenWriteBarrier((&___datatypeID_12), value); } inline static int32_t get_offset_of_datatypeIDRef_13() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeIDRef_13)); } inline XsdIDRef_t2913612829 * get_datatypeIDRef_13() const { return ___datatypeIDRef_13; } inline XsdIDRef_t2913612829 ** get_address_of_datatypeIDRef_13() { return &___datatypeIDRef_13; } inline void set_datatypeIDRef_13(XsdIDRef_t2913612829 * value) { ___datatypeIDRef_13 = value; Il2CppCodeGenWriteBarrier((&___datatypeIDRef_13), value); } inline static int32_t get_offset_of_datatypeIDRefs_14() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeIDRefs_14)); } inline XsdIDRefs_t16099206 * get_datatypeIDRefs_14() const { return ___datatypeIDRefs_14; } inline XsdIDRefs_t16099206 ** get_address_of_datatypeIDRefs_14() { return &___datatypeIDRefs_14; } inline void set_datatypeIDRefs_14(XsdIDRefs_t16099206 * value) { ___datatypeIDRefs_14 = value; Il2CppCodeGenWriteBarrier((&___datatypeIDRefs_14), value); } inline static int32_t get_offset_of_datatypeEntity_15() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeEntity_15)); } inline XsdEntity_t3956505874 * get_datatypeEntity_15() const { return ___datatypeEntity_15; } inline XsdEntity_t3956505874 ** get_address_of_datatypeEntity_15() { return &___datatypeEntity_15; } inline void set_datatypeEntity_15(XsdEntity_t3956505874 * value) { ___datatypeEntity_15 = value; Il2CppCodeGenWriteBarrier((&___datatypeEntity_15), value); } inline static int32_t get_offset_of_datatypeEntities_16() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeEntities_16)); } inline XsdEntities_t1477210398 * get_datatypeEntities_16() const { return ___datatypeEntities_16; } inline XsdEntities_t1477210398 ** get_address_of_datatypeEntities_16() { return &___datatypeEntities_16; } inline void set_datatypeEntities_16(XsdEntities_t1477210398 * value) { ___datatypeEntities_16 = value; Il2CppCodeGenWriteBarrier((&___datatypeEntities_16), value); } inline static int32_t get_offset_of_datatypeNotation_17() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNotation_17)); } inline XsdNotation_t2827634056 * get_datatypeNotation_17() const { return ___datatypeNotation_17; } inline XsdNotation_t2827634056 ** get_address_of_datatypeNotation_17() { return &___datatypeNotation_17; } inline void set_datatypeNotation_17(XsdNotation_t2827634056 * value) { ___datatypeNotation_17 = value; Il2CppCodeGenWriteBarrier((&___datatypeNotation_17), value); } inline static int32_t get_offset_of_datatypeDecimal_18() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDecimal_18)); } inline XsdDecimal_t1288601093 * get_datatypeDecimal_18() const { return ___datatypeDecimal_18; } inline XsdDecimal_t1288601093 ** get_address_of_datatypeDecimal_18() { return &___datatypeDecimal_18; } inline void set_datatypeDecimal_18(XsdDecimal_t1288601093 * value) { ___datatypeDecimal_18 = value; Il2CppCodeGenWriteBarrier((&___datatypeDecimal_18), value); } inline static int32_t get_offset_of_datatypeInteger_19() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeInteger_19)); } inline XsdInteger_t2044766898 * get_datatypeInteger_19() const { return ___datatypeInteger_19; } inline XsdInteger_t2044766898 ** get_address_of_datatypeInteger_19() { return &___datatypeInteger_19; } inline void set_datatypeInteger_19(XsdInteger_t2044766898 * value) { ___datatypeInteger_19 = value; Il2CppCodeGenWriteBarrier((&___datatypeInteger_19), value); } inline static int32_t get_offset_of_datatypeLong_20() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeLong_20)); } inline XsdLong_t1324632828 * get_datatypeLong_20() const { return ___datatypeLong_20; } inline XsdLong_t1324632828 ** get_address_of_datatypeLong_20() { return &___datatypeLong_20; } inline void set_datatypeLong_20(XsdLong_t1324632828 * value) { ___datatypeLong_20 = value; Il2CppCodeGenWriteBarrier((&___datatypeLong_20), value); } inline static int32_t get_offset_of_datatypeInt_21() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeInt_21)); } inline XsdInt_t33917785 * get_datatypeInt_21() const { return ___datatypeInt_21; } inline XsdInt_t33917785 ** get_address_of_datatypeInt_21() { return &___datatypeInt_21; } inline void set_datatypeInt_21(XsdInt_t33917785 * value) { ___datatypeInt_21 = value; Il2CppCodeGenWriteBarrier((&___datatypeInt_21), value); } inline static int32_t get_offset_of_datatypeShort_22() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeShort_22)); } inline XsdShort_t3489811876 * get_datatypeShort_22() const { return ___datatypeShort_22; } inline XsdShort_t3489811876 ** get_address_of_datatypeShort_22() { return &___datatypeShort_22; } inline void set_datatypeShort_22(XsdShort_t3489811876 * value) { ___datatypeShort_22 = value; Il2CppCodeGenWriteBarrier((&___datatypeShort_22), value); } inline static int32_t get_offset_of_datatypeByte_23() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeByte_23)); } inline XsdByte_t2221093920 * get_datatypeByte_23() const { return ___datatypeByte_23; } inline XsdByte_t2221093920 ** get_address_of_datatypeByte_23() { return &___datatypeByte_23; } inline void set_datatypeByte_23(XsdByte_t2221093920 * value) { ___datatypeByte_23 = value; Il2CppCodeGenWriteBarrier((&___datatypeByte_23), value); } inline static int32_t get_offset_of_datatypeNonNegativeInteger_24() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNonNegativeInteger_24)); } inline XsdNonNegativeInteger_t308064234 * get_datatypeNonNegativeInteger_24() const { return ___datatypeNonNegativeInteger_24; } inline XsdNonNegativeInteger_t308064234 ** get_address_of_datatypeNonNegativeInteger_24() { return &___datatypeNonNegativeInteger_24; } inline void set_datatypeNonNegativeInteger_24(XsdNonNegativeInteger_t308064234 * value) { ___datatypeNonNegativeInteger_24 = value; Il2CppCodeGenWriteBarrier((&___datatypeNonNegativeInteger_24), value); } inline static int32_t get_offset_of_datatypePositiveInteger_25() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypePositiveInteger_25)); } inline XsdPositiveInteger_t1704031413 * get_datatypePositiveInteger_25() const { return ___datatypePositiveInteger_25; } inline XsdPositiveInteger_t1704031413 ** get_address_of_datatypePositiveInteger_25() { return &___datatypePositiveInteger_25; } inline void set_datatypePositiveInteger_25(XsdPositiveInteger_t1704031413 * value) { ___datatypePositiveInteger_25 = value; Il2CppCodeGenWriteBarrier((&___datatypePositiveInteger_25), value); } inline static int32_t get_offset_of_datatypeUnsignedLong_26() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeUnsignedLong_26)); } inline XsdUnsignedLong_t1409593434 * get_datatypeUnsignedLong_26() const { return ___datatypeUnsignedLong_26; } inline XsdUnsignedLong_t1409593434 ** get_address_of_datatypeUnsignedLong_26() { return &___datatypeUnsignedLong_26; } inline void set_datatypeUnsignedLong_26(XsdUnsignedLong_t1409593434 * value) { ___datatypeUnsignedLong_26 = value; Il2CppCodeGenWriteBarrier((&___datatypeUnsignedLong_26), value); } inline static int32_t get_offset_of_datatypeUnsignedInt_27() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeUnsignedInt_27)); } inline XsdUnsignedInt_t72105793 * get_datatypeUnsignedInt_27() const { return ___datatypeUnsignedInt_27; } inline XsdUnsignedInt_t72105793 ** get_address_of_datatypeUnsignedInt_27() { return &___datatypeUnsignedInt_27; } inline void set_datatypeUnsignedInt_27(XsdUnsignedInt_t72105793 * value) { ___datatypeUnsignedInt_27 = value; Il2CppCodeGenWriteBarrier((&___datatypeUnsignedInt_27), value); } inline static int32_t get_offset_of_datatypeUnsignedShort_28() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeUnsignedShort_28)); } inline XsdUnsignedShort_t3654069686 * get_datatypeUnsignedShort_28() const { return ___datatypeUnsignedShort_28; } inline XsdUnsignedShort_t3654069686 ** get_address_of_datatypeUnsignedShort_28() { return &___datatypeUnsignedShort_28; } inline void set_datatypeUnsignedShort_28(XsdUnsignedShort_t3654069686 * value) { ___datatypeUnsignedShort_28 = value; Il2CppCodeGenWriteBarrier((&___datatypeUnsignedShort_28), value); } inline static int32_t get_offset_of_datatypeUnsignedByte_29() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeUnsignedByte_29)); } inline XsdUnsignedByte_t2304219558 * get_datatypeUnsignedByte_29() const { return ___datatypeUnsignedByte_29; } inline XsdUnsignedByte_t2304219558 ** get_address_of_datatypeUnsignedByte_29() { return &___datatypeUnsignedByte_29; } inline void set_datatypeUnsignedByte_29(XsdUnsignedByte_t2304219558 * value) { ___datatypeUnsignedByte_29 = value; Il2CppCodeGenWriteBarrier((&___datatypeUnsignedByte_29), value); } inline static int32_t get_offset_of_datatypeNonPositiveInteger_30() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNonPositiveInteger_30)); } inline XsdNonPositiveInteger_t1029055398 * get_datatypeNonPositiveInteger_30() const { return ___datatypeNonPositiveInteger_30; } inline XsdNonPositiveInteger_t1029055398 ** get_address_of_datatypeNonPositiveInteger_30() { return &___datatypeNonPositiveInteger_30; } inline void set_datatypeNonPositiveInteger_30(XsdNonPositiveInteger_t1029055398 * value) { ___datatypeNonPositiveInteger_30 = value; Il2CppCodeGenWriteBarrier((&___datatypeNonPositiveInteger_30), value); } inline static int32_t get_offset_of_datatypeNegativeInteger_31() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeNegativeInteger_31)); } inline XsdNegativeInteger_t2178753546 * get_datatypeNegativeInteger_31() const { return ___datatypeNegativeInteger_31; } inline XsdNegativeInteger_t2178753546 ** get_address_of_datatypeNegativeInteger_31() { return &___datatypeNegativeInteger_31; } inline void set_datatypeNegativeInteger_31(XsdNegativeInteger_t2178753546 * value) { ___datatypeNegativeInteger_31 = value; Il2CppCodeGenWriteBarrier((&___datatypeNegativeInteger_31), value); } inline static int32_t get_offset_of_datatypeFloat_32() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeFloat_32)); } inline XsdFloat_t3181928905 * get_datatypeFloat_32() const { return ___datatypeFloat_32; } inline XsdFloat_t3181928905 ** get_address_of_datatypeFloat_32() { return &___datatypeFloat_32; } inline void set_datatypeFloat_32(XsdFloat_t3181928905 * value) { ___datatypeFloat_32 = value; Il2CppCodeGenWriteBarrier((&___datatypeFloat_32), value); } inline static int32_t get_offset_of_datatypeDouble_33() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDouble_33)); } inline XsdDouble_t3324344982 * get_datatypeDouble_33() const { return ___datatypeDouble_33; } inline XsdDouble_t3324344982 ** get_address_of_datatypeDouble_33() { return &___datatypeDouble_33; } inline void set_datatypeDouble_33(XsdDouble_t3324344982 * value) { ___datatypeDouble_33 = value; Il2CppCodeGenWriteBarrier((&___datatypeDouble_33), value); } inline static int32_t get_offset_of_datatypeBase64Binary_34() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeBase64Binary_34)); } inline XsdBase64Binary_t3360383190 * get_datatypeBase64Binary_34() const { return ___datatypeBase64Binary_34; } inline XsdBase64Binary_t3360383190 ** get_address_of_datatypeBase64Binary_34() { return &___datatypeBase64Binary_34; } inline void set_datatypeBase64Binary_34(XsdBase64Binary_t3360383190 * value) { ___datatypeBase64Binary_34 = value; Il2CppCodeGenWriteBarrier((&___datatypeBase64Binary_34), value); } inline static int32_t get_offset_of_datatypeBoolean_35() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeBoolean_35)); } inline XsdBoolean_t380164876 * get_datatypeBoolean_35() const { return ___datatypeBoolean_35; } inline XsdBoolean_t380164876 ** get_address_of_datatypeBoolean_35() { return &___datatypeBoolean_35; } inline void set_datatypeBoolean_35(XsdBoolean_t380164876 * value) { ___datatypeBoolean_35 = value; Il2CppCodeGenWriteBarrier((&___datatypeBoolean_35), value); } inline static int32_t get_offset_of_datatypeAnyURI_36() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeAnyURI_36)); } inline XsdAnyURI_t2755748070 * get_datatypeAnyURI_36() const { return ___datatypeAnyURI_36; } inline XsdAnyURI_t2755748070 ** get_address_of_datatypeAnyURI_36() { return &___datatypeAnyURI_36; } inline void set_datatypeAnyURI_36(XsdAnyURI_t2755748070 * value) { ___datatypeAnyURI_36 = value; Il2CppCodeGenWriteBarrier((&___datatypeAnyURI_36), value); } inline static int32_t get_offset_of_datatypeDuration_37() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDuration_37)); } inline XsdDuration_t1555973170 * get_datatypeDuration_37() const { return ___datatypeDuration_37; } inline XsdDuration_t1555973170 ** get_address_of_datatypeDuration_37() { return &___datatypeDuration_37; } inline void set_datatypeDuration_37(XsdDuration_t1555973170 * value) { ___datatypeDuration_37 = value; Il2CppCodeGenWriteBarrier((&___datatypeDuration_37), value); } inline static int32_t get_offset_of_datatypeDateTime_38() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDateTime_38)); } inline XsdDateTime_t2563698975 * get_datatypeDateTime_38() const { return ___datatypeDateTime_38; } inline XsdDateTime_t2563698975 ** get_address_of_datatypeDateTime_38() { return &___datatypeDateTime_38; } inline void set_datatypeDateTime_38(XsdDateTime_t2563698975 * value) { ___datatypeDateTime_38 = value; Il2CppCodeGenWriteBarrier((&___datatypeDateTime_38), value); } inline static int32_t get_offset_of_datatypeDate_39() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDate_39)); } inline XsdDate_t1417753656 * get_datatypeDate_39() const { return ___datatypeDate_39; } inline XsdDate_t1417753656 ** get_address_of_datatypeDate_39() { return &___datatypeDate_39; } inline void set_datatypeDate_39(XsdDate_t1417753656 * value) { ___datatypeDate_39 = value; Il2CppCodeGenWriteBarrier((&___datatypeDate_39), value); } inline static int32_t get_offset_of_datatypeTime_40() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeTime_40)); } inline XsdTime_t3558487088 * get_datatypeTime_40() const { return ___datatypeTime_40; } inline XsdTime_t3558487088 ** get_address_of_datatypeTime_40() { return &___datatypeTime_40; } inline void set_datatypeTime_40(XsdTime_t3558487088 * value) { ___datatypeTime_40 = value; Il2CppCodeGenWriteBarrier((&___datatypeTime_40), value); } inline static int32_t get_offset_of_datatypeHexBinary_41() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeHexBinary_41)); } inline XsdHexBinary_t882812470 * get_datatypeHexBinary_41() const { return ___datatypeHexBinary_41; } inline XsdHexBinary_t882812470 ** get_address_of_datatypeHexBinary_41() { return &___datatypeHexBinary_41; } inline void set_datatypeHexBinary_41(XsdHexBinary_t882812470 * value) { ___datatypeHexBinary_41 = value; Il2CppCodeGenWriteBarrier((&___datatypeHexBinary_41), value); } inline static int32_t get_offset_of_datatypeQName_42() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeQName_42)); } inline XsdQName_t2385631467 * get_datatypeQName_42() const { return ___datatypeQName_42; } inline XsdQName_t2385631467 ** get_address_of_datatypeQName_42() { return &___datatypeQName_42; } inline void set_datatypeQName_42(XsdQName_t2385631467 * value) { ___datatypeQName_42 = value; Il2CppCodeGenWriteBarrier((&___datatypeQName_42), value); } inline static int32_t get_offset_of_datatypeGYearMonth_43() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeGYearMonth_43)); } inline XsdGYearMonth_t3399073121 * get_datatypeGYearMonth_43() const { return ___datatypeGYearMonth_43; } inline XsdGYearMonth_t3399073121 ** get_address_of_datatypeGYearMonth_43() { return &___datatypeGYearMonth_43; } inline void set_datatypeGYearMonth_43(XsdGYearMonth_t3399073121 * value) { ___datatypeGYearMonth_43 = value; Il2CppCodeGenWriteBarrier((&___datatypeGYearMonth_43), value); } inline static int32_t get_offset_of_datatypeGMonthDay_44() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeGMonthDay_44)); } inline XsdGMonthDay_t2605134399 * get_datatypeGMonthDay_44() const { return ___datatypeGMonthDay_44; } inline XsdGMonthDay_t2605134399 ** get_address_of_datatypeGMonthDay_44() { return &___datatypeGMonthDay_44; } inline void set_datatypeGMonthDay_44(XsdGMonthDay_t2605134399 * value) { ___datatypeGMonthDay_44 = value; Il2CppCodeGenWriteBarrier((&___datatypeGMonthDay_44), value); } inline static int32_t get_offset_of_datatypeGYear_45() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeGYear_45)); } inline XsdGYear_t3316212116 * get_datatypeGYear_45() const { return ___datatypeGYear_45; } inline XsdGYear_t3316212116 ** get_address_of_datatypeGYear_45() { return &___datatypeGYear_45; } inline void set_datatypeGYear_45(XsdGYear_t3316212116 * value) { ___datatypeGYear_45 = value; Il2CppCodeGenWriteBarrier((&___datatypeGYear_45), value); } inline static int32_t get_offset_of_datatypeGMonth_46() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeGMonth_46)); } inline XsdGMonth_t3913018815 * get_datatypeGMonth_46() const { return ___datatypeGMonth_46; } inline XsdGMonth_t3913018815 ** get_address_of_datatypeGMonth_46() { return &___datatypeGMonth_46; } inline void set_datatypeGMonth_46(XsdGMonth_t3913018815 * value) { ___datatypeGMonth_46 = value; Il2CppCodeGenWriteBarrier((&___datatypeGMonth_46), value); } inline static int32_t get_offset_of_datatypeGDay_47() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeGDay_47)); } inline XsdGDay_t293490745 * get_datatypeGDay_47() const { return ___datatypeGDay_47; } inline XsdGDay_t293490745 ** get_address_of_datatypeGDay_47() { return &___datatypeGDay_47; } inline void set_datatypeGDay_47(XsdGDay_t293490745 * value) { ___datatypeGDay_47 = value; Il2CppCodeGenWriteBarrier((&___datatypeGDay_47), value); } inline static int32_t get_offset_of_datatypeAnyAtomicType_48() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeAnyAtomicType_48)); } inline XdtAnyAtomicType_t269366253 * get_datatypeAnyAtomicType_48() const { return ___datatypeAnyAtomicType_48; } inline XdtAnyAtomicType_t269366253 ** get_address_of_datatypeAnyAtomicType_48() { return &___datatypeAnyAtomicType_48; } inline void set_datatypeAnyAtomicType_48(XdtAnyAtomicType_t269366253 * value) { ___datatypeAnyAtomicType_48 = value; Il2CppCodeGenWriteBarrier((&___datatypeAnyAtomicType_48), value); } inline static int32_t get_offset_of_datatypeUntypedAtomic_49() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeUntypedAtomic_49)); } inline XdtUntypedAtomic_t1388131523 * get_datatypeUntypedAtomic_49() const { return ___datatypeUntypedAtomic_49; } inline XdtUntypedAtomic_t1388131523 ** get_address_of_datatypeUntypedAtomic_49() { return &___datatypeUntypedAtomic_49; } inline void set_datatypeUntypedAtomic_49(XdtUntypedAtomic_t1388131523 * value) { ___datatypeUntypedAtomic_49 = value; Il2CppCodeGenWriteBarrier((&___datatypeUntypedAtomic_49), value); } inline static int32_t get_offset_of_datatypeDayTimeDuration_50() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeDayTimeDuration_50)); } inline XdtDayTimeDuration_t268779858 * get_datatypeDayTimeDuration_50() const { return ___datatypeDayTimeDuration_50; } inline XdtDayTimeDuration_t268779858 ** get_address_of_datatypeDayTimeDuration_50() { return &___datatypeDayTimeDuration_50; } inline void set_datatypeDayTimeDuration_50(XdtDayTimeDuration_t268779858 * value) { ___datatypeDayTimeDuration_50 = value; Il2CppCodeGenWriteBarrier((&___datatypeDayTimeDuration_50), value); } inline static int32_t get_offset_of_datatypeYearMonthDuration_51() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___datatypeYearMonthDuration_51)); } inline XdtYearMonthDuration_t1503718519 * get_datatypeYearMonthDuration_51() const { return ___datatypeYearMonthDuration_51; } inline XdtYearMonthDuration_t1503718519 ** get_address_of_datatypeYearMonthDuration_51() { return &___datatypeYearMonthDuration_51; } inline void set_datatypeYearMonthDuration_51(XdtYearMonthDuration_t1503718519 * value) { ___datatypeYearMonthDuration_51 = value; Il2CppCodeGenWriteBarrier((&___datatypeYearMonthDuration_51), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map3E_52() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___U3CU3Ef__switchU24map3E_52)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map3E_52() const { return ___U3CU3Ef__switchU24map3E_52; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map3E_52() { return &___U3CU3Ef__switchU24map3E_52; } inline void set_U3CU3Ef__switchU24map3E_52(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map3E_52 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map3E_52), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map3F_53() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___U3CU3Ef__switchU24map3F_53)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map3F_53() const { return ___U3CU3Ef__switchU24map3F_53; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map3F_53() { return &___U3CU3Ef__switchU24map3F_53; } inline void set_U3CU3Ef__switchU24map3F_53(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map3F_53 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map3F_53), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map40_54() { return static_cast<int32_t>(offsetof(XmlSchemaDatatype_t322714710_StaticFields, ___U3CU3Ef__switchU24map40_54)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map40_54() const { return ___U3CU3Ef__switchU24map40_54; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map40_54() { return &___U3CU3Ef__switchU24map40_54; } inline void set_U3CU3Ef__switchU24map40_54(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map40_54 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map40_54), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMADATATYPE_T322714710_H #ifndef OVERFLOWEXCEPTION_T2020128637_H #define OVERFLOWEXCEPTION_T2020128637_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.OverflowException struct OverflowException_t2020128637 : public ArithmeticException_t4283546778 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // OVERFLOWEXCEPTION_T2020128637_H #ifndef XMLSCHEMAANNOTATED_T2603549639_H #define XMLSCHEMAANNOTATED_T2603549639_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAnnotated struct XmlSchemaAnnotated_t2603549639 : public XmlSchemaObject_t1315720168 { public: // System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotated::annotation XmlSchemaAnnotation_t2553753397 * ___annotation_13; // System.String System.Xml.Schema.XmlSchemaAnnotated::id String_t* ___id_14; // System.Xml.XmlAttribute[] System.Xml.Schema.XmlSchemaAnnotated::unhandledAttributes XmlAttributeU5BU5D_t1490365106* ___unhandledAttributes_15; public: inline static int32_t get_offset_of_annotation_13() { return static_cast<int32_t>(offsetof(XmlSchemaAnnotated_t2603549639, ___annotation_13)); } inline XmlSchemaAnnotation_t2553753397 * get_annotation_13() const { return ___annotation_13; } inline XmlSchemaAnnotation_t2553753397 ** get_address_of_annotation_13() { return &___annotation_13; } inline void set_annotation_13(XmlSchemaAnnotation_t2553753397 * value) { ___annotation_13 = value; Il2CppCodeGenWriteBarrier((&___annotation_13), value); } inline static int32_t get_offset_of_id_14() { return static_cast<int32_t>(offsetof(XmlSchemaAnnotated_t2603549639, ___id_14)); } inline String_t* get_id_14() const { return ___id_14; } inline String_t** get_address_of_id_14() { return &___id_14; } inline void set_id_14(String_t* value) { ___id_14 = value; Il2CppCodeGenWriteBarrier((&___id_14), value); } inline static int32_t get_offset_of_unhandledAttributes_15() { return static_cast<int32_t>(offsetof(XmlSchemaAnnotated_t2603549639, ___unhandledAttributes_15)); } inline XmlAttributeU5BU5D_t1490365106* get_unhandledAttributes_15() const { return ___unhandledAttributes_15; } inline XmlAttributeU5BU5D_t1490365106** get_address_of_unhandledAttributes_15() { return &___unhandledAttributes_15; } inline void set_unhandledAttributes_15(XmlAttributeU5BU5D_t1490365106* value) { ___unhandledAttributes_15 = value; Il2CppCodeGenWriteBarrier((&___unhandledAttributes_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAANNOTATED_T2603549639_H #ifndef XMLSCHEMAEXTERNAL_T3074890143_H #define XMLSCHEMAEXTERNAL_T3074890143_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaExternal struct XmlSchemaExternal_t3074890143 : public XmlSchemaObject_t1315720168 { public: // System.String System.Xml.Schema.XmlSchemaExternal::id String_t* ___id_13; // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaExternal::schema XmlSchema_t3742557897 * ___schema_14; // System.String System.Xml.Schema.XmlSchemaExternal::location String_t* ___location_15; public: inline static int32_t get_offset_of_id_13() { return static_cast<int32_t>(offsetof(XmlSchemaExternal_t3074890143, ___id_13)); } inline String_t* get_id_13() const { return ___id_13; } inline String_t** get_address_of_id_13() { return &___id_13; } inline void set_id_13(String_t* value) { ___id_13 = value; Il2CppCodeGenWriteBarrier((&___id_13), value); } inline static int32_t get_offset_of_schema_14() { return static_cast<int32_t>(offsetof(XmlSchemaExternal_t3074890143, ___schema_14)); } inline XmlSchema_t3742557897 * get_schema_14() const { return ___schema_14; } inline XmlSchema_t3742557897 ** get_address_of_schema_14() { return &___schema_14; } inline void set_schema_14(XmlSchema_t3742557897 * value) { ___schema_14 = value; Il2CppCodeGenWriteBarrier((&___schema_14), value); } inline static int32_t get_offset_of_location_15() { return static_cast<int32_t>(offsetof(XmlSchemaExternal_t3074890143, ___location_15)); } inline String_t* get_location_15() const { return ___location_15; } inline String_t** get_address_of_location_15() { return &___location_15; } inline void set_location_15(String_t* value) { ___location_15 = value; Il2CppCodeGenWriteBarrier((&___location_15), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAEXTERNAL_T3074890143_H #ifndef TYPE_T_H #define TYPE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_t3027515415 ____impl_1; public: inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); } inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; } inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; } inline void set__impl_1(RuntimeTypeHandle_t3027515415 value) { ____impl_1 = value; } }; struct Type_t_StaticFields { public: // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_2; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t3940880105* ___EmptyTypes_3; // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t426314064 * ___FilterAttribute_4; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t426314064 * ___FilterName_5; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t426314064 * ___FilterNameIgnoreCase_6; // System.Object System.Type::Missing RuntimeObject * ___Missing_7; public: inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); } inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; } inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; } inline void set_Delimiter_2(Il2CppChar value) { ___Delimiter_2 = value; } inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); } inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; } inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; } inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value) { ___EmptyTypes_3 = value; Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value); } inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); } inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; } inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; } inline void set_FilterAttribute_4(MemberFilter_t426314064 * value) { ___FilterAttribute_4 = value; Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value); } inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); } inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; } inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; } inline void set_FilterName_5(MemberFilter_t426314064 * value) { ___FilterName_5 = value; Il2CppCodeGenWriteBarrier((&___FilterName_5), value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); } inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; } inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; } inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value) { ___FilterNameIgnoreCase_6 = value; Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value); } inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); } inline RuntimeObject * get_Missing_7() const { return ___Missing_7; } inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; } inline void set_Missing_7(RuntimeObject * value) { ___Missing_7 = value; Il2CppCodeGenWriteBarrier((&___Missing_7), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TYPE_T_H #ifndef XMLSCHEMA_T3742557897_H #define XMLSCHEMA_T3742557897_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchema struct XmlSchema_t3742557897 : public XmlSchemaObject_t1315720168 { public: // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::attributeFormDefault int32_t ___attributeFormDefault_13; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributeGroups XmlSchemaObjectTable_t2546974348 * ___attributeGroups_14; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::attributes XmlSchemaObjectTable_t2546974348 * ___attributes_15; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::blockDefault int32_t ___blockDefault_16; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchema::elementFormDefault int32_t ___elementFormDefault_17; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::elements XmlSchemaObjectTable_t2546974348 * ___elements_18; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::finalDefault int32_t ___finalDefault_19; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::groups XmlSchemaObjectTable_t2546974348 * ___groups_20; // System.String System.Xml.Schema.XmlSchema::id String_t* ___id_21; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::includes XmlSchemaObjectCollection_t1064819932 * ___includes_22; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::items XmlSchemaObjectCollection_t1064819932 * ___items_23; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::notations XmlSchemaObjectTable_t2546974348 * ___notations_24; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::schemaTypes XmlSchemaObjectTable_t2546974348 * ___schemaTypes_25; // System.String System.Xml.Schema.XmlSchema::targetNamespace String_t* ___targetNamespace_26; // System.String System.Xml.Schema.XmlSchema::version String_t* ___version_27; // System.Xml.Schema.XmlSchemaSet System.Xml.Schema.XmlSchema::schemas XmlSchemaSet_t266093086 * ___schemas_28; // System.Xml.XmlNameTable System.Xml.Schema.XmlSchema::nameTable XmlNameTable_t71772148 * ___nameTable_29; // System.Boolean System.Xml.Schema.XmlSchema::missedSubComponents bool ___missedSubComponents_30; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchema::compilationItems XmlSchemaObjectCollection_t1064819932 * ___compilationItems_31; public: inline static int32_t get_offset_of_attributeFormDefault_13() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___attributeFormDefault_13)); } inline int32_t get_attributeFormDefault_13() const { return ___attributeFormDefault_13; } inline int32_t* get_address_of_attributeFormDefault_13() { return &___attributeFormDefault_13; } inline void set_attributeFormDefault_13(int32_t value) { ___attributeFormDefault_13 = value; } inline static int32_t get_offset_of_attributeGroups_14() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___attributeGroups_14)); } inline XmlSchemaObjectTable_t2546974348 * get_attributeGroups_14() const { return ___attributeGroups_14; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributeGroups_14() { return &___attributeGroups_14; } inline void set_attributeGroups_14(XmlSchemaObjectTable_t2546974348 * value) { ___attributeGroups_14 = value; Il2CppCodeGenWriteBarrier((&___attributeGroups_14), value); } inline static int32_t get_offset_of_attributes_15() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___attributes_15)); } inline XmlSchemaObjectTable_t2546974348 * get_attributes_15() const { return ___attributes_15; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributes_15() { return &___attributes_15; } inline void set_attributes_15(XmlSchemaObjectTable_t2546974348 * value) { ___attributes_15 = value; Il2CppCodeGenWriteBarrier((&___attributes_15), value); } inline static int32_t get_offset_of_blockDefault_16() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___blockDefault_16)); } inline int32_t get_blockDefault_16() const { return ___blockDefault_16; } inline int32_t* get_address_of_blockDefault_16() { return &___blockDefault_16; } inline void set_blockDefault_16(int32_t value) { ___blockDefault_16 = value; } inline static int32_t get_offset_of_elementFormDefault_17() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___elementFormDefault_17)); } inline int32_t get_elementFormDefault_17() const { return ___elementFormDefault_17; } inline int32_t* get_address_of_elementFormDefault_17() { return &___elementFormDefault_17; } inline void set_elementFormDefault_17(int32_t value) { ___elementFormDefault_17 = value; } inline static int32_t get_offset_of_elements_18() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___elements_18)); } inline XmlSchemaObjectTable_t2546974348 * get_elements_18() const { return ___elements_18; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_elements_18() { return &___elements_18; } inline void set_elements_18(XmlSchemaObjectTable_t2546974348 * value) { ___elements_18 = value; Il2CppCodeGenWriteBarrier((&___elements_18), value); } inline static int32_t get_offset_of_finalDefault_19() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___finalDefault_19)); } inline int32_t get_finalDefault_19() const { return ___finalDefault_19; } inline int32_t* get_address_of_finalDefault_19() { return &___finalDefault_19; } inline void set_finalDefault_19(int32_t value) { ___finalDefault_19 = value; } inline static int32_t get_offset_of_groups_20() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___groups_20)); } inline XmlSchemaObjectTable_t2546974348 * get_groups_20() const { return ___groups_20; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_groups_20() { return &___groups_20; } inline void set_groups_20(XmlSchemaObjectTable_t2546974348 * value) { ___groups_20 = value; Il2CppCodeGenWriteBarrier((&___groups_20), value); } inline static int32_t get_offset_of_id_21() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___id_21)); } inline String_t* get_id_21() const { return ___id_21; } inline String_t** get_address_of_id_21() { return &___id_21; } inline void set_id_21(String_t* value) { ___id_21 = value; Il2CppCodeGenWriteBarrier((&___id_21), value); } inline static int32_t get_offset_of_includes_22() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___includes_22)); } inline XmlSchemaObjectCollection_t1064819932 * get_includes_22() const { return ___includes_22; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_includes_22() { return &___includes_22; } inline void set_includes_22(XmlSchemaObjectCollection_t1064819932 * value) { ___includes_22 = value; Il2CppCodeGenWriteBarrier((&___includes_22), value); } inline static int32_t get_offset_of_items_23() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___items_23)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_23() const { return ___items_23; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_23() { return &___items_23; } inline void set_items_23(XmlSchemaObjectCollection_t1064819932 * value) { ___items_23 = value; Il2CppCodeGenWriteBarrier((&___items_23), value); } inline static int32_t get_offset_of_notations_24() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___notations_24)); } inline XmlSchemaObjectTable_t2546974348 * get_notations_24() const { return ___notations_24; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_notations_24() { return &___notations_24; } inline void set_notations_24(XmlSchemaObjectTable_t2546974348 * value) { ___notations_24 = value; Il2CppCodeGenWriteBarrier((&___notations_24), value); } inline static int32_t get_offset_of_schemaTypes_25() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___schemaTypes_25)); } inline XmlSchemaObjectTable_t2546974348 * get_schemaTypes_25() const { return ___schemaTypes_25; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_schemaTypes_25() { return &___schemaTypes_25; } inline void set_schemaTypes_25(XmlSchemaObjectTable_t2546974348 * value) { ___schemaTypes_25 = value; Il2CppCodeGenWriteBarrier((&___schemaTypes_25), value); } inline static int32_t get_offset_of_targetNamespace_26() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___targetNamespace_26)); } inline String_t* get_targetNamespace_26() const { return ___targetNamespace_26; } inline String_t** get_address_of_targetNamespace_26() { return &___targetNamespace_26; } inline void set_targetNamespace_26(String_t* value) { ___targetNamespace_26 = value; Il2CppCodeGenWriteBarrier((&___targetNamespace_26), value); } inline static int32_t get_offset_of_version_27() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___version_27)); } inline String_t* get_version_27() const { return ___version_27; } inline String_t** get_address_of_version_27() { return &___version_27; } inline void set_version_27(String_t* value) { ___version_27 = value; Il2CppCodeGenWriteBarrier((&___version_27), value); } inline static int32_t get_offset_of_schemas_28() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___schemas_28)); } inline XmlSchemaSet_t266093086 * get_schemas_28() const { return ___schemas_28; } inline XmlSchemaSet_t266093086 ** get_address_of_schemas_28() { return &___schemas_28; } inline void set_schemas_28(XmlSchemaSet_t266093086 * value) { ___schemas_28 = value; Il2CppCodeGenWriteBarrier((&___schemas_28), value); } inline static int32_t get_offset_of_nameTable_29() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___nameTable_29)); } inline XmlNameTable_t71772148 * get_nameTable_29() const { return ___nameTable_29; } inline XmlNameTable_t71772148 ** get_address_of_nameTable_29() { return &___nameTable_29; } inline void set_nameTable_29(XmlNameTable_t71772148 * value) { ___nameTable_29 = value; Il2CppCodeGenWriteBarrier((&___nameTable_29), value); } inline static int32_t get_offset_of_missedSubComponents_30() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___missedSubComponents_30)); } inline bool get_missedSubComponents_30() const { return ___missedSubComponents_30; } inline bool* get_address_of_missedSubComponents_30() { return &___missedSubComponents_30; } inline void set_missedSubComponents_30(bool value) { ___missedSubComponents_30 = value; } inline static int32_t get_offset_of_compilationItems_31() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897, ___compilationItems_31)); } inline XmlSchemaObjectCollection_t1064819932 * get_compilationItems_31() const { return ___compilationItems_31; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_compilationItems_31() { return &___compilationItems_31; } inline void set_compilationItems_31(XmlSchemaObjectCollection_t1064819932 * value) { ___compilationItems_31 = value; Il2CppCodeGenWriteBarrier((&___compilationItems_31), value); } }; struct XmlSchema_t3742557897_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchema::<>f__switch$map41 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map41_32; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24map41_32() { return static_cast<int32_t>(offsetof(XmlSchema_t3742557897_StaticFields, ___U3CU3Ef__switchU24map41_32)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map41_32() const { return ___U3CU3Ef__switchU24map41_32; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map41_32() { return &___U3CU3Ef__switchU24map41_32; } inline void set_U3CU3Ef__switchU24map41_32(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map41_32 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map41_32), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMA_T3742557897_H #ifndef ARGUMENTNULLEXCEPTION_T1615371798_H #define ARGUMENTNULLEXCEPTION_T1615371798_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentNullException struct ArgumentNullException_t1615371798 : public ArgumentException_t132251570 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTNULLEXCEPTION_T1615371798_H #ifndef XMLTEXT_T2682211705_H #define XMLTEXT_T2682211705_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.XmlText struct XmlText_t2682211705 : public XmlCharacterData_t1167807131 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLTEXT_T2682211705_H #ifndef XMLSCHEMAPARTICLE_T3828501457_H #define XMLSCHEMAPARTICLE_T3828501457_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaParticle struct XmlSchemaParticle_t3828501457 : public XmlSchemaAnnotated_t2603549639 { public: // System.Decimal System.Xml.Schema.XmlSchemaParticle::minOccurs Decimal_t2948259380 ___minOccurs_16; // System.Decimal System.Xml.Schema.XmlSchemaParticle::maxOccurs Decimal_t2948259380 ___maxOccurs_17; // System.String System.Xml.Schema.XmlSchemaParticle::minstr String_t* ___minstr_18; // System.String System.Xml.Schema.XmlSchemaParticle::maxstr String_t* ___maxstr_19; // System.Decimal System.Xml.Schema.XmlSchemaParticle::validatedMinOccurs Decimal_t2948259380 ___validatedMinOccurs_21; // System.Decimal System.Xml.Schema.XmlSchemaParticle::validatedMaxOccurs Decimal_t2948259380 ___validatedMaxOccurs_22; // System.Int32 System.Xml.Schema.XmlSchemaParticle::recursionDepth int32_t ___recursionDepth_23; // System.Decimal System.Xml.Schema.XmlSchemaParticle::minEffectiveTotalRange Decimal_t2948259380 ___minEffectiveTotalRange_24; // System.Boolean System.Xml.Schema.XmlSchemaParticle::parentIsGroupDefinition bool ___parentIsGroupDefinition_25; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::OptimizedParticle XmlSchemaParticle_t3828501457 * ___OptimizedParticle_26; public: inline static int32_t get_offset_of_minOccurs_16() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___minOccurs_16)); } inline Decimal_t2948259380 get_minOccurs_16() const { return ___minOccurs_16; } inline Decimal_t2948259380 * get_address_of_minOccurs_16() { return &___minOccurs_16; } inline void set_minOccurs_16(Decimal_t2948259380 value) { ___minOccurs_16 = value; } inline static int32_t get_offset_of_maxOccurs_17() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___maxOccurs_17)); } inline Decimal_t2948259380 get_maxOccurs_17() const { return ___maxOccurs_17; } inline Decimal_t2948259380 * get_address_of_maxOccurs_17() { return &___maxOccurs_17; } inline void set_maxOccurs_17(Decimal_t2948259380 value) { ___maxOccurs_17 = value; } inline static int32_t get_offset_of_minstr_18() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___minstr_18)); } inline String_t* get_minstr_18() const { return ___minstr_18; } inline String_t** get_address_of_minstr_18() { return &___minstr_18; } inline void set_minstr_18(String_t* value) { ___minstr_18 = value; Il2CppCodeGenWriteBarrier((&___minstr_18), value); } inline static int32_t get_offset_of_maxstr_19() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___maxstr_19)); } inline String_t* get_maxstr_19() const { return ___maxstr_19; } inline String_t** get_address_of_maxstr_19() { return &___maxstr_19; } inline void set_maxstr_19(String_t* value) { ___maxstr_19 = value; Il2CppCodeGenWriteBarrier((&___maxstr_19), value); } inline static int32_t get_offset_of_validatedMinOccurs_21() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___validatedMinOccurs_21)); } inline Decimal_t2948259380 get_validatedMinOccurs_21() const { return ___validatedMinOccurs_21; } inline Decimal_t2948259380 * get_address_of_validatedMinOccurs_21() { return &___validatedMinOccurs_21; } inline void set_validatedMinOccurs_21(Decimal_t2948259380 value) { ___validatedMinOccurs_21 = value; } inline static int32_t get_offset_of_validatedMaxOccurs_22() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___validatedMaxOccurs_22)); } inline Decimal_t2948259380 get_validatedMaxOccurs_22() const { return ___validatedMaxOccurs_22; } inline Decimal_t2948259380 * get_address_of_validatedMaxOccurs_22() { return &___validatedMaxOccurs_22; } inline void set_validatedMaxOccurs_22(Decimal_t2948259380 value) { ___validatedMaxOccurs_22 = value; } inline static int32_t get_offset_of_recursionDepth_23() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___recursionDepth_23)); } inline int32_t get_recursionDepth_23() const { return ___recursionDepth_23; } inline int32_t* get_address_of_recursionDepth_23() { return &___recursionDepth_23; } inline void set_recursionDepth_23(int32_t value) { ___recursionDepth_23 = value; } inline static int32_t get_offset_of_minEffectiveTotalRange_24() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___minEffectiveTotalRange_24)); } inline Decimal_t2948259380 get_minEffectiveTotalRange_24() const { return ___minEffectiveTotalRange_24; } inline Decimal_t2948259380 * get_address_of_minEffectiveTotalRange_24() { return &___minEffectiveTotalRange_24; } inline void set_minEffectiveTotalRange_24(Decimal_t2948259380 value) { ___minEffectiveTotalRange_24 = value; } inline static int32_t get_offset_of_parentIsGroupDefinition_25() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___parentIsGroupDefinition_25)); } inline bool get_parentIsGroupDefinition_25() const { return ___parentIsGroupDefinition_25; } inline bool* get_address_of_parentIsGroupDefinition_25() { return &___parentIsGroupDefinition_25; } inline void set_parentIsGroupDefinition_25(bool value) { ___parentIsGroupDefinition_25 = value; } inline static int32_t get_offset_of_OptimizedParticle_26() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457, ___OptimizedParticle_26)); } inline XmlSchemaParticle_t3828501457 * get_OptimizedParticle_26() const { return ___OptimizedParticle_26; } inline XmlSchemaParticle_t3828501457 ** get_address_of_OptimizedParticle_26() { return &___OptimizedParticle_26; } inline void set_OptimizedParticle_26(XmlSchemaParticle_t3828501457 * value) { ___OptimizedParticle_26 = value; Il2CppCodeGenWriteBarrier((&___OptimizedParticle_26), value); } }; struct XmlSchemaParticle_t3828501457_StaticFields { public: // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::empty XmlSchemaParticle_t3828501457 * ___empty_20; public: inline static int32_t get_offset_of_empty_20() { return static_cast<int32_t>(offsetof(XmlSchemaParticle_t3828501457_StaticFields, ___empty_20)); } inline XmlSchemaParticle_t3828501457 * get_empty_20() const { return ___empty_20; } inline XmlSchemaParticle_t3828501457 ** get_address_of_empty_20() { return &___empty_20; } inline void set_empty_20(XmlSchemaParticle_t3828501457 * value) { ___empty_20 = value; Il2CppCodeGenWriteBarrier((&___empty_20), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAPARTICLE_T3828501457_H #ifndef XMLSCHEMAANYATTRIBUTE_T963227996_H #define XMLSCHEMAANYATTRIBUTE_T963227996_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAnyAttribute struct XmlSchemaAnyAttribute_t963227996 : public XmlSchemaAnnotated_t2603549639 { public: // System.String System.Xml.Schema.XmlSchemaAnyAttribute::nameSpace String_t* ___nameSpace_16; // System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaAnyAttribute::processing int32_t ___processing_17; // Mono.Xml.Schema.XsdWildcard System.Xml.Schema.XmlSchemaAnyAttribute::wildcard XsdWildcard_t2790389089 * ___wildcard_18; public: inline static int32_t get_offset_of_nameSpace_16() { return static_cast<int32_t>(offsetof(XmlSchemaAnyAttribute_t963227996, ___nameSpace_16)); } inline String_t* get_nameSpace_16() const { return ___nameSpace_16; } inline String_t** get_address_of_nameSpace_16() { return &___nameSpace_16; } inline void set_nameSpace_16(String_t* value) { ___nameSpace_16 = value; Il2CppCodeGenWriteBarrier((&___nameSpace_16), value); } inline static int32_t get_offset_of_processing_17() { return static_cast<int32_t>(offsetof(XmlSchemaAnyAttribute_t963227996, ___processing_17)); } inline int32_t get_processing_17() const { return ___processing_17; } inline int32_t* get_address_of_processing_17() { return &___processing_17; } inline void set_processing_17(int32_t value) { ___processing_17 = value; } inline static int32_t get_offset_of_wildcard_18() { return static_cast<int32_t>(offsetof(XmlSchemaAnyAttribute_t963227996, ___wildcard_18)); } inline XsdWildcard_t2790389089 * get_wildcard_18() const { return ___wildcard_18; } inline XsdWildcard_t2790389089 ** get_address_of_wildcard_18() { return &___wildcard_18; } inline void set_wildcard_18(XsdWildcard_t2790389089 * value) { ___wildcard_18 = value; Il2CppCodeGenWriteBarrier((&___wildcard_18), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAANYATTRIBUTE_T963227996_H #ifndef XMLSCHEMATYPE_T2033747345_H #define XMLSCHEMATYPE_T2033747345_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaType struct XmlSchemaType_t2033747345 : public XmlSchemaAnnotated_t2603549639 { public: // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::final int32_t ___final_16; // System.Boolean System.Xml.Schema.XmlSchemaType::isMixed bool ___isMixed_17; // System.String System.Xml.Schema.XmlSchemaType::name String_t* ___name_18; // System.Boolean System.Xml.Schema.XmlSchemaType::recursed bool ___recursed_19; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::BaseSchemaTypeName XmlQualifiedName_t2760654312 * ___BaseSchemaTypeName_20; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::BaseXmlSchemaTypeInternal XmlSchemaType_t2033747345 * ___BaseXmlSchemaTypeInternal_21; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::DatatypeInternal XmlSchemaDatatype_t322714710 * ___DatatypeInternal_22; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::resolvedDerivedBy int32_t ___resolvedDerivedBy_23; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::finalResolved int32_t ___finalResolved_24; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::QNameInternal XmlQualifiedName_t2760654312 * ___QNameInternal_25; public: inline static int32_t get_offset_of_final_16() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___final_16)); } inline int32_t get_final_16() const { return ___final_16; } inline int32_t* get_address_of_final_16() { return &___final_16; } inline void set_final_16(int32_t value) { ___final_16 = value; } inline static int32_t get_offset_of_isMixed_17() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___isMixed_17)); } inline bool get_isMixed_17() const { return ___isMixed_17; } inline bool* get_address_of_isMixed_17() { return &___isMixed_17; } inline void set_isMixed_17(bool value) { ___isMixed_17 = value; } inline static int32_t get_offset_of_name_18() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___name_18)); } inline String_t* get_name_18() const { return ___name_18; } inline String_t** get_address_of_name_18() { return &___name_18; } inline void set_name_18(String_t* value) { ___name_18 = value; Il2CppCodeGenWriteBarrier((&___name_18), value); } inline static int32_t get_offset_of_recursed_19() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___recursed_19)); } inline bool get_recursed_19() const { return ___recursed_19; } inline bool* get_address_of_recursed_19() { return &___recursed_19; } inline void set_recursed_19(bool value) { ___recursed_19 = value; } inline static int32_t get_offset_of_BaseSchemaTypeName_20() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___BaseSchemaTypeName_20)); } inline XmlQualifiedName_t2760654312 * get_BaseSchemaTypeName_20() const { return ___BaseSchemaTypeName_20; } inline XmlQualifiedName_t2760654312 ** get_address_of_BaseSchemaTypeName_20() { return &___BaseSchemaTypeName_20; } inline void set_BaseSchemaTypeName_20(XmlQualifiedName_t2760654312 * value) { ___BaseSchemaTypeName_20 = value; Il2CppCodeGenWriteBarrier((&___BaseSchemaTypeName_20), value); } inline static int32_t get_offset_of_BaseXmlSchemaTypeInternal_21() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___BaseXmlSchemaTypeInternal_21)); } inline XmlSchemaType_t2033747345 * get_BaseXmlSchemaTypeInternal_21() const { return ___BaseXmlSchemaTypeInternal_21; } inline XmlSchemaType_t2033747345 ** get_address_of_BaseXmlSchemaTypeInternal_21() { return &___BaseXmlSchemaTypeInternal_21; } inline void set_BaseXmlSchemaTypeInternal_21(XmlSchemaType_t2033747345 * value) { ___BaseXmlSchemaTypeInternal_21 = value; Il2CppCodeGenWriteBarrier((&___BaseXmlSchemaTypeInternal_21), value); } inline static int32_t get_offset_of_DatatypeInternal_22() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___DatatypeInternal_22)); } inline XmlSchemaDatatype_t322714710 * get_DatatypeInternal_22() const { return ___DatatypeInternal_22; } inline XmlSchemaDatatype_t322714710 ** get_address_of_DatatypeInternal_22() { return &___DatatypeInternal_22; } inline void set_DatatypeInternal_22(XmlSchemaDatatype_t322714710 * value) { ___DatatypeInternal_22 = value; Il2CppCodeGenWriteBarrier((&___DatatypeInternal_22), value); } inline static int32_t get_offset_of_resolvedDerivedBy_23() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___resolvedDerivedBy_23)); } inline int32_t get_resolvedDerivedBy_23() const { return ___resolvedDerivedBy_23; } inline int32_t* get_address_of_resolvedDerivedBy_23() { return &___resolvedDerivedBy_23; } inline void set_resolvedDerivedBy_23(int32_t value) { ___resolvedDerivedBy_23 = value; } inline static int32_t get_offset_of_finalResolved_24() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___finalResolved_24)); } inline int32_t get_finalResolved_24() const { return ___finalResolved_24; } inline int32_t* get_address_of_finalResolved_24() { return &___finalResolved_24; } inline void set_finalResolved_24(int32_t value) { ___finalResolved_24 = value; } inline static int32_t get_offset_of_QNameInternal_25() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345, ___QNameInternal_25)); } inline XmlQualifiedName_t2760654312 * get_QNameInternal_25() const { return ___QNameInternal_25; } inline XmlQualifiedName_t2760654312 ** get_address_of_QNameInternal_25() { return &___QNameInternal_25; } inline void set_QNameInternal_25(XmlQualifiedName_t2760654312 * value) { ___QNameInternal_25 = value; Il2CppCodeGenWriteBarrier((&___QNameInternal_25), value); } }; struct XmlSchemaType_t2033747345_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaType::<>f__switch$map42 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map42_26; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaType::<>f__switch$map43 Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map43_27; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24map42_26() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345_StaticFields, ___U3CU3Ef__switchU24map42_26)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map42_26() const { return ___U3CU3Ef__switchU24map42_26; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map42_26() { return &___U3CU3Ef__switchU24map42_26; } inline void set_U3CU3Ef__switchU24map42_26(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map42_26 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map42_26), value); } inline static int32_t get_offset_of_U3CU3Ef__switchU24map43_27() { return static_cast<int32_t>(offsetof(XmlSchemaType_t2033747345_StaticFields, ___U3CU3Ef__switchU24map43_27)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map43_27() const { return ___U3CU3Ef__switchU24map43_27; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map43_27() { return &___U3CU3Ef__switchU24map43_27; } inline void set_U3CU3Ef__switchU24map43_27(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map43_27 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map43_27), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMATYPE_T2033747345_H #ifndef XMLSCHEMAATTRIBUTE_T2797257020_H #define XMLSCHEMAATTRIBUTE_T2797257020_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAttribute struct XmlSchemaAttribute_t2797257020 : public XmlSchemaAnnotated_t2603549639 { public: // System.Object System.Xml.Schema.XmlSchemaAttribute::attributeType RuntimeObject * ___attributeType_16; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::attributeSchemaType XmlSchemaSimpleType_t2678868104 * ___attributeSchemaType_17; // System.String System.Xml.Schema.XmlSchemaAttribute::defaultValue String_t* ___defaultValue_18; // System.String System.Xml.Schema.XmlSchemaAttribute::fixedValue String_t* ___fixedValue_19; // System.String System.Xml.Schema.XmlSchemaAttribute::validatedDefaultValue String_t* ___validatedDefaultValue_20; // System.String System.Xml.Schema.XmlSchemaAttribute::validatedFixedValue String_t* ___validatedFixedValue_21; // System.Object System.Xml.Schema.XmlSchemaAttribute::validatedFixedTypedValue RuntimeObject * ___validatedFixedTypedValue_22; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaAttribute::form int32_t ___form_23; // System.String System.Xml.Schema.XmlSchemaAttribute::name String_t* ___name_24; // System.String System.Xml.Schema.XmlSchemaAttribute::targetNamespace String_t* ___targetNamespace_25; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::qualifiedName XmlQualifiedName_t2760654312 * ___qualifiedName_26; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::refName XmlQualifiedName_t2760654312 * ___refName_27; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaAttribute::schemaType XmlSchemaSimpleType_t2678868104 * ___schemaType_28; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::schemaTypeName XmlQualifiedName_t2760654312 * ___schemaTypeName_29; // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::use int32_t ___use_30; // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::validatedUse int32_t ___validatedUse_31; // System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaAttribute::referencedAttribute XmlSchemaAttribute_t2797257020 * ___referencedAttribute_32; public: inline static int32_t get_offset_of_attributeType_16() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___attributeType_16)); } inline RuntimeObject * get_attributeType_16() const { return ___attributeType_16; } inline RuntimeObject ** get_address_of_attributeType_16() { return &___attributeType_16; } inline void set_attributeType_16(RuntimeObject * value) { ___attributeType_16 = value; Il2CppCodeGenWriteBarrier((&___attributeType_16), value); } inline static int32_t get_offset_of_attributeSchemaType_17() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___attributeSchemaType_17)); } inline XmlSchemaSimpleType_t2678868104 * get_attributeSchemaType_17() const { return ___attributeSchemaType_17; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_attributeSchemaType_17() { return &___attributeSchemaType_17; } inline void set_attributeSchemaType_17(XmlSchemaSimpleType_t2678868104 * value) { ___attributeSchemaType_17 = value; Il2CppCodeGenWriteBarrier((&___attributeSchemaType_17), value); } inline static int32_t get_offset_of_defaultValue_18() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___defaultValue_18)); } inline String_t* get_defaultValue_18() const { return ___defaultValue_18; } inline String_t** get_address_of_defaultValue_18() { return &___defaultValue_18; } inline void set_defaultValue_18(String_t* value) { ___defaultValue_18 = value; Il2CppCodeGenWriteBarrier((&___defaultValue_18), value); } inline static int32_t get_offset_of_fixedValue_19() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___fixedValue_19)); } inline String_t* get_fixedValue_19() const { return ___fixedValue_19; } inline String_t** get_address_of_fixedValue_19() { return &___fixedValue_19; } inline void set_fixedValue_19(String_t* value) { ___fixedValue_19 = value; Il2CppCodeGenWriteBarrier((&___fixedValue_19), value); } inline static int32_t get_offset_of_validatedDefaultValue_20() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___validatedDefaultValue_20)); } inline String_t* get_validatedDefaultValue_20() const { return ___validatedDefaultValue_20; } inline String_t** get_address_of_validatedDefaultValue_20() { return &___validatedDefaultValue_20; } inline void set_validatedDefaultValue_20(String_t* value) { ___validatedDefaultValue_20 = value; Il2CppCodeGenWriteBarrier((&___validatedDefaultValue_20), value); } inline static int32_t get_offset_of_validatedFixedValue_21() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___validatedFixedValue_21)); } inline String_t* get_validatedFixedValue_21() const { return ___validatedFixedValue_21; } inline String_t** get_address_of_validatedFixedValue_21() { return &___validatedFixedValue_21; } inline void set_validatedFixedValue_21(String_t* value) { ___validatedFixedValue_21 = value; Il2CppCodeGenWriteBarrier((&___validatedFixedValue_21), value); } inline static int32_t get_offset_of_validatedFixedTypedValue_22() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___validatedFixedTypedValue_22)); } inline RuntimeObject * get_validatedFixedTypedValue_22() const { return ___validatedFixedTypedValue_22; } inline RuntimeObject ** get_address_of_validatedFixedTypedValue_22() { return &___validatedFixedTypedValue_22; } inline void set_validatedFixedTypedValue_22(RuntimeObject * value) { ___validatedFixedTypedValue_22 = value; Il2CppCodeGenWriteBarrier((&___validatedFixedTypedValue_22), value); } inline static int32_t get_offset_of_form_23() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___form_23)); } inline int32_t get_form_23() const { return ___form_23; } inline int32_t* get_address_of_form_23() { return &___form_23; } inline void set_form_23(int32_t value) { ___form_23 = value; } inline static int32_t get_offset_of_name_24() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___name_24)); } inline String_t* get_name_24() const { return ___name_24; } inline String_t** get_address_of_name_24() { return &___name_24; } inline void set_name_24(String_t* value) { ___name_24 = value; Il2CppCodeGenWriteBarrier((&___name_24), value); } inline static int32_t get_offset_of_targetNamespace_25() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___targetNamespace_25)); } inline String_t* get_targetNamespace_25() const { return ___targetNamespace_25; } inline String_t** get_address_of_targetNamespace_25() { return &___targetNamespace_25; } inline void set_targetNamespace_25(String_t* value) { ___targetNamespace_25 = value; Il2CppCodeGenWriteBarrier((&___targetNamespace_25), value); } inline static int32_t get_offset_of_qualifiedName_26() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___qualifiedName_26)); } inline XmlQualifiedName_t2760654312 * get_qualifiedName_26() const { return ___qualifiedName_26; } inline XmlQualifiedName_t2760654312 ** get_address_of_qualifiedName_26() { return &___qualifiedName_26; } inline void set_qualifiedName_26(XmlQualifiedName_t2760654312 * value) { ___qualifiedName_26 = value; Il2CppCodeGenWriteBarrier((&___qualifiedName_26), value); } inline static int32_t get_offset_of_refName_27() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___refName_27)); } inline XmlQualifiedName_t2760654312 * get_refName_27() const { return ___refName_27; } inline XmlQualifiedName_t2760654312 ** get_address_of_refName_27() { return &___refName_27; } inline void set_refName_27(XmlQualifiedName_t2760654312 * value) { ___refName_27 = value; Il2CppCodeGenWriteBarrier((&___refName_27), value); } inline static int32_t get_offset_of_schemaType_28() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___schemaType_28)); } inline XmlSchemaSimpleType_t2678868104 * get_schemaType_28() const { return ___schemaType_28; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_schemaType_28() { return &___schemaType_28; } inline void set_schemaType_28(XmlSchemaSimpleType_t2678868104 * value) { ___schemaType_28 = value; Il2CppCodeGenWriteBarrier((&___schemaType_28), value); } inline static int32_t get_offset_of_schemaTypeName_29() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___schemaTypeName_29)); } inline XmlQualifiedName_t2760654312 * get_schemaTypeName_29() const { return ___schemaTypeName_29; } inline XmlQualifiedName_t2760654312 ** get_address_of_schemaTypeName_29() { return &___schemaTypeName_29; } inline void set_schemaTypeName_29(XmlQualifiedName_t2760654312 * value) { ___schemaTypeName_29 = value; Il2CppCodeGenWriteBarrier((&___schemaTypeName_29), value); } inline static int32_t get_offset_of_use_30() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___use_30)); } inline int32_t get_use_30() const { return ___use_30; } inline int32_t* get_address_of_use_30() { return &___use_30; } inline void set_use_30(int32_t value) { ___use_30 = value; } inline static int32_t get_offset_of_validatedUse_31() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___validatedUse_31)); } inline int32_t get_validatedUse_31() const { return ___validatedUse_31; } inline int32_t* get_address_of_validatedUse_31() { return &___validatedUse_31; } inline void set_validatedUse_31(int32_t value) { ___validatedUse_31 = value; } inline static int32_t get_offset_of_referencedAttribute_32() { return static_cast<int32_t>(offsetof(XmlSchemaAttribute_t2797257020, ___referencedAttribute_32)); } inline XmlSchemaAttribute_t2797257020 * get_referencedAttribute_32() const { return ___referencedAttribute_32; } inline XmlSchemaAttribute_t2797257020 ** get_address_of_referencedAttribute_32() { return &___referencedAttribute_32; } inline void set_referencedAttribute_32(XmlSchemaAttribute_t2797257020 * value) { ___referencedAttribute_32 = value; Il2CppCodeGenWriteBarrier((&___referencedAttribute_32), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAATTRIBUTE_T2797257020_H #ifndef XMLSCHEMACONTENT_T1040349258_H #define XMLSCHEMACONTENT_T1040349258_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaContent struct XmlSchemaContent_t1040349258 : public XmlSchemaAnnotated_t2603549639 { public: // System.Object System.Xml.Schema.XmlSchemaContent::actualBaseSchemaType RuntimeObject * ___actualBaseSchemaType_16; public: inline static int32_t get_offset_of_actualBaseSchemaType_16() { return static_cast<int32_t>(offsetof(XmlSchemaContent_t1040349258, ___actualBaseSchemaType_16)); } inline RuntimeObject * get_actualBaseSchemaType_16() const { return ___actualBaseSchemaType_16; } inline RuntimeObject ** get_address_of_actualBaseSchemaType_16() { return &___actualBaseSchemaType_16; } inline void set_actualBaseSchemaType_16(RuntimeObject * value) { ___actualBaseSchemaType_16 = value; Il2CppCodeGenWriteBarrier((&___actualBaseSchemaType_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACONTENT_T1040349258_H #ifndef XMLSCHEMACONTENTMODEL_T602185179_H #define XMLSCHEMACONTENTMODEL_T602185179_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaContentModel struct XmlSchemaContentModel_t602185179 : public XmlSchemaAnnotated_t2603549639 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACONTENTMODEL_T602185179_H #ifndef XMLSCHEMAATTRIBUTEGROUPREF_T846390688_H #define XMLSCHEMAATTRIBUTEGROUPREF_T846390688_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAttributeGroupRef struct XmlSchemaAttributeGroupRef_t846390688 : public XmlSchemaAnnotated_t2603549639 { public: // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttributeGroupRef::refName XmlQualifiedName_t2760654312 * ___refName_16; public: inline static int32_t get_offset_of_refName_16() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroupRef_t846390688, ___refName_16)); } inline XmlQualifiedName_t2760654312 * get_refName_16() const { return ___refName_16; } inline XmlQualifiedName_t2760654312 ** get_address_of_refName_16() { return &___refName_16; } inline void set_refName_16(XmlQualifiedName_t2760654312 * value) { ___refName_16 = value; Il2CppCodeGenWriteBarrier((&___refName_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAATTRIBUTEGROUPREF_T846390688_H #ifndef XMLSCHEMAXPATH_T3156455507_H #define XMLSCHEMAXPATH_T3156455507_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaXPath struct XmlSchemaXPath_t3156455507 : public XmlSchemaAnnotated_t2603549639 { public: // System.String System.Xml.Schema.XmlSchemaXPath::xpath String_t* ___xpath_16; // System.Xml.XmlNamespaceManager System.Xml.Schema.XmlSchemaXPath::nsmgr XmlNamespaceManager_t418790500 * ___nsmgr_17; // System.Boolean System.Xml.Schema.XmlSchemaXPath::isSelector bool ___isSelector_18; // Mono.Xml.Schema.XsdIdentityPath[] System.Xml.Schema.XmlSchemaXPath::compiledExpression XsdIdentityPathU5BU5D_t2466178853* ___compiledExpression_19; // Mono.Xml.Schema.XsdIdentityPath System.Xml.Schema.XmlSchemaXPath::currentPath XsdIdentityPath_t991900844 * ___currentPath_20; public: inline static int32_t get_offset_of_xpath_16() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507, ___xpath_16)); } inline String_t* get_xpath_16() const { return ___xpath_16; } inline String_t** get_address_of_xpath_16() { return &___xpath_16; } inline void set_xpath_16(String_t* value) { ___xpath_16 = value; Il2CppCodeGenWriteBarrier((&___xpath_16), value); } inline static int32_t get_offset_of_nsmgr_17() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507, ___nsmgr_17)); } inline XmlNamespaceManager_t418790500 * get_nsmgr_17() const { return ___nsmgr_17; } inline XmlNamespaceManager_t418790500 ** get_address_of_nsmgr_17() { return &___nsmgr_17; } inline void set_nsmgr_17(XmlNamespaceManager_t418790500 * value) { ___nsmgr_17 = value; Il2CppCodeGenWriteBarrier((&___nsmgr_17), value); } inline static int32_t get_offset_of_isSelector_18() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507, ___isSelector_18)); } inline bool get_isSelector_18() const { return ___isSelector_18; } inline bool* get_address_of_isSelector_18() { return &___isSelector_18; } inline void set_isSelector_18(bool value) { ___isSelector_18 = value; } inline static int32_t get_offset_of_compiledExpression_19() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507, ___compiledExpression_19)); } inline XsdIdentityPathU5BU5D_t2466178853* get_compiledExpression_19() const { return ___compiledExpression_19; } inline XsdIdentityPathU5BU5D_t2466178853** get_address_of_compiledExpression_19() { return &___compiledExpression_19; } inline void set_compiledExpression_19(XsdIdentityPathU5BU5D_t2466178853* value) { ___compiledExpression_19 = value; Il2CppCodeGenWriteBarrier((&___compiledExpression_19), value); } inline static int32_t get_offset_of_currentPath_20() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507, ___currentPath_20)); } inline XsdIdentityPath_t991900844 * get_currentPath_20() const { return ___currentPath_20; } inline XsdIdentityPath_t991900844 ** get_address_of_currentPath_20() { return &___currentPath_20; } inline void set_currentPath_20(XsdIdentityPath_t991900844 * value) { ___currentPath_20 = value; Il2CppCodeGenWriteBarrier((&___currentPath_20), value); } }; struct XmlSchemaXPath_t3156455507_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Xml.Schema.XmlSchemaXPath::<>f__switch$map4A Dictionary_2_t2736202052 * ___U3CU3Ef__switchU24map4A_21; public: inline static int32_t get_offset_of_U3CU3Ef__switchU24map4A_21() { return static_cast<int32_t>(offsetof(XmlSchemaXPath_t3156455507_StaticFields, ___U3CU3Ef__switchU24map4A_21)); } inline Dictionary_2_t2736202052 * get_U3CU3Ef__switchU24map4A_21() const { return ___U3CU3Ef__switchU24map4A_21; } inline Dictionary_2_t2736202052 ** get_address_of_U3CU3Ef__switchU24map4A_21() { return &___U3CU3Ef__switchU24map4A_21; } inline void set_U3CU3Ef__switchU24map4A_21(Dictionary_2_t2736202052 * value) { ___U3CU3Ef__switchU24map4A_21 = value; Il2CppCodeGenWriteBarrier((&___U3CU3Ef__switchU24map4A_21), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAXPATH_T3156455507_H #ifndef XMLSCHEMAIDENTITYCONSTRAINT_T297318432_H #define XMLSCHEMAIDENTITYCONSTRAINT_T297318432_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaIdentityConstraint struct XmlSchemaIdentityConstraint_t297318432 : public XmlSchemaAnnotated_t2603549639 { public: // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaIdentityConstraint::fields XmlSchemaObjectCollection_t1064819932 * ___fields_16; // System.String System.Xml.Schema.XmlSchemaIdentityConstraint::name String_t* ___name_17; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaIdentityConstraint::qName XmlQualifiedName_t2760654312 * ___qName_18; // System.Xml.Schema.XmlSchemaXPath System.Xml.Schema.XmlSchemaIdentityConstraint::selector XmlSchemaXPath_t3156455507 * ___selector_19; // Mono.Xml.Schema.XsdIdentitySelector System.Xml.Schema.XmlSchemaIdentityConstraint::compiledSelector XsdIdentitySelector_t574258590 * ___compiledSelector_20; public: inline static int32_t get_offset_of_fields_16() { return static_cast<int32_t>(offsetof(XmlSchemaIdentityConstraint_t297318432, ___fields_16)); } inline XmlSchemaObjectCollection_t1064819932 * get_fields_16() const { return ___fields_16; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_fields_16() { return &___fields_16; } inline void set_fields_16(XmlSchemaObjectCollection_t1064819932 * value) { ___fields_16 = value; Il2CppCodeGenWriteBarrier((&___fields_16), value); } inline static int32_t get_offset_of_name_17() { return static_cast<int32_t>(offsetof(XmlSchemaIdentityConstraint_t297318432, ___name_17)); } inline String_t* get_name_17() const { return ___name_17; } inline String_t** get_address_of_name_17() { return &___name_17; } inline void set_name_17(String_t* value) { ___name_17 = value; Il2CppCodeGenWriteBarrier((&___name_17), value); } inline static int32_t get_offset_of_qName_18() { return static_cast<int32_t>(offsetof(XmlSchemaIdentityConstraint_t297318432, ___qName_18)); } inline XmlQualifiedName_t2760654312 * get_qName_18() const { return ___qName_18; } inline XmlQualifiedName_t2760654312 ** get_address_of_qName_18() { return &___qName_18; } inline void set_qName_18(XmlQualifiedName_t2760654312 * value) { ___qName_18 = value; Il2CppCodeGenWriteBarrier((&___qName_18), value); } inline static int32_t get_offset_of_selector_19() { return static_cast<int32_t>(offsetof(XmlSchemaIdentityConstraint_t297318432, ___selector_19)); } inline XmlSchemaXPath_t3156455507 * get_selector_19() const { return ___selector_19; } inline XmlSchemaXPath_t3156455507 ** get_address_of_selector_19() { return &___selector_19; } inline void set_selector_19(XmlSchemaXPath_t3156455507 * value) { ___selector_19 = value; Il2CppCodeGenWriteBarrier((&___selector_19), value); } inline static int32_t get_offset_of_compiledSelector_20() { return static_cast<int32_t>(offsetof(XmlSchemaIdentityConstraint_t297318432, ___compiledSelector_20)); } inline XsdIdentitySelector_t574258590 * get_compiledSelector_20() const { return ___compiledSelector_20; } inline XsdIdentitySelector_t574258590 ** get_address_of_compiledSelector_20() { return &___compiledSelector_20; } inline void set_compiledSelector_20(XsdIdentitySelector_t574258590 * value) { ___compiledSelector_20 = value; Il2CppCodeGenWriteBarrier((&___compiledSelector_20), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAIDENTITYCONSTRAINT_T297318432_H #ifndef XMLSCHEMAGROUP_T1441741786_H #define XMLSCHEMAGROUP_T1441741786_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaGroup struct XmlSchemaGroup_t1441741786 : public XmlSchemaAnnotated_t2603549639 { public: // System.String System.Xml.Schema.XmlSchemaGroup::name String_t* ___name_16; // System.Xml.Schema.XmlSchemaGroupBase System.Xml.Schema.XmlSchemaGroup::particle XmlSchemaGroupBase_t3631079376 * ___particle_17; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaGroup::qualifiedName XmlQualifiedName_t2760654312 * ___qualifiedName_18; // System.Boolean System.Xml.Schema.XmlSchemaGroup::isCircularDefinition bool ___isCircularDefinition_19; public: inline static int32_t get_offset_of_name_16() { return static_cast<int32_t>(offsetof(XmlSchemaGroup_t1441741786, ___name_16)); } inline String_t* get_name_16() const { return ___name_16; } inline String_t** get_address_of_name_16() { return &___name_16; } inline void set_name_16(String_t* value) { ___name_16 = value; Il2CppCodeGenWriteBarrier((&___name_16), value); } inline static int32_t get_offset_of_particle_17() { return static_cast<int32_t>(offsetof(XmlSchemaGroup_t1441741786, ___particle_17)); } inline XmlSchemaGroupBase_t3631079376 * get_particle_17() const { return ___particle_17; } inline XmlSchemaGroupBase_t3631079376 ** get_address_of_particle_17() { return &___particle_17; } inline void set_particle_17(XmlSchemaGroupBase_t3631079376 * value) { ___particle_17 = value; Il2CppCodeGenWriteBarrier((&___particle_17), value); } inline static int32_t get_offset_of_qualifiedName_18() { return static_cast<int32_t>(offsetof(XmlSchemaGroup_t1441741786, ___qualifiedName_18)); } inline XmlQualifiedName_t2760654312 * get_qualifiedName_18() const { return ___qualifiedName_18; } inline XmlQualifiedName_t2760654312 ** get_address_of_qualifiedName_18() { return &___qualifiedName_18; } inline void set_qualifiedName_18(XmlQualifiedName_t2760654312 * value) { ___qualifiedName_18 = value; Il2CppCodeGenWriteBarrier((&___qualifiedName_18), value); } inline static int32_t get_offset_of_isCircularDefinition_19() { return static_cast<int32_t>(offsetof(XmlSchemaGroup_t1441741786, ___isCircularDefinition_19)); } inline bool get_isCircularDefinition_19() const { return ___isCircularDefinition_19; } inline bool* get_address_of_isCircularDefinition_19() { return &___isCircularDefinition_19; } inline void set_isCircularDefinition_19(bool value) { ___isCircularDefinition_19 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAGROUP_T1441741786_H #ifndef XMLSCHEMAATTRIBUTEGROUP_T246430545_H #define XMLSCHEMAATTRIBUTEGROUP_T246430545_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAttributeGroup struct XmlSchemaAttributeGroup_t246430545 : public XmlSchemaAnnotated_t2603549639 { public: // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaAttributeGroup::anyAttribute XmlSchemaAnyAttribute_t963227996 * ___anyAttribute_16; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaAttributeGroup::attributes XmlSchemaObjectCollection_t1064819932 * ___attributes_17; // System.String System.Xml.Schema.XmlSchemaAttributeGroup::name String_t* ___name_18; // System.Xml.Schema.XmlSchemaAttributeGroup System.Xml.Schema.XmlSchemaAttributeGroup::redefined XmlSchemaAttributeGroup_t246430545 * ___redefined_19; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttributeGroup::qualifiedName XmlQualifiedName_t2760654312 * ___qualifiedName_20; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaAttributeGroup::attributeUses XmlSchemaObjectTable_t2546974348 * ___attributeUses_21; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaAttributeGroup::anyAttributeUse XmlSchemaAnyAttribute_t963227996 * ___anyAttributeUse_22; // System.Boolean System.Xml.Schema.XmlSchemaAttributeGroup::AttributeGroupRecursionCheck bool ___AttributeGroupRecursionCheck_23; public: inline static int32_t get_offset_of_anyAttribute_16() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___anyAttribute_16)); } inline XmlSchemaAnyAttribute_t963227996 * get_anyAttribute_16() const { return ___anyAttribute_16; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_anyAttribute_16() { return &___anyAttribute_16; } inline void set_anyAttribute_16(XmlSchemaAnyAttribute_t963227996 * value) { ___anyAttribute_16 = value; Il2CppCodeGenWriteBarrier((&___anyAttribute_16), value); } inline static int32_t get_offset_of_attributes_17() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___attributes_17)); } inline XmlSchemaObjectCollection_t1064819932 * get_attributes_17() const { return ___attributes_17; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_attributes_17() { return &___attributes_17; } inline void set_attributes_17(XmlSchemaObjectCollection_t1064819932 * value) { ___attributes_17 = value; Il2CppCodeGenWriteBarrier((&___attributes_17), value); } inline static int32_t get_offset_of_name_18() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___name_18)); } inline String_t* get_name_18() const { return ___name_18; } inline String_t** get_address_of_name_18() { return &___name_18; } inline void set_name_18(String_t* value) { ___name_18 = value; Il2CppCodeGenWriteBarrier((&___name_18), value); } inline static int32_t get_offset_of_redefined_19() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___redefined_19)); } inline XmlSchemaAttributeGroup_t246430545 * get_redefined_19() const { return ___redefined_19; } inline XmlSchemaAttributeGroup_t246430545 ** get_address_of_redefined_19() { return &___redefined_19; } inline void set_redefined_19(XmlSchemaAttributeGroup_t246430545 * value) { ___redefined_19 = value; Il2CppCodeGenWriteBarrier((&___redefined_19), value); } inline static int32_t get_offset_of_qualifiedName_20() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___qualifiedName_20)); } inline XmlQualifiedName_t2760654312 * get_qualifiedName_20() const { return ___qualifiedName_20; } inline XmlQualifiedName_t2760654312 ** get_address_of_qualifiedName_20() { return &___qualifiedName_20; } inline void set_qualifiedName_20(XmlQualifiedName_t2760654312 * value) { ___qualifiedName_20 = value; Il2CppCodeGenWriteBarrier((&___qualifiedName_20), value); } inline static int32_t get_offset_of_attributeUses_21() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___attributeUses_21)); } inline XmlSchemaObjectTable_t2546974348 * get_attributeUses_21() const { return ___attributeUses_21; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributeUses_21() { return &___attributeUses_21; } inline void set_attributeUses_21(XmlSchemaObjectTable_t2546974348 * value) { ___attributeUses_21 = value; Il2CppCodeGenWriteBarrier((&___attributeUses_21), value); } inline static int32_t get_offset_of_anyAttributeUse_22() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___anyAttributeUse_22)); } inline XmlSchemaAnyAttribute_t963227996 * get_anyAttributeUse_22() const { return ___anyAttributeUse_22; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_anyAttributeUse_22() { return &___anyAttributeUse_22; } inline void set_anyAttributeUse_22(XmlSchemaAnyAttribute_t963227996 * value) { ___anyAttributeUse_22 = value; Il2CppCodeGenWriteBarrier((&___anyAttributeUse_22), value); } inline static int32_t get_offset_of_AttributeGroupRecursionCheck_23() { return static_cast<int32_t>(offsetof(XmlSchemaAttributeGroup_t246430545, ___AttributeGroupRecursionCheck_23)); } inline bool get_AttributeGroupRecursionCheck_23() const { return ___AttributeGroupRecursionCheck_23; } inline bool* get_address_of_AttributeGroupRecursionCheck_23() { return &___AttributeGroupRecursionCheck_23; } inline void set_AttributeGroupRecursionCheck_23(bool value) { ___AttributeGroupRecursionCheck_23 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAATTRIBUTEGROUP_T246430545_H #ifndef XMLSCHEMAFACET_T1906017689_H #define XMLSCHEMAFACET_T1906017689_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaFacet struct XmlSchemaFacet_t1906017689 : public XmlSchemaAnnotated_t2603549639 { public: // System.Boolean System.Xml.Schema.XmlSchemaFacet::isFixed bool ___isFixed_17; // System.String System.Xml.Schema.XmlSchemaFacet::val String_t* ___val_18; public: inline static int32_t get_offset_of_isFixed_17() { return static_cast<int32_t>(offsetof(XmlSchemaFacet_t1906017689, ___isFixed_17)); } inline bool get_isFixed_17() const { return ___isFixed_17; } inline bool* get_address_of_isFixed_17() { return &___isFixed_17; } inline void set_isFixed_17(bool value) { ___isFixed_17 = value; } inline static int32_t get_offset_of_val_18() { return static_cast<int32_t>(offsetof(XmlSchemaFacet_t1906017689, ___val_18)); } inline String_t* get_val_18() const { return ___val_18; } inline String_t** get_address_of_val_18() { return &___val_18; } inline void set_val_18(String_t* value) { ___val_18 = value; Il2CppCodeGenWriteBarrier((&___val_18), value); } }; struct XmlSchemaFacet_t1906017689_StaticFields { public: // System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::AllFacets int32_t ___AllFacets_16; public: inline static int32_t get_offset_of_AllFacets_16() { return static_cast<int32_t>(offsetof(XmlSchemaFacet_t1906017689_StaticFields, ___AllFacets_16)); } inline int32_t get_AllFacets_16() const { return ___AllFacets_16; } inline int32_t* get_address_of_AllFacets_16() { return &___AllFacets_16; } inline void set_AllFacets_16(int32_t value) { ___AllFacets_16 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAFACET_T1906017689_H #ifndef XMLSCHEMAREDEFINE_T4020109446_H #define XMLSCHEMAREDEFINE_T4020109446_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaRedefine struct XmlSchemaRedefine_t4020109446 : public XmlSchemaExternal_t3074890143 { public: // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaRedefine::attributeGroups XmlSchemaObjectTable_t2546974348 * ___attributeGroups_16; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaRedefine::groups XmlSchemaObjectTable_t2546974348 * ___groups_17; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaRedefine::items XmlSchemaObjectCollection_t1064819932 * ___items_18; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaRedefine::schemaTypes XmlSchemaObjectTable_t2546974348 * ___schemaTypes_19; public: inline static int32_t get_offset_of_attributeGroups_16() { return static_cast<int32_t>(offsetof(XmlSchemaRedefine_t4020109446, ___attributeGroups_16)); } inline XmlSchemaObjectTable_t2546974348 * get_attributeGroups_16() const { return ___attributeGroups_16; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributeGroups_16() { return &___attributeGroups_16; } inline void set_attributeGroups_16(XmlSchemaObjectTable_t2546974348 * value) { ___attributeGroups_16 = value; Il2CppCodeGenWriteBarrier((&___attributeGroups_16), value); } inline static int32_t get_offset_of_groups_17() { return static_cast<int32_t>(offsetof(XmlSchemaRedefine_t4020109446, ___groups_17)); } inline XmlSchemaObjectTable_t2546974348 * get_groups_17() const { return ___groups_17; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_groups_17() { return &___groups_17; } inline void set_groups_17(XmlSchemaObjectTable_t2546974348 * value) { ___groups_17 = value; Il2CppCodeGenWriteBarrier((&___groups_17), value); } inline static int32_t get_offset_of_items_18() { return static_cast<int32_t>(offsetof(XmlSchemaRedefine_t4020109446, ___items_18)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_18() const { return ___items_18; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_18() { return &___items_18; } inline void set_items_18(XmlSchemaObjectCollection_t1064819932 * value) { ___items_18 = value; Il2CppCodeGenWriteBarrier((&___items_18), value); } inline static int32_t get_offset_of_schemaTypes_19() { return static_cast<int32_t>(offsetof(XmlSchemaRedefine_t4020109446, ___schemaTypes_19)); } inline XmlSchemaObjectTable_t2546974348 * get_schemaTypes_19() const { return ___schemaTypes_19; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_schemaTypes_19() { return &___schemaTypes_19; } inline void set_schemaTypes_19(XmlSchemaObjectTable_t2546974348 * value) { ___schemaTypes_19 = value; Il2CppCodeGenWriteBarrier((&___schemaTypes_19), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAREDEFINE_T4020109446_H #ifndef VALIDATIONEVENTHANDLER_T791314227_H #define VALIDATIONEVENTHANDLER_T791314227_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.ValidationEventHandler struct ValidationEventHandler_t791314227 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VALIDATIONEVENTHANDLER_T791314227_H #ifndef XSDANYSIMPLETYPE_T1257864485_H #define XSDANYSIMPLETYPE_T1257864485_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdAnySimpleType struct XsdAnySimpleType_t1257864485 : public XmlSchemaDatatype_t322714710 { public: public: }; struct XsdAnySimpleType_t1257864485_StaticFields { public: // Mono.Xml.Schema.XsdAnySimpleType Mono.Xml.Schema.XsdAnySimpleType::instance XsdAnySimpleType_t1257864485 * ___instance_55; // System.Char[] Mono.Xml.Schema.XsdAnySimpleType::whitespaceArray CharU5BU5D_t3528271667* ___whitespaceArray_56; // System.Xml.Schema.XmlSchemaFacet/Facet Mono.Xml.Schema.XsdAnySimpleType::booleanAllowedFacets int32_t ___booleanAllowedFacets_57; // System.Xml.Schema.XmlSchemaFacet/Facet Mono.Xml.Schema.XsdAnySimpleType::decimalAllowedFacets int32_t ___decimalAllowedFacets_58; // System.Xml.Schema.XmlSchemaFacet/Facet Mono.Xml.Schema.XsdAnySimpleType::durationAllowedFacets int32_t ___durationAllowedFacets_59; // System.Xml.Schema.XmlSchemaFacet/Facet Mono.Xml.Schema.XsdAnySimpleType::stringAllowedFacets int32_t ___stringAllowedFacets_60; public: inline static int32_t get_offset_of_instance_55() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___instance_55)); } inline XsdAnySimpleType_t1257864485 * get_instance_55() const { return ___instance_55; } inline XsdAnySimpleType_t1257864485 ** get_address_of_instance_55() { return &___instance_55; } inline void set_instance_55(XsdAnySimpleType_t1257864485 * value) { ___instance_55 = value; Il2CppCodeGenWriteBarrier((&___instance_55), value); } inline static int32_t get_offset_of_whitespaceArray_56() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___whitespaceArray_56)); } inline CharU5BU5D_t3528271667* get_whitespaceArray_56() const { return ___whitespaceArray_56; } inline CharU5BU5D_t3528271667** get_address_of_whitespaceArray_56() { return &___whitespaceArray_56; } inline void set_whitespaceArray_56(CharU5BU5D_t3528271667* value) { ___whitespaceArray_56 = value; Il2CppCodeGenWriteBarrier((&___whitespaceArray_56), value); } inline static int32_t get_offset_of_booleanAllowedFacets_57() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___booleanAllowedFacets_57)); } inline int32_t get_booleanAllowedFacets_57() const { return ___booleanAllowedFacets_57; } inline int32_t* get_address_of_booleanAllowedFacets_57() { return &___booleanAllowedFacets_57; } inline void set_booleanAllowedFacets_57(int32_t value) { ___booleanAllowedFacets_57 = value; } inline static int32_t get_offset_of_decimalAllowedFacets_58() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___decimalAllowedFacets_58)); } inline int32_t get_decimalAllowedFacets_58() const { return ___decimalAllowedFacets_58; } inline int32_t* get_address_of_decimalAllowedFacets_58() { return &___decimalAllowedFacets_58; } inline void set_decimalAllowedFacets_58(int32_t value) { ___decimalAllowedFacets_58 = value; } inline static int32_t get_offset_of_durationAllowedFacets_59() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___durationAllowedFacets_59)); } inline int32_t get_durationAllowedFacets_59() const { return ___durationAllowedFacets_59; } inline int32_t* get_address_of_durationAllowedFacets_59() { return &___durationAllowedFacets_59; } inline void set_durationAllowedFacets_59(int32_t value) { ___durationAllowedFacets_59 = value; } inline static int32_t get_offset_of_stringAllowedFacets_60() { return static_cast<int32_t>(offsetof(XsdAnySimpleType_t1257864485_StaticFields, ___stringAllowedFacets_60)); } inline int32_t get_stringAllowedFacets_60() const { return ___stringAllowedFacets_60; } inline int32_t* get_address_of_stringAllowedFacets_60() { return &___stringAllowedFacets_60; } inline void set_stringAllowedFacets_60(int32_t value) { ___stringAllowedFacets_60 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDANYSIMPLETYPE_T1257864485_H #ifndef XMLSCHEMASIMPLETYPECONTENT_T599285223_H #define XMLSCHEMASIMPLETYPECONTENT_T599285223_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleTypeContent struct XmlSchemaSimpleTypeContent_t599285223 : public XmlSchemaAnnotated_t2603549639 { public: // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeContent::OwnerType XmlSchemaSimpleType_t2678868104 * ___OwnerType_16; public: inline static int32_t get_offset_of_OwnerType_16() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeContent_t599285223, ___OwnerType_16)); } inline XmlSchemaSimpleType_t2678868104 * get_OwnerType_16() const { return ___OwnerType_16; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_OwnerType_16() { return &___OwnerType_16; } inline void set_OwnerType_16(XmlSchemaSimpleType_t2678868104 * value) { ___OwnerType_16 = value; Il2CppCodeGenWriteBarrier((&___OwnerType_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLETYPECONTENT_T599285223_H #ifndef XMLSCHEMAENUMERATIONFACET_T2156689038_H #define XMLSCHEMAENUMERATIONFACET_T2156689038_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaEnumerationFacet struct XmlSchemaEnumerationFacet_t2156689038 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAENUMERATIONFACET_T2156689038_H #ifndef XMLSCHEMAWHITESPACEFACET_T4158372164_H #define XMLSCHEMAWHITESPACEFACET_T4158372164_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaWhiteSpaceFacet struct XmlSchemaWhiteSpaceFacet_t4158372164 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAWHITESPACEFACET_T4158372164_H #ifndef XMLSCHEMAMAXEXCLUSIVEFACET_T786951263_H #define XMLSCHEMAMAXEXCLUSIVEFACET_T786951263_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMaxExclusiveFacet struct XmlSchemaMaxExclusiveFacet_t786951263 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMAXEXCLUSIVEFACET_T786951263_H #ifndef XMLSCHEMAMAXINCLUSIVEFACET_T719708644_H #define XMLSCHEMAMAXINCLUSIVEFACET_T719708644_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMaxInclusiveFacet struct XmlSchemaMaxInclusiveFacet_t719708644 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMAXINCLUSIVEFACET_T719708644_H #ifndef XMLSCHEMAPATTERNFACET_T3316004401_H #define XMLSCHEMAPATTERNFACET_T3316004401_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaPatternFacet struct XmlSchemaPatternFacet_t3316004401 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAPATTERNFACET_T3316004401_H #ifndef XMLSCHEMASIMPLETYPEUNION_T4071426880_H #define XMLSCHEMASIMPLETYPEUNION_T4071426880_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleTypeUnion struct XmlSchemaSimpleTypeUnion_t4071426880 : public XmlSchemaSimpleTypeContent_t599285223 { public: // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeUnion::baseTypes XmlSchemaObjectCollection_t1064819932 * ___baseTypes_17; // System.Xml.XmlQualifiedName[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::memberTypes XmlQualifiedNameU5BU5D_t1471530361* ___memberTypes_18; // System.Object[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::validatedTypes ObjectU5BU5D_t2843939325* ___validatedTypes_19; // System.Xml.Schema.XmlSchemaSimpleType[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::validatedSchemaTypes XmlSchemaSimpleTypeU5BU5D_t1394089049* ___validatedSchemaTypes_20; public: inline static int32_t get_offset_of_baseTypes_17() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeUnion_t4071426880, ___baseTypes_17)); } inline XmlSchemaObjectCollection_t1064819932 * get_baseTypes_17() const { return ___baseTypes_17; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_baseTypes_17() { return &___baseTypes_17; } inline void set_baseTypes_17(XmlSchemaObjectCollection_t1064819932 * value) { ___baseTypes_17 = value; Il2CppCodeGenWriteBarrier((&___baseTypes_17), value); } inline static int32_t get_offset_of_memberTypes_18() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeUnion_t4071426880, ___memberTypes_18)); } inline XmlQualifiedNameU5BU5D_t1471530361* get_memberTypes_18() const { return ___memberTypes_18; } inline XmlQualifiedNameU5BU5D_t1471530361** get_address_of_memberTypes_18() { return &___memberTypes_18; } inline void set_memberTypes_18(XmlQualifiedNameU5BU5D_t1471530361* value) { ___memberTypes_18 = value; Il2CppCodeGenWriteBarrier((&___memberTypes_18), value); } inline static int32_t get_offset_of_validatedTypes_19() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeUnion_t4071426880, ___validatedTypes_19)); } inline ObjectU5BU5D_t2843939325* get_validatedTypes_19() const { return ___validatedTypes_19; } inline ObjectU5BU5D_t2843939325** get_address_of_validatedTypes_19() { return &___validatedTypes_19; } inline void set_validatedTypes_19(ObjectU5BU5D_t2843939325* value) { ___validatedTypes_19 = value; Il2CppCodeGenWriteBarrier((&___validatedTypes_19), value); } inline static int32_t get_offset_of_validatedSchemaTypes_20() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeUnion_t4071426880, ___validatedSchemaTypes_20)); } inline XmlSchemaSimpleTypeU5BU5D_t1394089049* get_validatedSchemaTypes_20() const { return ___validatedSchemaTypes_20; } inline XmlSchemaSimpleTypeU5BU5D_t1394089049** get_address_of_validatedSchemaTypes_20() { return &___validatedSchemaTypes_20; } inline void set_validatedSchemaTypes_20(XmlSchemaSimpleTypeU5BU5D_t1394089049* value) { ___validatedSchemaTypes_20 = value; Il2CppCodeGenWriteBarrier((&___validatedSchemaTypes_20), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLETYPEUNION_T4071426880_H #ifndef XSDNOTATION_T2827634056_H #define XSDNOTATION_T2827634056_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdNotation struct XsdNotation_t2827634056 : public XsdAnySimpleType_t1257864485 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNOTATION_T2827634056_H #ifndef XMLSCHEMASIMPLETYPELIST_T472803608_H #define XMLSCHEMASIMPLETYPELIST_T472803608_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleTypeList struct XmlSchemaSimpleTypeList_t472803608 : public XmlSchemaSimpleTypeContent_t599285223 { public: // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeList::itemType XmlSchemaSimpleType_t2678868104 * ___itemType_17; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeList::itemTypeName XmlQualifiedName_t2760654312 * ___itemTypeName_18; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeList::validatedListItemType RuntimeObject * ___validatedListItemType_19; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeList::validatedListItemSchemaType XmlSchemaSimpleType_t2678868104 * ___validatedListItemSchemaType_20; public: inline static int32_t get_offset_of_itemType_17() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeList_t472803608, ___itemType_17)); } inline XmlSchemaSimpleType_t2678868104 * get_itemType_17() const { return ___itemType_17; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_itemType_17() { return &___itemType_17; } inline void set_itemType_17(XmlSchemaSimpleType_t2678868104 * value) { ___itemType_17 = value; Il2CppCodeGenWriteBarrier((&___itemType_17), value); } inline static int32_t get_offset_of_itemTypeName_18() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeList_t472803608, ___itemTypeName_18)); } inline XmlQualifiedName_t2760654312 * get_itemTypeName_18() const { return ___itemTypeName_18; } inline XmlQualifiedName_t2760654312 ** get_address_of_itemTypeName_18() { return &___itemTypeName_18; } inline void set_itemTypeName_18(XmlQualifiedName_t2760654312 * value) { ___itemTypeName_18 = value; Il2CppCodeGenWriteBarrier((&___itemTypeName_18), value); } inline static int32_t get_offset_of_validatedListItemType_19() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeList_t472803608, ___validatedListItemType_19)); } inline RuntimeObject * get_validatedListItemType_19() const { return ___validatedListItemType_19; } inline RuntimeObject ** get_address_of_validatedListItemType_19() { return &___validatedListItemType_19; } inline void set_validatedListItemType_19(RuntimeObject * value) { ___validatedListItemType_19 = value; Il2CppCodeGenWriteBarrier((&___validatedListItemType_19), value); } inline static int32_t get_offset_of_validatedListItemSchemaType_20() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeList_t472803608, ___validatedListItemSchemaType_20)); } inline XmlSchemaSimpleType_t2678868104 * get_validatedListItemSchemaType_20() const { return ___validatedListItemSchemaType_20; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_validatedListItemSchemaType_20() { return &___validatedListItemSchemaType_20; } inline void set_validatedListItemSchemaType_20(XmlSchemaSimpleType_t2678868104 * value) { ___validatedListItemSchemaType_20 = value; Il2CppCodeGenWriteBarrier((&___validatedListItemSchemaType_20), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLETYPELIST_T472803608_H #ifndef XMLSCHEMASIMPLETYPERESTRICTION_T3925451115_H #define XMLSCHEMASIMPLETYPERESTRICTION_T3925451115_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleTypeRestriction struct XmlSchemaSimpleTypeRestriction_t3925451115 : public XmlSchemaSimpleTypeContent_t599285223 { public: // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeRestriction::baseType XmlSchemaSimpleType_t2678868104 * ___baseType_17; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeRestriction::baseTypeName XmlQualifiedName_t2760654312 * ___baseTypeName_18; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeRestriction::facets XmlSchemaObjectCollection_t1064819932 * ___facets_19; // System.String[] System.Xml.Schema.XmlSchemaSimpleTypeRestriction::enumarationFacetValues StringU5BU5D_t1281789340* ___enumarationFacetValues_20; // System.String[] System.Xml.Schema.XmlSchemaSimpleTypeRestriction::patternFacetValues StringU5BU5D_t1281789340* ___patternFacetValues_21; // System.Text.RegularExpressions.Regex[] System.Xml.Schema.XmlSchemaSimpleTypeRestriction::rexPatterns RegexU5BU5D_t1561692752* ___rexPatterns_22; // System.Decimal System.Xml.Schema.XmlSchemaSimpleTypeRestriction::lengthFacet Decimal_t2948259380 ___lengthFacet_23; // System.Decimal System.Xml.Schema.XmlSchemaSimpleTypeRestriction::maxLengthFacet Decimal_t2948259380 ___maxLengthFacet_24; // System.Decimal System.Xml.Schema.XmlSchemaSimpleTypeRestriction::minLengthFacet Decimal_t2948259380 ___minLengthFacet_25; // System.Decimal System.Xml.Schema.XmlSchemaSimpleTypeRestriction::fractionDigitsFacet Decimal_t2948259380 ___fractionDigitsFacet_26; // System.Decimal System.Xml.Schema.XmlSchemaSimpleTypeRestriction::totalDigitsFacet Decimal_t2948259380 ___totalDigitsFacet_27; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::maxInclusiveFacet RuntimeObject * ___maxInclusiveFacet_28; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::maxExclusiveFacet RuntimeObject * ___maxExclusiveFacet_29; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::minInclusiveFacet RuntimeObject * ___minInclusiveFacet_30; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::minExclusiveFacet RuntimeObject * ___minExclusiveFacet_31; // System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaSimpleTypeRestriction::fixedFacets int32_t ___fixedFacets_32; public: inline static int32_t get_offset_of_baseType_17() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___baseType_17)); } inline XmlSchemaSimpleType_t2678868104 * get_baseType_17() const { return ___baseType_17; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_baseType_17() { return &___baseType_17; } inline void set_baseType_17(XmlSchemaSimpleType_t2678868104 * value) { ___baseType_17 = value; Il2CppCodeGenWriteBarrier((&___baseType_17), value); } inline static int32_t get_offset_of_baseTypeName_18() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___baseTypeName_18)); } inline XmlQualifiedName_t2760654312 * get_baseTypeName_18() const { return ___baseTypeName_18; } inline XmlQualifiedName_t2760654312 ** get_address_of_baseTypeName_18() { return &___baseTypeName_18; } inline void set_baseTypeName_18(XmlQualifiedName_t2760654312 * value) { ___baseTypeName_18 = value; Il2CppCodeGenWriteBarrier((&___baseTypeName_18), value); } inline static int32_t get_offset_of_facets_19() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___facets_19)); } inline XmlSchemaObjectCollection_t1064819932 * get_facets_19() const { return ___facets_19; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_facets_19() { return &___facets_19; } inline void set_facets_19(XmlSchemaObjectCollection_t1064819932 * value) { ___facets_19 = value; Il2CppCodeGenWriteBarrier((&___facets_19), value); } inline static int32_t get_offset_of_enumarationFacetValues_20() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___enumarationFacetValues_20)); } inline StringU5BU5D_t1281789340* get_enumarationFacetValues_20() const { return ___enumarationFacetValues_20; } inline StringU5BU5D_t1281789340** get_address_of_enumarationFacetValues_20() { return &___enumarationFacetValues_20; } inline void set_enumarationFacetValues_20(StringU5BU5D_t1281789340* value) { ___enumarationFacetValues_20 = value; Il2CppCodeGenWriteBarrier((&___enumarationFacetValues_20), value); } inline static int32_t get_offset_of_patternFacetValues_21() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___patternFacetValues_21)); } inline StringU5BU5D_t1281789340* get_patternFacetValues_21() const { return ___patternFacetValues_21; } inline StringU5BU5D_t1281789340** get_address_of_patternFacetValues_21() { return &___patternFacetValues_21; } inline void set_patternFacetValues_21(StringU5BU5D_t1281789340* value) { ___patternFacetValues_21 = value; Il2CppCodeGenWriteBarrier((&___patternFacetValues_21), value); } inline static int32_t get_offset_of_rexPatterns_22() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___rexPatterns_22)); } inline RegexU5BU5D_t1561692752* get_rexPatterns_22() const { return ___rexPatterns_22; } inline RegexU5BU5D_t1561692752** get_address_of_rexPatterns_22() { return &___rexPatterns_22; } inline void set_rexPatterns_22(RegexU5BU5D_t1561692752* value) { ___rexPatterns_22 = value; Il2CppCodeGenWriteBarrier((&___rexPatterns_22), value); } inline static int32_t get_offset_of_lengthFacet_23() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___lengthFacet_23)); } inline Decimal_t2948259380 get_lengthFacet_23() const { return ___lengthFacet_23; } inline Decimal_t2948259380 * get_address_of_lengthFacet_23() { return &___lengthFacet_23; } inline void set_lengthFacet_23(Decimal_t2948259380 value) { ___lengthFacet_23 = value; } inline static int32_t get_offset_of_maxLengthFacet_24() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___maxLengthFacet_24)); } inline Decimal_t2948259380 get_maxLengthFacet_24() const { return ___maxLengthFacet_24; } inline Decimal_t2948259380 * get_address_of_maxLengthFacet_24() { return &___maxLengthFacet_24; } inline void set_maxLengthFacet_24(Decimal_t2948259380 value) { ___maxLengthFacet_24 = value; } inline static int32_t get_offset_of_minLengthFacet_25() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___minLengthFacet_25)); } inline Decimal_t2948259380 get_minLengthFacet_25() const { return ___minLengthFacet_25; } inline Decimal_t2948259380 * get_address_of_minLengthFacet_25() { return &___minLengthFacet_25; } inline void set_minLengthFacet_25(Decimal_t2948259380 value) { ___minLengthFacet_25 = value; } inline static int32_t get_offset_of_fractionDigitsFacet_26() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___fractionDigitsFacet_26)); } inline Decimal_t2948259380 get_fractionDigitsFacet_26() const { return ___fractionDigitsFacet_26; } inline Decimal_t2948259380 * get_address_of_fractionDigitsFacet_26() { return &___fractionDigitsFacet_26; } inline void set_fractionDigitsFacet_26(Decimal_t2948259380 value) { ___fractionDigitsFacet_26 = value; } inline static int32_t get_offset_of_totalDigitsFacet_27() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___totalDigitsFacet_27)); } inline Decimal_t2948259380 get_totalDigitsFacet_27() const { return ___totalDigitsFacet_27; } inline Decimal_t2948259380 * get_address_of_totalDigitsFacet_27() { return &___totalDigitsFacet_27; } inline void set_totalDigitsFacet_27(Decimal_t2948259380 value) { ___totalDigitsFacet_27 = value; } inline static int32_t get_offset_of_maxInclusiveFacet_28() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___maxInclusiveFacet_28)); } inline RuntimeObject * get_maxInclusiveFacet_28() const { return ___maxInclusiveFacet_28; } inline RuntimeObject ** get_address_of_maxInclusiveFacet_28() { return &___maxInclusiveFacet_28; } inline void set_maxInclusiveFacet_28(RuntimeObject * value) { ___maxInclusiveFacet_28 = value; Il2CppCodeGenWriteBarrier((&___maxInclusiveFacet_28), value); } inline static int32_t get_offset_of_maxExclusiveFacet_29() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___maxExclusiveFacet_29)); } inline RuntimeObject * get_maxExclusiveFacet_29() const { return ___maxExclusiveFacet_29; } inline RuntimeObject ** get_address_of_maxExclusiveFacet_29() { return &___maxExclusiveFacet_29; } inline void set_maxExclusiveFacet_29(RuntimeObject * value) { ___maxExclusiveFacet_29 = value; Il2CppCodeGenWriteBarrier((&___maxExclusiveFacet_29), value); } inline static int32_t get_offset_of_minInclusiveFacet_30() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___minInclusiveFacet_30)); } inline RuntimeObject * get_minInclusiveFacet_30() const { return ___minInclusiveFacet_30; } inline RuntimeObject ** get_address_of_minInclusiveFacet_30() { return &___minInclusiveFacet_30; } inline void set_minInclusiveFacet_30(RuntimeObject * value) { ___minInclusiveFacet_30 = value; Il2CppCodeGenWriteBarrier((&___minInclusiveFacet_30), value); } inline static int32_t get_offset_of_minExclusiveFacet_31() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___minExclusiveFacet_31)); } inline RuntimeObject * get_minExclusiveFacet_31() const { return ___minExclusiveFacet_31; } inline RuntimeObject ** get_address_of_minExclusiveFacet_31() { return &___minExclusiveFacet_31; } inline void set_minExclusiveFacet_31(RuntimeObject * value) { ___minExclusiveFacet_31 = value; Il2CppCodeGenWriteBarrier((&___minExclusiveFacet_31), value); } inline static int32_t get_offset_of_fixedFacets_32() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115, ___fixedFacets_32)); } inline int32_t get_fixedFacets_32() const { return ___fixedFacets_32; } inline int32_t* get_address_of_fixedFacets_32() { return &___fixedFacets_32; } inline void set_fixedFacets_32(int32_t value) { ___fixedFacets_32 = value; } }; struct XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields { public: // System.Globalization.NumberStyles System.Xml.Schema.XmlSchemaSimpleTypeRestriction::lengthStyle int32_t ___lengthStyle_33; // System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaSimpleTypeRestriction::listFacets int32_t ___listFacets_34; public: inline static int32_t get_offset_of_lengthStyle_33() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields, ___lengthStyle_33)); } inline int32_t get_lengthStyle_33() const { return ___lengthStyle_33; } inline int32_t* get_address_of_lengthStyle_33() { return &___lengthStyle_33; } inline void set_lengthStyle_33(int32_t value) { ___lengthStyle_33 = value; } inline static int32_t get_offset_of_listFacets_34() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields, ___listFacets_34)); } inline int32_t get_listFacets_34() const { return ___listFacets_34; } inline int32_t* get_address_of_listFacets_34() { return &___listFacets_34; } inline void set_listFacets_34(int32_t value) { ___listFacets_34 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLETYPERESTRICTION_T3925451115_H #ifndef XMLSCHEMAGROUPBASE_T3631079376_H #define XMLSCHEMAGROUPBASE_T3631079376_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaGroupBase struct XmlSchemaGroupBase_t3631079376 : public XmlSchemaParticle_t3828501457 { public: // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaGroupBase::compiledItems XmlSchemaObjectCollection_t1064819932 * ___compiledItems_27; public: inline static int32_t get_offset_of_compiledItems_27() { return static_cast<int32_t>(offsetof(XmlSchemaGroupBase_t3631079376, ___compiledItems_27)); } inline XmlSchemaObjectCollection_t1064819932 * get_compiledItems_27() const { return ___compiledItems_27; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_compiledItems_27() { return &___compiledItems_27; } inline void set_compiledItems_27(XmlSchemaObjectCollection_t1064819932 * value) { ___compiledItems_27 = value; Il2CppCodeGenWriteBarrier((&___compiledItems_27), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAGROUPBASE_T3631079376_H #ifndef XMLSCHEMASIMPLECONTENT_T4264369274_H #define XMLSCHEMASIMPLECONTENT_T4264369274_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleContent struct XmlSchemaSimpleContent_t4264369274 : public XmlSchemaContentModel_t602185179 { public: // System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::content XmlSchemaContent_t1040349258 * ___content_16; public: inline static int32_t get_offset_of_content_16() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContent_t4264369274, ___content_16)); } inline XmlSchemaContent_t1040349258 * get_content_16() const { return ___content_16; } inline XmlSchemaContent_t1040349258 ** get_address_of_content_16() { return &___content_16; } inline void set_content_16(XmlSchemaContent_t1040349258 * value) { ___content_16 = value; Il2CppCodeGenWriteBarrier((&___content_16), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLECONTENT_T4264369274_H #ifndef XMLSCHEMAANY_T1119175207_H #define XMLSCHEMAANY_T1119175207_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAny struct XmlSchemaAny_t1119175207 : public XmlSchemaParticle_t3828501457 { public: // System.String System.Xml.Schema.XmlSchemaAny::nameSpace String_t* ___nameSpace_28; // System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaAny::processing int32_t ___processing_29; // Mono.Xml.Schema.XsdWildcard System.Xml.Schema.XmlSchemaAny::wildcard XsdWildcard_t2790389089 * ___wildcard_30; public: inline static int32_t get_offset_of_nameSpace_28() { return static_cast<int32_t>(offsetof(XmlSchemaAny_t1119175207, ___nameSpace_28)); } inline String_t* get_nameSpace_28() const { return ___nameSpace_28; } inline String_t** get_address_of_nameSpace_28() { return &___nameSpace_28; } inline void set_nameSpace_28(String_t* value) { ___nameSpace_28 = value; Il2CppCodeGenWriteBarrier((&___nameSpace_28), value); } inline static int32_t get_offset_of_processing_29() { return static_cast<int32_t>(offsetof(XmlSchemaAny_t1119175207, ___processing_29)); } inline int32_t get_processing_29() const { return ___processing_29; } inline int32_t* get_address_of_processing_29() { return &___processing_29; } inline void set_processing_29(int32_t value) { ___processing_29 = value; } inline static int32_t get_offset_of_wildcard_30() { return static_cast<int32_t>(offsetof(XmlSchemaAny_t1119175207, ___wildcard_30)); } inline XsdWildcard_t2790389089 * get_wildcard_30() const { return ___wildcard_30; } inline XsdWildcard_t2790389089 ** get_address_of_wildcard_30() { return &___wildcard_30; } inline void set_wildcard_30(XsdWildcard_t2790389089 * value) { ___wildcard_30 = value; Il2CppCodeGenWriteBarrier((&___wildcard_30), value); } }; struct XmlSchemaAny_t1119175207_StaticFields { public: // System.Xml.Schema.XmlSchemaAny System.Xml.Schema.XmlSchemaAny::anyTypeContent XmlSchemaAny_t1119175207 * ___anyTypeContent_27; public: inline static int32_t get_offset_of_anyTypeContent_27() { return static_cast<int32_t>(offsetof(XmlSchemaAny_t1119175207_StaticFields, ___anyTypeContent_27)); } inline XmlSchemaAny_t1119175207 * get_anyTypeContent_27() const { return ___anyTypeContent_27; } inline XmlSchemaAny_t1119175207 ** get_address_of_anyTypeContent_27() { return &___anyTypeContent_27; } inline void set_anyTypeContent_27(XmlSchemaAny_t1119175207 * value) { ___anyTypeContent_27 = value; Il2CppCodeGenWriteBarrier((&___anyTypeContent_27), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAANY_T1119175207_H #ifndef XMLSCHEMAELEMENT_T427880856_H #define XMLSCHEMAELEMENT_T427880856_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaElement struct XmlSchemaElement_t427880856 : public XmlSchemaParticle_t3828501457 { public: // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::block int32_t ___block_27; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaElement::constraints XmlSchemaObjectCollection_t1064819932 * ___constraints_28; // System.String System.Xml.Schema.XmlSchemaElement::defaultValue String_t* ___defaultValue_29; // System.Object System.Xml.Schema.XmlSchemaElement::elementType RuntimeObject * ___elementType_30; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::elementSchemaType XmlSchemaType_t2033747345 * ___elementSchemaType_31; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::final int32_t ___final_32; // System.String System.Xml.Schema.XmlSchemaElement::fixedValue String_t* ___fixedValue_33; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaElement::form int32_t ___form_34; // System.Boolean System.Xml.Schema.XmlSchemaElement::isAbstract bool ___isAbstract_35; // System.Boolean System.Xml.Schema.XmlSchemaElement::isNillable bool ___isNillable_36; // System.String System.Xml.Schema.XmlSchemaElement::name String_t* ___name_37; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::refName XmlQualifiedName_t2760654312 * ___refName_38; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaElement::schemaType XmlSchemaType_t2033747345 * ___schemaType_39; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::schemaTypeName XmlQualifiedName_t2760654312 * ___schemaTypeName_40; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::substitutionGroup XmlQualifiedName_t2760654312 * ___substitutionGroup_41; // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaElement::schema XmlSchema_t3742557897 * ___schema_42; // System.Boolean System.Xml.Schema.XmlSchemaElement::parentIsSchema bool ___parentIsSchema_43; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::qName XmlQualifiedName_t2760654312 * ___qName_44; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::blockResolved int32_t ___blockResolved_45; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaElement::finalResolved int32_t ___finalResolved_46; // System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaElement::referencedElement XmlSchemaElement_t427880856 * ___referencedElement_47; // System.Collections.ArrayList System.Xml.Schema.XmlSchemaElement::substitutingElements ArrayList_t2718874744 * ___substitutingElements_48; // System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaElement::substitutionGroupElement XmlSchemaElement_t427880856 * ___substitutionGroupElement_49; // System.Boolean System.Xml.Schema.XmlSchemaElement::actualIsAbstract bool ___actualIsAbstract_50; // System.Boolean System.Xml.Schema.XmlSchemaElement::actualIsNillable bool ___actualIsNillable_51; // System.String System.Xml.Schema.XmlSchemaElement::validatedDefaultValue String_t* ___validatedDefaultValue_52; // System.String System.Xml.Schema.XmlSchemaElement::validatedFixedValue String_t* ___validatedFixedValue_53; public: inline static int32_t get_offset_of_block_27() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___block_27)); } inline int32_t get_block_27() const { return ___block_27; } inline int32_t* get_address_of_block_27() { return &___block_27; } inline void set_block_27(int32_t value) { ___block_27 = value; } inline static int32_t get_offset_of_constraints_28() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___constraints_28)); } inline XmlSchemaObjectCollection_t1064819932 * get_constraints_28() const { return ___constraints_28; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_constraints_28() { return &___constraints_28; } inline void set_constraints_28(XmlSchemaObjectCollection_t1064819932 * value) { ___constraints_28 = value; Il2CppCodeGenWriteBarrier((&___constraints_28), value); } inline static int32_t get_offset_of_defaultValue_29() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___defaultValue_29)); } inline String_t* get_defaultValue_29() const { return ___defaultValue_29; } inline String_t** get_address_of_defaultValue_29() { return &___defaultValue_29; } inline void set_defaultValue_29(String_t* value) { ___defaultValue_29 = value; Il2CppCodeGenWriteBarrier((&___defaultValue_29), value); } inline static int32_t get_offset_of_elementType_30() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___elementType_30)); } inline RuntimeObject * get_elementType_30() const { return ___elementType_30; } inline RuntimeObject ** get_address_of_elementType_30() { return &___elementType_30; } inline void set_elementType_30(RuntimeObject * value) { ___elementType_30 = value; Il2CppCodeGenWriteBarrier((&___elementType_30), value); } inline static int32_t get_offset_of_elementSchemaType_31() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___elementSchemaType_31)); } inline XmlSchemaType_t2033747345 * get_elementSchemaType_31() const { return ___elementSchemaType_31; } inline XmlSchemaType_t2033747345 ** get_address_of_elementSchemaType_31() { return &___elementSchemaType_31; } inline void set_elementSchemaType_31(XmlSchemaType_t2033747345 * value) { ___elementSchemaType_31 = value; Il2CppCodeGenWriteBarrier((&___elementSchemaType_31), value); } inline static int32_t get_offset_of_final_32() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___final_32)); } inline int32_t get_final_32() const { return ___final_32; } inline int32_t* get_address_of_final_32() { return &___final_32; } inline void set_final_32(int32_t value) { ___final_32 = value; } inline static int32_t get_offset_of_fixedValue_33() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___fixedValue_33)); } inline String_t* get_fixedValue_33() const { return ___fixedValue_33; } inline String_t** get_address_of_fixedValue_33() { return &___fixedValue_33; } inline void set_fixedValue_33(String_t* value) { ___fixedValue_33 = value; Il2CppCodeGenWriteBarrier((&___fixedValue_33), value); } inline static int32_t get_offset_of_form_34() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___form_34)); } inline int32_t get_form_34() const { return ___form_34; } inline int32_t* get_address_of_form_34() { return &___form_34; } inline void set_form_34(int32_t value) { ___form_34 = value; } inline static int32_t get_offset_of_isAbstract_35() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___isAbstract_35)); } inline bool get_isAbstract_35() const { return ___isAbstract_35; } inline bool* get_address_of_isAbstract_35() { return &___isAbstract_35; } inline void set_isAbstract_35(bool value) { ___isAbstract_35 = value; } inline static int32_t get_offset_of_isNillable_36() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___isNillable_36)); } inline bool get_isNillable_36() const { return ___isNillable_36; } inline bool* get_address_of_isNillable_36() { return &___isNillable_36; } inline void set_isNillable_36(bool value) { ___isNillable_36 = value; } inline static int32_t get_offset_of_name_37() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___name_37)); } inline String_t* get_name_37() const { return ___name_37; } inline String_t** get_address_of_name_37() { return &___name_37; } inline void set_name_37(String_t* value) { ___name_37 = value; Il2CppCodeGenWriteBarrier((&___name_37), value); } inline static int32_t get_offset_of_refName_38() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___refName_38)); } inline XmlQualifiedName_t2760654312 * get_refName_38() const { return ___refName_38; } inline XmlQualifiedName_t2760654312 ** get_address_of_refName_38() { return &___refName_38; } inline void set_refName_38(XmlQualifiedName_t2760654312 * value) { ___refName_38 = value; Il2CppCodeGenWriteBarrier((&___refName_38), value); } inline static int32_t get_offset_of_schemaType_39() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___schemaType_39)); } inline XmlSchemaType_t2033747345 * get_schemaType_39() const { return ___schemaType_39; } inline XmlSchemaType_t2033747345 ** get_address_of_schemaType_39() { return &___schemaType_39; } inline void set_schemaType_39(XmlSchemaType_t2033747345 * value) { ___schemaType_39 = value; Il2CppCodeGenWriteBarrier((&___schemaType_39), value); } inline static int32_t get_offset_of_schemaTypeName_40() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___schemaTypeName_40)); } inline XmlQualifiedName_t2760654312 * get_schemaTypeName_40() const { return ___schemaTypeName_40; } inline XmlQualifiedName_t2760654312 ** get_address_of_schemaTypeName_40() { return &___schemaTypeName_40; } inline void set_schemaTypeName_40(XmlQualifiedName_t2760654312 * value) { ___schemaTypeName_40 = value; Il2CppCodeGenWriteBarrier((&___schemaTypeName_40), value); } inline static int32_t get_offset_of_substitutionGroup_41() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___substitutionGroup_41)); } inline XmlQualifiedName_t2760654312 * get_substitutionGroup_41() const { return ___substitutionGroup_41; } inline XmlQualifiedName_t2760654312 ** get_address_of_substitutionGroup_41() { return &___substitutionGroup_41; } inline void set_substitutionGroup_41(XmlQualifiedName_t2760654312 * value) { ___substitutionGroup_41 = value; Il2CppCodeGenWriteBarrier((&___substitutionGroup_41), value); } inline static int32_t get_offset_of_schema_42() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___schema_42)); } inline XmlSchema_t3742557897 * get_schema_42() const { return ___schema_42; } inline XmlSchema_t3742557897 ** get_address_of_schema_42() { return &___schema_42; } inline void set_schema_42(XmlSchema_t3742557897 * value) { ___schema_42 = value; Il2CppCodeGenWriteBarrier((&___schema_42), value); } inline static int32_t get_offset_of_parentIsSchema_43() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___parentIsSchema_43)); } inline bool get_parentIsSchema_43() const { return ___parentIsSchema_43; } inline bool* get_address_of_parentIsSchema_43() { return &___parentIsSchema_43; } inline void set_parentIsSchema_43(bool value) { ___parentIsSchema_43 = value; } inline static int32_t get_offset_of_qName_44() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___qName_44)); } inline XmlQualifiedName_t2760654312 * get_qName_44() const { return ___qName_44; } inline XmlQualifiedName_t2760654312 ** get_address_of_qName_44() { return &___qName_44; } inline void set_qName_44(XmlQualifiedName_t2760654312 * value) { ___qName_44 = value; Il2CppCodeGenWriteBarrier((&___qName_44), value); } inline static int32_t get_offset_of_blockResolved_45() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___blockResolved_45)); } inline int32_t get_blockResolved_45() const { return ___blockResolved_45; } inline int32_t* get_address_of_blockResolved_45() { return &___blockResolved_45; } inline void set_blockResolved_45(int32_t value) { ___blockResolved_45 = value; } inline static int32_t get_offset_of_finalResolved_46() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___finalResolved_46)); } inline int32_t get_finalResolved_46() const { return ___finalResolved_46; } inline int32_t* get_address_of_finalResolved_46() { return &___finalResolved_46; } inline void set_finalResolved_46(int32_t value) { ___finalResolved_46 = value; } inline static int32_t get_offset_of_referencedElement_47() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___referencedElement_47)); } inline XmlSchemaElement_t427880856 * get_referencedElement_47() const { return ___referencedElement_47; } inline XmlSchemaElement_t427880856 ** get_address_of_referencedElement_47() { return &___referencedElement_47; } inline void set_referencedElement_47(XmlSchemaElement_t427880856 * value) { ___referencedElement_47 = value; Il2CppCodeGenWriteBarrier((&___referencedElement_47), value); } inline static int32_t get_offset_of_substitutingElements_48() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___substitutingElements_48)); } inline ArrayList_t2718874744 * get_substitutingElements_48() const { return ___substitutingElements_48; } inline ArrayList_t2718874744 ** get_address_of_substitutingElements_48() { return &___substitutingElements_48; } inline void set_substitutingElements_48(ArrayList_t2718874744 * value) { ___substitutingElements_48 = value; Il2CppCodeGenWriteBarrier((&___substitutingElements_48), value); } inline static int32_t get_offset_of_substitutionGroupElement_49() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___substitutionGroupElement_49)); } inline XmlSchemaElement_t427880856 * get_substitutionGroupElement_49() const { return ___substitutionGroupElement_49; } inline XmlSchemaElement_t427880856 ** get_address_of_substitutionGroupElement_49() { return &___substitutionGroupElement_49; } inline void set_substitutionGroupElement_49(XmlSchemaElement_t427880856 * value) { ___substitutionGroupElement_49 = value; Il2CppCodeGenWriteBarrier((&___substitutionGroupElement_49), value); } inline static int32_t get_offset_of_actualIsAbstract_50() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___actualIsAbstract_50)); } inline bool get_actualIsAbstract_50() const { return ___actualIsAbstract_50; } inline bool* get_address_of_actualIsAbstract_50() { return &___actualIsAbstract_50; } inline void set_actualIsAbstract_50(bool value) { ___actualIsAbstract_50 = value; } inline static int32_t get_offset_of_actualIsNillable_51() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___actualIsNillable_51)); } inline bool get_actualIsNillable_51() const { return ___actualIsNillable_51; } inline bool* get_address_of_actualIsNillable_51() { return &___actualIsNillable_51; } inline void set_actualIsNillable_51(bool value) { ___actualIsNillable_51 = value; } inline static int32_t get_offset_of_validatedDefaultValue_52() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___validatedDefaultValue_52)); } inline String_t* get_validatedDefaultValue_52() const { return ___validatedDefaultValue_52; } inline String_t** get_address_of_validatedDefaultValue_52() { return &___validatedDefaultValue_52; } inline void set_validatedDefaultValue_52(String_t* value) { ___validatedDefaultValue_52 = value; Il2CppCodeGenWriteBarrier((&___validatedDefaultValue_52), value); } inline static int32_t get_offset_of_validatedFixedValue_53() { return static_cast<int32_t>(offsetof(XmlSchemaElement_t427880856, ___validatedFixedValue_53)); } inline String_t* get_validatedFixedValue_53() const { return ___validatedFixedValue_53; } inline String_t** get_address_of_validatedFixedValue_53() { return &___validatedFixedValue_53; } inline void set_validatedFixedValue_53(String_t* value) { ___validatedFixedValue_53 = value; Il2CppCodeGenWriteBarrier((&___validatedFixedValue_53), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAELEMENT_T427880856_H #ifndef XMLSCHEMASIMPLECONTENTRESTRICTION_T2746076865_H #define XMLSCHEMASIMPLECONTENTRESTRICTION_T2746076865_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleContentRestriction struct XmlSchemaSimpleContentRestriction_t2746076865 : public XmlSchemaContent_t1040349258 { public: // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentRestriction::any XmlSchemaAnyAttribute_t963227996 * ___any_17; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentRestriction::attributes XmlSchemaObjectCollection_t1064819932 * ___attributes_18; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleContentRestriction::baseType XmlSchemaSimpleType_t2678868104 * ___baseType_19; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentRestriction::baseTypeName XmlQualifiedName_t2760654312 * ___baseTypeName_20; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentRestriction::facets XmlSchemaObjectCollection_t1064819932 * ___facets_21; public: inline static int32_t get_offset_of_any_17() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentRestriction_t2746076865, ___any_17)); } inline XmlSchemaAnyAttribute_t963227996 * get_any_17() const { return ___any_17; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_any_17() { return &___any_17; } inline void set_any_17(XmlSchemaAnyAttribute_t963227996 * value) { ___any_17 = value; Il2CppCodeGenWriteBarrier((&___any_17), value); } inline static int32_t get_offset_of_attributes_18() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentRestriction_t2746076865, ___attributes_18)); } inline XmlSchemaObjectCollection_t1064819932 * get_attributes_18() const { return ___attributes_18; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_attributes_18() { return &___attributes_18; } inline void set_attributes_18(XmlSchemaObjectCollection_t1064819932 * value) { ___attributes_18 = value; Il2CppCodeGenWriteBarrier((&___attributes_18), value); } inline static int32_t get_offset_of_baseType_19() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentRestriction_t2746076865, ___baseType_19)); } inline XmlSchemaSimpleType_t2678868104 * get_baseType_19() const { return ___baseType_19; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_baseType_19() { return &___baseType_19; } inline void set_baseType_19(XmlSchemaSimpleType_t2678868104 * value) { ___baseType_19 = value; Il2CppCodeGenWriteBarrier((&___baseType_19), value); } inline static int32_t get_offset_of_baseTypeName_20() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentRestriction_t2746076865, ___baseTypeName_20)); } inline XmlQualifiedName_t2760654312 * get_baseTypeName_20() const { return ___baseTypeName_20; } inline XmlQualifiedName_t2760654312 ** get_address_of_baseTypeName_20() { return &___baseTypeName_20; } inline void set_baseTypeName_20(XmlQualifiedName_t2760654312 * value) { ___baseTypeName_20 = value; Il2CppCodeGenWriteBarrier((&___baseTypeName_20), value); } inline static int32_t get_offset_of_facets_21() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentRestriction_t2746076865, ___facets_21)); } inline XmlSchemaObjectCollection_t1064819932 * get_facets_21() const { return ___facets_21; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_facets_21() { return &___facets_21; } inline void set_facets_21(XmlSchemaObjectCollection_t1064819932 * value) { ___facets_21 = value; Il2CppCodeGenWriteBarrier((&___facets_21), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLECONTENTRESTRICTION_T2746076865_H #ifndef XMLSCHEMAMINEXCLUSIVEFACET_T85871952_H #define XMLSCHEMAMINEXCLUSIVEFACET_T85871952_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMinExclusiveFacet struct XmlSchemaMinExclusiveFacet_t85871952 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMINEXCLUSIVEFACET_T85871952_H #ifndef XMLSCHEMAMININCLUSIVEFACET_T18629333_H #define XMLSCHEMAMININCLUSIVEFACET_T18629333_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMinInclusiveFacet struct XmlSchemaMinInclusiveFacet_t18629333 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMININCLUSIVEFACET_T18629333_H #ifndef XMLSCHEMASIMPLECONTENTEXTENSION_T1269327470_H #define XMLSCHEMASIMPLECONTENTEXTENSION_T1269327470_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleContentExtension struct XmlSchemaSimpleContentExtension_t1269327470 : public XmlSchemaContent_t1040349258 { public: // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentExtension::any XmlSchemaAnyAttribute_t963227996 * ___any_17; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentExtension::attributes XmlSchemaObjectCollection_t1064819932 * ___attributes_18; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentExtension::baseTypeName XmlQualifiedName_t2760654312 * ___baseTypeName_19; public: inline static int32_t get_offset_of_any_17() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentExtension_t1269327470, ___any_17)); } inline XmlSchemaAnyAttribute_t963227996 * get_any_17() const { return ___any_17; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_any_17() { return &___any_17; } inline void set_any_17(XmlSchemaAnyAttribute_t963227996 * value) { ___any_17 = value; Il2CppCodeGenWriteBarrier((&___any_17), value); } inline static int32_t get_offset_of_attributes_18() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentExtension_t1269327470, ___attributes_18)); } inline XmlSchemaObjectCollection_t1064819932 * get_attributes_18() const { return ___attributes_18; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_attributes_18() { return &___attributes_18; } inline void set_attributes_18(XmlSchemaObjectCollection_t1064819932 * value) { ___attributes_18 = value; Il2CppCodeGenWriteBarrier((&___attributes_18), value); } inline static int32_t get_offset_of_baseTypeName_19() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleContentExtension_t1269327470, ___baseTypeName_19)); } inline XmlQualifiedName_t2760654312 * get_baseTypeName_19() const { return ___baseTypeName_19; } inline XmlQualifiedName_t2760654312 ** get_address_of_baseTypeName_19() { return &___baseTypeName_19; } inline void set_baseTypeName_19(XmlQualifiedName_t2760654312 * value) { ___baseTypeName_19 = value; Il2CppCodeGenWriteBarrier((&___baseTypeName_19), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLECONTENTEXTENSION_T1269327470_H #ifndef XMLSCHEMACOMPLEXCONTENT_T3528540772_H #define XMLSCHEMACOMPLEXCONTENT_T3528540772_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaComplexContent struct XmlSchemaComplexContent_t3528540772 : public XmlSchemaContentModel_t602185179 { public: // System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaComplexContent::content XmlSchemaContent_t1040349258 * ___content_16; // System.Boolean System.Xml.Schema.XmlSchemaComplexContent::isMixed bool ___isMixed_17; public: inline static int32_t get_offset_of_content_16() { return static_cast<int32_t>(offsetof(XmlSchemaComplexContent_t3528540772, ___content_16)); } inline XmlSchemaContent_t1040349258 * get_content_16() const { return ___content_16; } inline XmlSchemaContent_t1040349258 ** get_address_of_content_16() { return &___content_16; } inline void set_content_16(XmlSchemaContent_t1040349258 * value) { ___content_16 = value; Il2CppCodeGenWriteBarrier((&___content_16), value); } inline static int32_t get_offset_of_isMixed_17() { return static_cast<int32_t>(offsetof(XmlSchemaComplexContent_t3528540772, ___isMixed_17)); } inline bool get_isMixed_17() const { return ___isMixed_17; } inline bool* get_address_of_isMixed_17() { return &___isMixed_17; } inline void set_isMixed_17(bool value) { ___isMixed_17 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACOMPLEXCONTENT_T3528540772_H #ifndef XSDDECIMAL_T1288601093_H #define XSDDECIMAL_T1288601093_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdDecimal struct XsdDecimal_t1288601093 : public XsdAnySimpleType_t1257864485 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDDECIMAL_T1288601093_H #ifndef XSDDOUBLE_T3324344982_H #define XSDDOUBLE_T3324344982_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdDouble struct XsdDouble_t3324344982 : public XsdAnySimpleType_t1257864485 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDDOUBLE_T3324344982_H #ifndef XMLSCHEMAGROUPREF_T1314446647_H #define XMLSCHEMAGROUPREF_T1314446647_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaGroupRef struct XmlSchemaGroupRef_t1314446647 : public XmlSchemaParticle_t3828501457 { public: // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaGroupRef::schema XmlSchema_t3742557897 * ___schema_27; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaGroupRef::refName XmlQualifiedName_t2760654312 * ___refName_28; // System.Xml.Schema.XmlSchemaGroup System.Xml.Schema.XmlSchemaGroupRef::referencedGroup XmlSchemaGroup_t1441741786 * ___referencedGroup_29; // System.Boolean System.Xml.Schema.XmlSchemaGroupRef::busy bool ___busy_30; public: inline static int32_t get_offset_of_schema_27() { return static_cast<int32_t>(offsetof(XmlSchemaGroupRef_t1314446647, ___schema_27)); } inline XmlSchema_t3742557897 * get_schema_27() const { return ___schema_27; } inline XmlSchema_t3742557897 ** get_address_of_schema_27() { return &___schema_27; } inline void set_schema_27(XmlSchema_t3742557897 * value) { ___schema_27 = value; Il2CppCodeGenWriteBarrier((&___schema_27), value); } inline static int32_t get_offset_of_refName_28() { return static_cast<int32_t>(offsetof(XmlSchemaGroupRef_t1314446647, ___refName_28)); } inline XmlQualifiedName_t2760654312 * get_refName_28() const { return ___refName_28; } inline XmlQualifiedName_t2760654312 ** get_address_of_refName_28() { return &___refName_28; } inline void set_refName_28(XmlQualifiedName_t2760654312 * value) { ___refName_28 = value; Il2CppCodeGenWriteBarrier((&___refName_28), value); } inline static int32_t get_offset_of_referencedGroup_29() { return static_cast<int32_t>(offsetof(XmlSchemaGroupRef_t1314446647, ___referencedGroup_29)); } inline XmlSchemaGroup_t1441741786 * get_referencedGroup_29() const { return ___referencedGroup_29; } inline XmlSchemaGroup_t1441741786 ** get_address_of_referencedGroup_29() { return &___referencedGroup_29; } inline void set_referencedGroup_29(XmlSchemaGroup_t1441741786 * value) { ___referencedGroup_29 = value; Il2CppCodeGenWriteBarrier((&___referencedGroup_29), value); } inline static int32_t get_offset_of_busy_30() { return static_cast<int32_t>(offsetof(XmlSchemaGroupRef_t1314446647, ___busy_30)); } inline bool get_busy_30() const { return ___busy_30; } inline bool* get_address_of_busy_30() { return &___busy_30; } inline void set_busy_30(bool value) { ___busy_30 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAGROUPREF_T1314446647_H #ifndef XMLSCHEMACOMPLEXTYPE_T3740801802_H #define XMLSCHEMACOMPLEXTYPE_T3740801802_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaComplexType struct XmlSchemaComplexType_t3740801802 : public XmlSchemaType_t2033747345 { public: // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaComplexType::anyAttribute XmlSchemaAnyAttribute_t963227996 * ___anyAttribute_28; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaComplexType::attributes XmlSchemaObjectCollection_t1064819932 * ___attributes_29; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaComplexType::attributeUses XmlSchemaObjectTable_t2546974348 * ___attributeUses_30; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaComplexType::attributeWildcard XmlSchemaAnyAttribute_t963227996 * ___attributeWildcard_31; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaComplexType::block int32_t ___block_32; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaComplexType::blockResolved int32_t ___blockResolved_33; // System.Xml.Schema.XmlSchemaContentModel System.Xml.Schema.XmlSchemaComplexType::contentModel XmlSchemaContentModel_t602185179 * ___contentModel_34; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaComplexType::validatableParticle XmlSchemaParticle_t3828501457 * ___validatableParticle_35; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaComplexType::contentTypeParticle XmlSchemaParticle_t3828501457 * ___contentTypeParticle_36; // System.Boolean System.Xml.Schema.XmlSchemaComplexType::isAbstract bool ___isAbstract_37; // System.Boolean System.Xml.Schema.XmlSchemaComplexType::isMixed bool ___isMixed_38; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaComplexType::particle XmlSchemaParticle_t3828501457 * ___particle_39; // System.Xml.Schema.XmlSchemaContentType System.Xml.Schema.XmlSchemaComplexType::resolvedContentType int32_t ___resolvedContentType_40; // System.Boolean System.Xml.Schema.XmlSchemaComplexType::ValidatedIsAbstract bool ___ValidatedIsAbstract_41; // System.Guid System.Xml.Schema.XmlSchemaComplexType::CollectProcessId Guid_t ___CollectProcessId_44; public: inline static int32_t get_offset_of_anyAttribute_28() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___anyAttribute_28)); } inline XmlSchemaAnyAttribute_t963227996 * get_anyAttribute_28() const { return ___anyAttribute_28; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_anyAttribute_28() { return &___anyAttribute_28; } inline void set_anyAttribute_28(XmlSchemaAnyAttribute_t963227996 * value) { ___anyAttribute_28 = value; Il2CppCodeGenWriteBarrier((&___anyAttribute_28), value); } inline static int32_t get_offset_of_attributes_29() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___attributes_29)); } inline XmlSchemaObjectCollection_t1064819932 * get_attributes_29() const { return ___attributes_29; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_attributes_29() { return &___attributes_29; } inline void set_attributes_29(XmlSchemaObjectCollection_t1064819932 * value) { ___attributes_29 = value; Il2CppCodeGenWriteBarrier((&___attributes_29), value); } inline static int32_t get_offset_of_attributeUses_30() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___attributeUses_30)); } inline XmlSchemaObjectTable_t2546974348 * get_attributeUses_30() const { return ___attributeUses_30; } inline XmlSchemaObjectTable_t2546974348 ** get_address_of_attributeUses_30() { return &___attributeUses_30; } inline void set_attributeUses_30(XmlSchemaObjectTable_t2546974348 * value) { ___attributeUses_30 = value; Il2CppCodeGenWriteBarrier((&___attributeUses_30), value); } inline static int32_t get_offset_of_attributeWildcard_31() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___attributeWildcard_31)); } inline XmlSchemaAnyAttribute_t963227996 * get_attributeWildcard_31() const { return ___attributeWildcard_31; } inline XmlSchemaAnyAttribute_t963227996 ** get_address_of_attributeWildcard_31() { return &___attributeWildcard_31; } inline void set_attributeWildcard_31(XmlSchemaAnyAttribute_t963227996 * value) { ___attributeWildcard_31 = value; Il2CppCodeGenWriteBarrier((&___attributeWildcard_31), value); } inline static int32_t get_offset_of_block_32() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___block_32)); } inline int32_t get_block_32() const { return ___block_32; } inline int32_t* get_address_of_block_32() { return &___block_32; } inline void set_block_32(int32_t value) { ___block_32 = value; } inline static int32_t get_offset_of_blockResolved_33() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___blockResolved_33)); } inline int32_t get_blockResolved_33() const { return ___blockResolved_33; } inline int32_t* get_address_of_blockResolved_33() { return &___blockResolved_33; } inline void set_blockResolved_33(int32_t value) { ___blockResolved_33 = value; } inline static int32_t get_offset_of_contentModel_34() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___contentModel_34)); } inline XmlSchemaContentModel_t602185179 * get_contentModel_34() const { return ___contentModel_34; } inline XmlSchemaContentModel_t602185179 ** get_address_of_contentModel_34() { return &___contentModel_34; } inline void set_contentModel_34(XmlSchemaContentModel_t602185179 * value) { ___contentModel_34 = value; Il2CppCodeGenWriteBarrier((&___contentModel_34), value); } inline static int32_t get_offset_of_validatableParticle_35() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___validatableParticle_35)); } inline XmlSchemaParticle_t3828501457 * get_validatableParticle_35() const { return ___validatableParticle_35; } inline XmlSchemaParticle_t3828501457 ** get_address_of_validatableParticle_35() { return &___validatableParticle_35; } inline void set_validatableParticle_35(XmlSchemaParticle_t3828501457 * value) { ___validatableParticle_35 = value; Il2CppCodeGenWriteBarrier((&___validatableParticle_35), value); } inline static int32_t get_offset_of_contentTypeParticle_36() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___contentTypeParticle_36)); } inline XmlSchemaParticle_t3828501457 * get_contentTypeParticle_36() const { return ___contentTypeParticle_36; } inline XmlSchemaParticle_t3828501457 ** get_address_of_contentTypeParticle_36() { return &___contentTypeParticle_36; } inline void set_contentTypeParticle_36(XmlSchemaParticle_t3828501457 * value) { ___contentTypeParticle_36 = value; Il2CppCodeGenWriteBarrier((&___contentTypeParticle_36), value); } inline static int32_t get_offset_of_isAbstract_37() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___isAbstract_37)); } inline bool get_isAbstract_37() const { return ___isAbstract_37; } inline bool* get_address_of_isAbstract_37() { return &___isAbstract_37; } inline void set_isAbstract_37(bool value) { ___isAbstract_37 = value; } inline static int32_t get_offset_of_isMixed_38() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___isMixed_38)); } inline bool get_isMixed_38() const { return ___isMixed_38; } inline bool* get_address_of_isMixed_38() { return &___isMixed_38; } inline void set_isMixed_38(bool value) { ___isMixed_38 = value; } inline static int32_t get_offset_of_particle_39() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___particle_39)); } inline XmlSchemaParticle_t3828501457 * get_particle_39() const { return ___particle_39; } inline XmlSchemaParticle_t3828501457 ** get_address_of_particle_39() { return &___particle_39; } inline void set_particle_39(XmlSchemaParticle_t3828501457 * value) { ___particle_39 = value; Il2CppCodeGenWriteBarrier((&___particle_39), value); } inline static int32_t get_offset_of_resolvedContentType_40() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___resolvedContentType_40)); } inline int32_t get_resolvedContentType_40() const { return ___resolvedContentType_40; } inline int32_t* get_address_of_resolvedContentType_40() { return &___resolvedContentType_40; } inline void set_resolvedContentType_40(int32_t value) { ___resolvedContentType_40 = value; } inline static int32_t get_offset_of_ValidatedIsAbstract_41() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___ValidatedIsAbstract_41)); } inline bool get_ValidatedIsAbstract_41() const { return ___ValidatedIsAbstract_41; } inline bool* get_address_of_ValidatedIsAbstract_41() { return &___ValidatedIsAbstract_41; } inline void set_ValidatedIsAbstract_41(bool value) { ___ValidatedIsAbstract_41 = value; } inline static int32_t get_offset_of_CollectProcessId_44() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802, ___CollectProcessId_44)); } inline Guid_t get_CollectProcessId_44() const { return ___CollectProcessId_44; } inline Guid_t * get_address_of_CollectProcessId_44() { return &___CollectProcessId_44; } inline void set_CollectProcessId_44(Guid_t value) { ___CollectProcessId_44 = value; } }; struct XmlSchemaComplexType_t3740801802_StaticFields { public: // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::anyType XmlSchemaComplexType_t3740801802 * ___anyType_42; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaComplexType::AnyTypeName XmlQualifiedName_t2760654312 * ___AnyTypeName_43; public: inline static int32_t get_offset_of_anyType_42() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802_StaticFields, ___anyType_42)); } inline XmlSchemaComplexType_t3740801802 * get_anyType_42() const { return ___anyType_42; } inline XmlSchemaComplexType_t3740801802 ** get_address_of_anyType_42() { return &___anyType_42; } inline void set_anyType_42(XmlSchemaComplexType_t3740801802 * value) { ___anyType_42 = value; Il2CppCodeGenWriteBarrier((&___anyType_42), value); } inline static int32_t get_offset_of_AnyTypeName_43() { return static_cast<int32_t>(offsetof(XmlSchemaComplexType_t3740801802_StaticFields, ___AnyTypeName_43)); } inline XmlQualifiedName_t2760654312 * get_AnyTypeName_43() const { return ___AnyTypeName_43; } inline XmlQualifiedName_t2760654312 ** get_address_of_AnyTypeName_43() { return &___AnyTypeName_43; } inline void set_AnyTypeName_43(XmlQualifiedName_t2760654312 * value) { ___AnyTypeName_43 = value; Il2CppCodeGenWriteBarrier((&___AnyTypeName_43), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACOMPLEXTYPE_T3740801802_H #ifndef XMLSCHEMASIMPLETYPE_T2678868104_H #define XMLSCHEMASIMPLETYPE_T2678868104_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSimpleType struct XmlSchemaSimpleType_t2678868104 : public XmlSchemaType_t2033747345 { public: // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::content XmlSchemaSimpleTypeContent_t599285223 * ___content_29; // System.Boolean System.Xml.Schema.XmlSchemaSimpleType::islocal bool ___islocal_30; // System.Boolean System.Xml.Schema.XmlSchemaSimpleType::recursed bool ___recursed_31; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaSimpleType::variety int32_t ___variety_32; public: inline static int32_t get_offset_of_content_29() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104, ___content_29)); } inline XmlSchemaSimpleTypeContent_t599285223 * get_content_29() const { return ___content_29; } inline XmlSchemaSimpleTypeContent_t599285223 ** get_address_of_content_29() { return &___content_29; } inline void set_content_29(XmlSchemaSimpleTypeContent_t599285223 * value) { ___content_29 = value; Il2CppCodeGenWriteBarrier((&___content_29), value); } inline static int32_t get_offset_of_islocal_30() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104, ___islocal_30)); } inline bool get_islocal_30() const { return ___islocal_30; } inline bool* get_address_of_islocal_30() { return &___islocal_30; } inline void set_islocal_30(bool value) { ___islocal_30 = value; } inline static int32_t get_offset_of_recursed_31() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104, ___recursed_31)); } inline bool get_recursed_31() const { return ___recursed_31; } inline bool* get_address_of_recursed_31() { return &___recursed_31; } inline void set_recursed_31(bool value) { ___recursed_31 = value; } inline static int32_t get_offset_of_variety_32() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104, ___variety_32)); } inline int32_t get_variety_32() const { return ___variety_32; } inline int32_t* get_address_of_variety_32() { return &___variety_32; } inline void set_variety_32(int32_t value) { ___variety_32 = value; } }; struct XmlSchemaSimpleType_t2678868104_StaticFields { public: // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::schemaLocationType XmlSchemaSimpleType_t2678868104 * ___schemaLocationType_28; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsAnySimpleType XmlSchemaSimpleType_t2678868104 * ___XsAnySimpleType_33; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsString XmlSchemaSimpleType_t2678868104 * ___XsString_34; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsBoolean XmlSchemaSimpleType_t2678868104 * ___XsBoolean_35; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsDecimal XmlSchemaSimpleType_t2678868104 * ___XsDecimal_36; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsFloat XmlSchemaSimpleType_t2678868104 * ___XsFloat_37; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsDouble XmlSchemaSimpleType_t2678868104 * ___XsDouble_38; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsDuration XmlSchemaSimpleType_t2678868104 * ___XsDuration_39; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsDateTime XmlSchemaSimpleType_t2678868104 * ___XsDateTime_40; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsTime XmlSchemaSimpleType_t2678868104 * ___XsTime_41; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsDate XmlSchemaSimpleType_t2678868104 * ___XsDate_42; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsGYearMonth XmlSchemaSimpleType_t2678868104 * ___XsGYearMonth_43; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsGYear XmlSchemaSimpleType_t2678868104 * ___XsGYear_44; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsGMonthDay XmlSchemaSimpleType_t2678868104 * ___XsGMonthDay_45; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsGDay XmlSchemaSimpleType_t2678868104 * ___XsGDay_46; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsGMonth XmlSchemaSimpleType_t2678868104 * ___XsGMonth_47; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsHexBinary XmlSchemaSimpleType_t2678868104 * ___XsHexBinary_48; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsBase64Binary XmlSchemaSimpleType_t2678868104 * ___XsBase64Binary_49; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsAnyUri XmlSchemaSimpleType_t2678868104 * ___XsAnyUri_50; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsQName XmlSchemaSimpleType_t2678868104 * ___XsQName_51; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNotation XmlSchemaSimpleType_t2678868104 * ___XsNotation_52; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNormalizedString XmlSchemaSimpleType_t2678868104 * ___XsNormalizedString_53; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsToken XmlSchemaSimpleType_t2678868104 * ___XsToken_54; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsLanguage XmlSchemaSimpleType_t2678868104 * ___XsLanguage_55; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNMToken XmlSchemaSimpleType_t2678868104 * ___XsNMToken_56; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNMTokens XmlSchemaSimpleType_t2678868104 * ___XsNMTokens_57; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsName XmlSchemaSimpleType_t2678868104 * ___XsName_58; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNCName XmlSchemaSimpleType_t2678868104 * ___XsNCName_59; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsID XmlSchemaSimpleType_t2678868104 * ___XsID_60; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsIDRef XmlSchemaSimpleType_t2678868104 * ___XsIDRef_61; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsIDRefs XmlSchemaSimpleType_t2678868104 * ___XsIDRefs_62; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsEntity XmlSchemaSimpleType_t2678868104 * ___XsEntity_63; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsEntities XmlSchemaSimpleType_t2678868104 * ___XsEntities_64; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsInteger XmlSchemaSimpleType_t2678868104 * ___XsInteger_65; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNonPositiveInteger XmlSchemaSimpleType_t2678868104 * ___XsNonPositiveInteger_66; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNegativeInteger XmlSchemaSimpleType_t2678868104 * ___XsNegativeInteger_67; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsLong XmlSchemaSimpleType_t2678868104 * ___XsLong_68; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsInt XmlSchemaSimpleType_t2678868104 * ___XsInt_69; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsShort XmlSchemaSimpleType_t2678868104 * ___XsShort_70; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsByte XmlSchemaSimpleType_t2678868104 * ___XsByte_71; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsNonNegativeInteger XmlSchemaSimpleType_t2678868104 * ___XsNonNegativeInteger_72; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsUnsignedLong XmlSchemaSimpleType_t2678868104 * ___XsUnsignedLong_73; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsUnsignedInt XmlSchemaSimpleType_t2678868104 * ___XsUnsignedInt_74; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsUnsignedShort XmlSchemaSimpleType_t2678868104 * ___XsUnsignedShort_75; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsUnsignedByte XmlSchemaSimpleType_t2678868104 * ___XsUnsignedByte_76; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XsPositiveInteger XmlSchemaSimpleType_t2678868104 * ___XsPositiveInteger_77; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XdtUntypedAtomic XmlSchemaSimpleType_t2678868104 * ___XdtUntypedAtomic_78; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XdtAnyAtomicType XmlSchemaSimpleType_t2678868104 * ___XdtAnyAtomicType_79; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XdtYearMonthDuration XmlSchemaSimpleType_t2678868104 * ___XdtYearMonthDuration_80; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::XdtDayTimeDuration XmlSchemaSimpleType_t2678868104 * ___XdtDayTimeDuration_81; public: inline static int32_t get_offset_of_schemaLocationType_28() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___schemaLocationType_28)); } inline XmlSchemaSimpleType_t2678868104 * get_schemaLocationType_28() const { return ___schemaLocationType_28; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_schemaLocationType_28() { return &___schemaLocationType_28; } inline void set_schemaLocationType_28(XmlSchemaSimpleType_t2678868104 * value) { ___schemaLocationType_28 = value; Il2CppCodeGenWriteBarrier((&___schemaLocationType_28), value); } inline static int32_t get_offset_of_XsAnySimpleType_33() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsAnySimpleType_33)); } inline XmlSchemaSimpleType_t2678868104 * get_XsAnySimpleType_33() const { return ___XsAnySimpleType_33; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsAnySimpleType_33() { return &___XsAnySimpleType_33; } inline void set_XsAnySimpleType_33(XmlSchemaSimpleType_t2678868104 * value) { ___XsAnySimpleType_33 = value; Il2CppCodeGenWriteBarrier((&___XsAnySimpleType_33), value); } inline static int32_t get_offset_of_XsString_34() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsString_34)); } inline XmlSchemaSimpleType_t2678868104 * get_XsString_34() const { return ___XsString_34; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsString_34() { return &___XsString_34; } inline void set_XsString_34(XmlSchemaSimpleType_t2678868104 * value) { ___XsString_34 = value; Il2CppCodeGenWriteBarrier((&___XsString_34), value); } inline static int32_t get_offset_of_XsBoolean_35() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsBoolean_35)); } inline XmlSchemaSimpleType_t2678868104 * get_XsBoolean_35() const { return ___XsBoolean_35; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsBoolean_35() { return &___XsBoolean_35; } inline void set_XsBoolean_35(XmlSchemaSimpleType_t2678868104 * value) { ___XsBoolean_35 = value; Il2CppCodeGenWriteBarrier((&___XsBoolean_35), value); } inline static int32_t get_offset_of_XsDecimal_36() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsDecimal_36)); } inline XmlSchemaSimpleType_t2678868104 * get_XsDecimal_36() const { return ___XsDecimal_36; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsDecimal_36() { return &___XsDecimal_36; } inline void set_XsDecimal_36(XmlSchemaSimpleType_t2678868104 * value) { ___XsDecimal_36 = value; Il2CppCodeGenWriteBarrier((&___XsDecimal_36), value); } inline static int32_t get_offset_of_XsFloat_37() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsFloat_37)); } inline XmlSchemaSimpleType_t2678868104 * get_XsFloat_37() const { return ___XsFloat_37; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsFloat_37() { return &___XsFloat_37; } inline void set_XsFloat_37(XmlSchemaSimpleType_t2678868104 * value) { ___XsFloat_37 = value; Il2CppCodeGenWriteBarrier((&___XsFloat_37), value); } inline static int32_t get_offset_of_XsDouble_38() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsDouble_38)); } inline XmlSchemaSimpleType_t2678868104 * get_XsDouble_38() const { return ___XsDouble_38; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsDouble_38() { return &___XsDouble_38; } inline void set_XsDouble_38(XmlSchemaSimpleType_t2678868104 * value) { ___XsDouble_38 = value; Il2CppCodeGenWriteBarrier((&___XsDouble_38), value); } inline static int32_t get_offset_of_XsDuration_39() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsDuration_39)); } inline XmlSchemaSimpleType_t2678868104 * get_XsDuration_39() const { return ___XsDuration_39; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsDuration_39() { return &___XsDuration_39; } inline void set_XsDuration_39(XmlSchemaSimpleType_t2678868104 * value) { ___XsDuration_39 = value; Il2CppCodeGenWriteBarrier((&___XsDuration_39), value); } inline static int32_t get_offset_of_XsDateTime_40() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsDateTime_40)); } inline XmlSchemaSimpleType_t2678868104 * get_XsDateTime_40() const { return ___XsDateTime_40; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsDateTime_40() { return &___XsDateTime_40; } inline void set_XsDateTime_40(XmlSchemaSimpleType_t2678868104 * value) { ___XsDateTime_40 = value; Il2CppCodeGenWriteBarrier((&___XsDateTime_40), value); } inline static int32_t get_offset_of_XsTime_41() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsTime_41)); } inline XmlSchemaSimpleType_t2678868104 * get_XsTime_41() const { return ___XsTime_41; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsTime_41() { return &___XsTime_41; } inline void set_XsTime_41(XmlSchemaSimpleType_t2678868104 * value) { ___XsTime_41 = value; Il2CppCodeGenWriteBarrier((&___XsTime_41), value); } inline static int32_t get_offset_of_XsDate_42() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsDate_42)); } inline XmlSchemaSimpleType_t2678868104 * get_XsDate_42() const { return ___XsDate_42; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsDate_42() { return &___XsDate_42; } inline void set_XsDate_42(XmlSchemaSimpleType_t2678868104 * value) { ___XsDate_42 = value; Il2CppCodeGenWriteBarrier((&___XsDate_42), value); } inline static int32_t get_offset_of_XsGYearMonth_43() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsGYearMonth_43)); } inline XmlSchemaSimpleType_t2678868104 * get_XsGYearMonth_43() const { return ___XsGYearMonth_43; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsGYearMonth_43() { return &___XsGYearMonth_43; } inline void set_XsGYearMonth_43(XmlSchemaSimpleType_t2678868104 * value) { ___XsGYearMonth_43 = value; Il2CppCodeGenWriteBarrier((&___XsGYearMonth_43), value); } inline static int32_t get_offset_of_XsGYear_44() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsGYear_44)); } inline XmlSchemaSimpleType_t2678868104 * get_XsGYear_44() const { return ___XsGYear_44; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsGYear_44() { return &___XsGYear_44; } inline void set_XsGYear_44(XmlSchemaSimpleType_t2678868104 * value) { ___XsGYear_44 = value; Il2CppCodeGenWriteBarrier((&___XsGYear_44), value); } inline static int32_t get_offset_of_XsGMonthDay_45() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsGMonthDay_45)); } inline XmlSchemaSimpleType_t2678868104 * get_XsGMonthDay_45() const { return ___XsGMonthDay_45; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsGMonthDay_45() { return &___XsGMonthDay_45; } inline void set_XsGMonthDay_45(XmlSchemaSimpleType_t2678868104 * value) { ___XsGMonthDay_45 = value; Il2CppCodeGenWriteBarrier((&___XsGMonthDay_45), value); } inline static int32_t get_offset_of_XsGDay_46() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsGDay_46)); } inline XmlSchemaSimpleType_t2678868104 * get_XsGDay_46() const { return ___XsGDay_46; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsGDay_46() { return &___XsGDay_46; } inline void set_XsGDay_46(XmlSchemaSimpleType_t2678868104 * value) { ___XsGDay_46 = value; Il2CppCodeGenWriteBarrier((&___XsGDay_46), value); } inline static int32_t get_offset_of_XsGMonth_47() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsGMonth_47)); } inline XmlSchemaSimpleType_t2678868104 * get_XsGMonth_47() const { return ___XsGMonth_47; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsGMonth_47() { return &___XsGMonth_47; } inline void set_XsGMonth_47(XmlSchemaSimpleType_t2678868104 * value) { ___XsGMonth_47 = value; Il2CppCodeGenWriteBarrier((&___XsGMonth_47), value); } inline static int32_t get_offset_of_XsHexBinary_48() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsHexBinary_48)); } inline XmlSchemaSimpleType_t2678868104 * get_XsHexBinary_48() const { return ___XsHexBinary_48; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsHexBinary_48() { return &___XsHexBinary_48; } inline void set_XsHexBinary_48(XmlSchemaSimpleType_t2678868104 * value) { ___XsHexBinary_48 = value; Il2CppCodeGenWriteBarrier((&___XsHexBinary_48), value); } inline static int32_t get_offset_of_XsBase64Binary_49() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsBase64Binary_49)); } inline XmlSchemaSimpleType_t2678868104 * get_XsBase64Binary_49() const { return ___XsBase64Binary_49; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsBase64Binary_49() { return &___XsBase64Binary_49; } inline void set_XsBase64Binary_49(XmlSchemaSimpleType_t2678868104 * value) { ___XsBase64Binary_49 = value; Il2CppCodeGenWriteBarrier((&___XsBase64Binary_49), value); } inline static int32_t get_offset_of_XsAnyUri_50() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsAnyUri_50)); } inline XmlSchemaSimpleType_t2678868104 * get_XsAnyUri_50() const { return ___XsAnyUri_50; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsAnyUri_50() { return &___XsAnyUri_50; } inline void set_XsAnyUri_50(XmlSchemaSimpleType_t2678868104 * value) { ___XsAnyUri_50 = value; Il2CppCodeGenWriteBarrier((&___XsAnyUri_50), value); } inline static int32_t get_offset_of_XsQName_51() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsQName_51)); } inline XmlSchemaSimpleType_t2678868104 * get_XsQName_51() const { return ___XsQName_51; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsQName_51() { return &___XsQName_51; } inline void set_XsQName_51(XmlSchemaSimpleType_t2678868104 * value) { ___XsQName_51 = value; Il2CppCodeGenWriteBarrier((&___XsQName_51), value); } inline static int32_t get_offset_of_XsNotation_52() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNotation_52)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNotation_52() const { return ___XsNotation_52; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNotation_52() { return &___XsNotation_52; } inline void set_XsNotation_52(XmlSchemaSimpleType_t2678868104 * value) { ___XsNotation_52 = value; Il2CppCodeGenWriteBarrier((&___XsNotation_52), value); } inline static int32_t get_offset_of_XsNormalizedString_53() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNormalizedString_53)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNormalizedString_53() const { return ___XsNormalizedString_53; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNormalizedString_53() { return &___XsNormalizedString_53; } inline void set_XsNormalizedString_53(XmlSchemaSimpleType_t2678868104 * value) { ___XsNormalizedString_53 = value; Il2CppCodeGenWriteBarrier((&___XsNormalizedString_53), value); } inline static int32_t get_offset_of_XsToken_54() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsToken_54)); } inline XmlSchemaSimpleType_t2678868104 * get_XsToken_54() const { return ___XsToken_54; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsToken_54() { return &___XsToken_54; } inline void set_XsToken_54(XmlSchemaSimpleType_t2678868104 * value) { ___XsToken_54 = value; Il2CppCodeGenWriteBarrier((&___XsToken_54), value); } inline static int32_t get_offset_of_XsLanguage_55() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsLanguage_55)); } inline XmlSchemaSimpleType_t2678868104 * get_XsLanguage_55() const { return ___XsLanguage_55; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsLanguage_55() { return &___XsLanguage_55; } inline void set_XsLanguage_55(XmlSchemaSimpleType_t2678868104 * value) { ___XsLanguage_55 = value; Il2CppCodeGenWriteBarrier((&___XsLanguage_55), value); } inline static int32_t get_offset_of_XsNMToken_56() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNMToken_56)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNMToken_56() const { return ___XsNMToken_56; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNMToken_56() { return &___XsNMToken_56; } inline void set_XsNMToken_56(XmlSchemaSimpleType_t2678868104 * value) { ___XsNMToken_56 = value; Il2CppCodeGenWriteBarrier((&___XsNMToken_56), value); } inline static int32_t get_offset_of_XsNMTokens_57() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNMTokens_57)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNMTokens_57() const { return ___XsNMTokens_57; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNMTokens_57() { return &___XsNMTokens_57; } inline void set_XsNMTokens_57(XmlSchemaSimpleType_t2678868104 * value) { ___XsNMTokens_57 = value; Il2CppCodeGenWriteBarrier((&___XsNMTokens_57), value); } inline static int32_t get_offset_of_XsName_58() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsName_58)); } inline XmlSchemaSimpleType_t2678868104 * get_XsName_58() const { return ___XsName_58; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsName_58() { return &___XsName_58; } inline void set_XsName_58(XmlSchemaSimpleType_t2678868104 * value) { ___XsName_58 = value; Il2CppCodeGenWriteBarrier((&___XsName_58), value); } inline static int32_t get_offset_of_XsNCName_59() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNCName_59)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNCName_59() const { return ___XsNCName_59; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNCName_59() { return &___XsNCName_59; } inline void set_XsNCName_59(XmlSchemaSimpleType_t2678868104 * value) { ___XsNCName_59 = value; Il2CppCodeGenWriteBarrier((&___XsNCName_59), value); } inline static int32_t get_offset_of_XsID_60() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsID_60)); } inline XmlSchemaSimpleType_t2678868104 * get_XsID_60() const { return ___XsID_60; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsID_60() { return &___XsID_60; } inline void set_XsID_60(XmlSchemaSimpleType_t2678868104 * value) { ___XsID_60 = value; Il2CppCodeGenWriteBarrier((&___XsID_60), value); } inline static int32_t get_offset_of_XsIDRef_61() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsIDRef_61)); } inline XmlSchemaSimpleType_t2678868104 * get_XsIDRef_61() const { return ___XsIDRef_61; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsIDRef_61() { return &___XsIDRef_61; } inline void set_XsIDRef_61(XmlSchemaSimpleType_t2678868104 * value) { ___XsIDRef_61 = value; Il2CppCodeGenWriteBarrier((&___XsIDRef_61), value); } inline static int32_t get_offset_of_XsIDRefs_62() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsIDRefs_62)); } inline XmlSchemaSimpleType_t2678868104 * get_XsIDRefs_62() const { return ___XsIDRefs_62; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsIDRefs_62() { return &___XsIDRefs_62; } inline void set_XsIDRefs_62(XmlSchemaSimpleType_t2678868104 * value) { ___XsIDRefs_62 = value; Il2CppCodeGenWriteBarrier((&___XsIDRefs_62), value); } inline static int32_t get_offset_of_XsEntity_63() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsEntity_63)); } inline XmlSchemaSimpleType_t2678868104 * get_XsEntity_63() const { return ___XsEntity_63; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsEntity_63() { return &___XsEntity_63; } inline void set_XsEntity_63(XmlSchemaSimpleType_t2678868104 * value) { ___XsEntity_63 = value; Il2CppCodeGenWriteBarrier((&___XsEntity_63), value); } inline static int32_t get_offset_of_XsEntities_64() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsEntities_64)); } inline XmlSchemaSimpleType_t2678868104 * get_XsEntities_64() const { return ___XsEntities_64; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsEntities_64() { return &___XsEntities_64; } inline void set_XsEntities_64(XmlSchemaSimpleType_t2678868104 * value) { ___XsEntities_64 = value; Il2CppCodeGenWriteBarrier((&___XsEntities_64), value); } inline static int32_t get_offset_of_XsInteger_65() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsInteger_65)); } inline XmlSchemaSimpleType_t2678868104 * get_XsInteger_65() const { return ___XsInteger_65; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsInteger_65() { return &___XsInteger_65; } inline void set_XsInteger_65(XmlSchemaSimpleType_t2678868104 * value) { ___XsInteger_65 = value; Il2CppCodeGenWriteBarrier((&___XsInteger_65), value); } inline static int32_t get_offset_of_XsNonPositiveInteger_66() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNonPositiveInteger_66)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNonPositiveInteger_66() const { return ___XsNonPositiveInteger_66; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNonPositiveInteger_66() { return &___XsNonPositiveInteger_66; } inline void set_XsNonPositiveInteger_66(XmlSchemaSimpleType_t2678868104 * value) { ___XsNonPositiveInteger_66 = value; Il2CppCodeGenWriteBarrier((&___XsNonPositiveInteger_66), value); } inline static int32_t get_offset_of_XsNegativeInteger_67() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNegativeInteger_67)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNegativeInteger_67() const { return ___XsNegativeInteger_67; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNegativeInteger_67() { return &___XsNegativeInteger_67; } inline void set_XsNegativeInteger_67(XmlSchemaSimpleType_t2678868104 * value) { ___XsNegativeInteger_67 = value; Il2CppCodeGenWriteBarrier((&___XsNegativeInteger_67), value); } inline static int32_t get_offset_of_XsLong_68() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsLong_68)); } inline XmlSchemaSimpleType_t2678868104 * get_XsLong_68() const { return ___XsLong_68; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsLong_68() { return &___XsLong_68; } inline void set_XsLong_68(XmlSchemaSimpleType_t2678868104 * value) { ___XsLong_68 = value; Il2CppCodeGenWriteBarrier((&___XsLong_68), value); } inline static int32_t get_offset_of_XsInt_69() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsInt_69)); } inline XmlSchemaSimpleType_t2678868104 * get_XsInt_69() const { return ___XsInt_69; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsInt_69() { return &___XsInt_69; } inline void set_XsInt_69(XmlSchemaSimpleType_t2678868104 * value) { ___XsInt_69 = value; Il2CppCodeGenWriteBarrier((&___XsInt_69), value); } inline static int32_t get_offset_of_XsShort_70() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsShort_70)); } inline XmlSchemaSimpleType_t2678868104 * get_XsShort_70() const { return ___XsShort_70; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsShort_70() { return &___XsShort_70; } inline void set_XsShort_70(XmlSchemaSimpleType_t2678868104 * value) { ___XsShort_70 = value; Il2CppCodeGenWriteBarrier((&___XsShort_70), value); } inline static int32_t get_offset_of_XsByte_71() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsByte_71)); } inline XmlSchemaSimpleType_t2678868104 * get_XsByte_71() const { return ___XsByte_71; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsByte_71() { return &___XsByte_71; } inline void set_XsByte_71(XmlSchemaSimpleType_t2678868104 * value) { ___XsByte_71 = value; Il2CppCodeGenWriteBarrier((&___XsByte_71), value); } inline static int32_t get_offset_of_XsNonNegativeInteger_72() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsNonNegativeInteger_72)); } inline XmlSchemaSimpleType_t2678868104 * get_XsNonNegativeInteger_72() const { return ___XsNonNegativeInteger_72; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsNonNegativeInteger_72() { return &___XsNonNegativeInteger_72; } inline void set_XsNonNegativeInteger_72(XmlSchemaSimpleType_t2678868104 * value) { ___XsNonNegativeInteger_72 = value; Il2CppCodeGenWriteBarrier((&___XsNonNegativeInteger_72), value); } inline static int32_t get_offset_of_XsUnsignedLong_73() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsUnsignedLong_73)); } inline XmlSchemaSimpleType_t2678868104 * get_XsUnsignedLong_73() const { return ___XsUnsignedLong_73; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsUnsignedLong_73() { return &___XsUnsignedLong_73; } inline void set_XsUnsignedLong_73(XmlSchemaSimpleType_t2678868104 * value) { ___XsUnsignedLong_73 = value; Il2CppCodeGenWriteBarrier((&___XsUnsignedLong_73), value); } inline static int32_t get_offset_of_XsUnsignedInt_74() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsUnsignedInt_74)); } inline XmlSchemaSimpleType_t2678868104 * get_XsUnsignedInt_74() const { return ___XsUnsignedInt_74; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsUnsignedInt_74() { return &___XsUnsignedInt_74; } inline void set_XsUnsignedInt_74(XmlSchemaSimpleType_t2678868104 * value) { ___XsUnsignedInt_74 = value; Il2CppCodeGenWriteBarrier((&___XsUnsignedInt_74), value); } inline static int32_t get_offset_of_XsUnsignedShort_75() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsUnsignedShort_75)); } inline XmlSchemaSimpleType_t2678868104 * get_XsUnsignedShort_75() const { return ___XsUnsignedShort_75; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsUnsignedShort_75() { return &___XsUnsignedShort_75; } inline void set_XsUnsignedShort_75(XmlSchemaSimpleType_t2678868104 * value) { ___XsUnsignedShort_75 = value; Il2CppCodeGenWriteBarrier((&___XsUnsignedShort_75), value); } inline static int32_t get_offset_of_XsUnsignedByte_76() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsUnsignedByte_76)); } inline XmlSchemaSimpleType_t2678868104 * get_XsUnsignedByte_76() const { return ___XsUnsignedByte_76; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsUnsignedByte_76() { return &___XsUnsignedByte_76; } inline void set_XsUnsignedByte_76(XmlSchemaSimpleType_t2678868104 * value) { ___XsUnsignedByte_76 = value; Il2CppCodeGenWriteBarrier((&___XsUnsignedByte_76), value); } inline static int32_t get_offset_of_XsPositiveInteger_77() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XsPositiveInteger_77)); } inline XmlSchemaSimpleType_t2678868104 * get_XsPositiveInteger_77() const { return ___XsPositiveInteger_77; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XsPositiveInteger_77() { return &___XsPositiveInteger_77; } inline void set_XsPositiveInteger_77(XmlSchemaSimpleType_t2678868104 * value) { ___XsPositiveInteger_77 = value; Il2CppCodeGenWriteBarrier((&___XsPositiveInteger_77), value); } inline static int32_t get_offset_of_XdtUntypedAtomic_78() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XdtUntypedAtomic_78)); } inline XmlSchemaSimpleType_t2678868104 * get_XdtUntypedAtomic_78() const { return ___XdtUntypedAtomic_78; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XdtUntypedAtomic_78() { return &___XdtUntypedAtomic_78; } inline void set_XdtUntypedAtomic_78(XmlSchemaSimpleType_t2678868104 * value) { ___XdtUntypedAtomic_78 = value; Il2CppCodeGenWriteBarrier((&___XdtUntypedAtomic_78), value); } inline static int32_t get_offset_of_XdtAnyAtomicType_79() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XdtAnyAtomicType_79)); } inline XmlSchemaSimpleType_t2678868104 * get_XdtAnyAtomicType_79() const { return ___XdtAnyAtomicType_79; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XdtAnyAtomicType_79() { return &___XdtAnyAtomicType_79; } inline void set_XdtAnyAtomicType_79(XmlSchemaSimpleType_t2678868104 * value) { ___XdtAnyAtomicType_79 = value; Il2CppCodeGenWriteBarrier((&___XdtAnyAtomicType_79), value); } inline static int32_t get_offset_of_XdtYearMonthDuration_80() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XdtYearMonthDuration_80)); } inline XmlSchemaSimpleType_t2678868104 * get_XdtYearMonthDuration_80() const { return ___XdtYearMonthDuration_80; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XdtYearMonthDuration_80() { return &___XdtYearMonthDuration_80; } inline void set_XdtYearMonthDuration_80(XmlSchemaSimpleType_t2678868104 * value) { ___XdtYearMonthDuration_80 = value; Il2CppCodeGenWriteBarrier((&___XdtYearMonthDuration_80), value); } inline static int32_t get_offset_of_XdtDayTimeDuration_81() { return static_cast<int32_t>(offsetof(XmlSchemaSimpleType_t2678868104_StaticFields, ___XdtDayTimeDuration_81)); } inline XmlSchemaSimpleType_t2678868104 * get_XdtDayTimeDuration_81() const { return ___XdtDayTimeDuration_81; } inline XmlSchemaSimpleType_t2678868104 ** get_address_of_XdtDayTimeDuration_81() { return &___XdtDayTimeDuration_81; } inline void set_XdtDayTimeDuration_81(XmlSchemaSimpleType_t2678868104 * value) { ___XdtDayTimeDuration_81 = value; Il2CppCodeGenWriteBarrier((&___XdtDayTimeDuration_81), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASIMPLETYPE_T2678868104_H #ifndef XSDSTRING_T3049094358_H #define XSDSTRING_T3049094358_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdString struct XsdString_t3049094358 : public XsdAnySimpleType_t1257864485 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDSTRING_T3049094358_H #ifndef XMLSCHEMANUMERICFACET_T3753040035_H #define XMLSCHEMANUMERICFACET_T3753040035_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaNumericFacet struct XmlSchemaNumericFacet_t3753040035 : public XmlSchemaFacet_t1906017689 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMANUMERICFACET_T3753040035_H #ifndef XSDFLOAT_T3181928905_H #define XSDFLOAT_T3181928905_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdFloat struct XsdFloat_t3181928905 : public XsdAnySimpleType_t1257864485 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDFLOAT_T3181928905_H #ifndef XMLSCHEMAUNIQUE_T2867867737_H #define XMLSCHEMAUNIQUE_T2867867737_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaUnique struct XmlSchemaUnique_t2867867737 : public XmlSchemaIdentityConstraint_t297318432 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAUNIQUE_T2867867737_H #ifndef XMLSCHEMATOTALDIGITSFACET_T297930215_H #define XMLSCHEMATOTALDIGITSFACET_T297930215_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaTotalDigitsFacet struct XmlSchemaTotalDigitsFacet_t297930215 : public XmlSchemaNumericFacet_t3753040035 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMATOTALDIGITSFACET_T297930215_H #ifndef XSDINTEGER_T2044766898_H #define XSDINTEGER_T2044766898_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdInteger struct XsdInteger_t2044766898 : public XsdDecimal_t1288601093 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDINTEGER_T2044766898_H #ifndef XMLSCHEMAALL_T1118454309_H #define XMLSCHEMAALL_T1118454309_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaAll struct XmlSchemaAll_t1118454309 : public XmlSchemaGroupBase_t3631079376 { public: // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaAll::schema XmlSchema_t3742557897 * ___schema_28; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaAll::items XmlSchemaObjectCollection_t1064819932 * ___items_29; // System.Boolean System.Xml.Schema.XmlSchemaAll::emptiable bool ___emptiable_30; public: inline static int32_t get_offset_of_schema_28() { return static_cast<int32_t>(offsetof(XmlSchemaAll_t1118454309, ___schema_28)); } inline XmlSchema_t3742557897 * get_schema_28() const { return ___schema_28; } inline XmlSchema_t3742557897 ** get_address_of_schema_28() { return &___schema_28; } inline void set_schema_28(XmlSchema_t3742557897 * value) { ___schema_28 = value; Il2CppCodeGenWriteBarrier((&___schema_28), value); } inline static int32_t get_offset_of_items_29() { return static_cast<int32_t>(offsetof(XmlSchemaAll_t1118454309, ___items_29)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_29() const { return ___items_29; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_29() { return &___items_29; } inline void set_items_29(XmlSchemaObjectCollection_t1064819932 * value) { ___items_29 = value; Il2CppCodeGenWriteBarrier((&___items_29), value); } inline static int32_t get_offset_of_emptiable_30() { return static_cast<int32_t>(offsetof(XmlSchemaAll_t1118454309, ___emptiable_30)); } inline bool get_emptiable_30() const { return ___emptiable_30; } inline bool* get_address_of_emptiable_30() { return &___emptiable_30; } inline void set_emptiable_30(bool value) { ___emptiable_30 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAALL_T1118454309_H #ifndef XMLSCHEMAFRACTIONDIGITSFACET_T2589598443_H #define XMLSCHEMAFRACTIONDIGITSFACET_T2589598443_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaFractionDigitsFacet struct XmlSchemaFractionDigitsFacet_t2589598443 : public XmlSchemaNumericFacet_t3753040035 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAFRACTIONDIGITSFACET_T2589598443_H #ifndef XSDNORMALIZEDSTRING_T3260789355_H #define XSDNORMALIZEDSTRING_T3260789355_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdNormalizedString struct XsdNormalizedString_t3260789355 : public XsdString_t3049094358 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNORMALIZEDSTRING_T3260789355_H #ifndef XMLSCHEMASEQUENCE_T2018345177_H #define XMLSCHEMASEQUENCE_T2018345177_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaSequence struct XmlSchemaSequence_t2018345177 : public XmlSchemaGroupBase_t3631079376 { public: // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::items XmlSchemaObjectCollection_t1064819932 * ___items_28; public: inline static int32_t get_offset_of_items_28() { return static_cast<int32_t>(offsetof(XmlSchemaSequence_t2018345177, ___items_28)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_28() const { return ___items_28; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_28() { return &___items_28; } inline void set_items_28(XmlSchemaObjectCollection_t1064819932 * value) { ___items_28 = value; Il2CppCodeGenWriteBarrier((&___items_28), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMASEQUENCE_T2018345177_H #ifndef XMLSCHEMACHOICE_T959520675_H #define XMLSCHEMACHOICE_T959520675_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaChoice struct XmlSchemaChoice_t959520675 : public XmlSchemaGroupBase_t3631079376 { public: // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaChoice::items XmlSchemaObjectCollection_t1064819932 * ___items_28; // System.Decimal System.Xml.Schema.XmlSchemaChoice::minEffectiveTotalRange Decimal_t2948259380 ___minEffectiveTotalRange_29; public: inline static int32_t get_offset_of_items_28() { return static_cast<int32_t>(offsetof(XmlSchemaChoice_t959520675, ___items_28)); } inline XmlSchemaObjectCollection_t1064819932 * get_items_28() const { return ___items_28; } inline XmlSchemaObjectCollection_t1064819932 ** get_address_of_items_28() { return &___items_28; } inline void set_items_28(XmlSchemaObjectCollection_t1064819932 * value) { ___items_28 = value; Il2CppCodeGenWriteBarrier((&___items_28), value); } inline static int32_t get_offset_of_minEffectiveTotalRange_29() { return static_cast<int32_t>(offsetof(XmlSchemaChoice_t959520675, ___minEffectiveTotalRange_29)); } inline Decimal_t2948259380 get_minEffectiveTotalRange_29() const { return ___minEffectiveTotalRange_29; } inline Decimal_t2948259380 * get_address_of_minEffectiveTotalRange_29() { return &___minEffectiveTotalRange_29; } inline void set_minEffectiveTotalRange_29(Decimal_t2948259380 value) { ___minEffectiveTotalRange_29 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMACHOICE_T959520675_H #ifndef XMLSCHEMALENGTHFACET_T4286280832_H #define XMLSCHEMALENGTHFACET_T4286280832_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaLengthFacet struct XmlSchemaLengthFacet_t4286280832 : public XmlSchemaNumericFacet_t3753040035 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMALENGTHFACET_T4286280832_H #ifndef XMLSCHEMAMINLENGTHFACET_T686585762_H #define XMLSCHEMAMINLENGTHFACET_T686585762_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMinLengthFacet struct XmlSchemaMinLengthFacet_t686585762 : public XmlSchemaNumericFacet_t3753040035 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMINLENGTHFACET_T686585762_H #ifndef XMLSCHEMAMAXLENGTHFACET_T2192171319_H #define XMLSCHEMAMAXLENGTHFACET_T2192171319_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Xml.Schema.XmlSchemaMaxLengthFacet struct XmlSchemaMaxLengthFacet_t2192171319 : public XmlSchemaNumericFacet_t3753040035 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XMLSCHEMAMAXLENGTHFACET_T2192171319_H #ifndef XSDTOKEN_T1239036978_H #define XSDTOKEN_T1239036978_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdToken struct XsdToken_t1239036978 : public XsdNormalizedString_t3260789355 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDTOKEN_T1239036978_H #ifndef XSDLONG_T1324632828_H #define XSDLONG_T1324632828_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdLong struct XsdLong_t1324632828 : public XsdInteger_t2044766898 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDLONG_T1324632828_H #ifndef XSDNONPOSITIVEINTEGER_T1029055398_H #define XSDNONPOSITIVEINTEGER_T1029055398_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdNonPositiveInteger struct XsdNonPositiveInteger_t1029055398 : public XsdInteger_t2044766898 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNONPOSITIVEINTEGER_T1029055398_H #ifndef XSDNONNEGATIVEINTEGER_T308064234_H #define XSDNONNEGATIVEINTEGER_T308064234_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdNonNegativeInteger struct XsdNonNegativeInteger_t308064234 : public XsdInteger_t2044766898 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNONNEGATIVEINTEGER_T308064234_H #ifndef XSDUNSIGNEDLONG_T1409593434_H #define XSDUNSIGNEDLONG_T1409593434_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdUnsignedLong struct XsdUnsignedLong_t1409593434 : public XsdNonNegativeInteger_t308064234 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDUNSIGNEDLONG_T1409593434_H #ifndef XSDPOSITIVEINTEGER_T1704031413_H #define XSDPOSITIVEINTEGER_T1704031413_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdPositiveInteger struct XsdPositiveInteger_t1704031413 : public XsdNonNegativeInteger_t308064234 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDPOSITIVEINTEGER_T1704031413_H #ifndef XSDLANGUAGE_T1876291273_H #define XSDLANGUAGE_T1876291273_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdLanguage struct XsdLanguage_t1876291273 : public XsdToken_t1239036978 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDLANGUAGE_T1876291273_H #ifndef XSDNAME_T2755146808_H #define XSDNAME_T2755146808_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdName struct XsdName_t2755146808 : public XsdToken_t1239036978 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNAME_T2755146808_H #ifndef XSDNMTOKEN_T834691671_H #define XSDNMTOKEN_T834691671_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdNMToken struct XsdNMToken_t834691671 : public XsdToken_t1239036978 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDNMTOKEN_T834691671_H #ifndef XSDID_T34704195_H #define XSDID_T34704195_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdID struct XsdID_t34704195 : public XsdName_t2755146808 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDID_T34704195_H #ifndef XSDQNAME_T2385631467_H #define XSDQNAME_T2385631467_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdQName struct XsdQName_t2385631467 : public XsdName_t2755146808 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDQNAME_T2385631467_H #ifndef XSDIDREF_T2913612829_H #define XSDIDREF_T2913612829_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Mono.Xml.Schema.XsdIDRef struct XsdIDRef_t2913612829 : public XsdName_t2755146808 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // XSDIDREF_T2913612829_H // System.Object[] struct ObjectU5BU5D_t2843939325 : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.String[] struct StringU5BU5D_t1281789340 : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Text.RegularExpressions.Regex[] struct RegexU5BU5D_t1561692752 : public RuntimeArray { public: ALIGN_FIELD (8) Regex_t3657309853 * m_Items[1]; public: inline Regex_t3657309853 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Regex_t3657309853 ** 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, Regex_t3657309853 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Regex_t3657309853 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Regex_t3657309853 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Regex_t3657309853 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Char[] struct CharU5BU5D_t3528271667 : 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.Xml.XmlQualifiedName[] struct XmlQualifiedNameU5BU5D_t1471530361 : public RuntimeArray { public: ALIGN_FIELD (8) XmlQualifiedName_t2760654312 * m_Items[1]; public: inline XmlQualifiedName_t2760654312 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlQualifiedName_t2760654312 ** 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, XmlQualifiedName_t2760654312 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline XmlQualifiedName_t2760654312 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlQualifiedName_t2760654312 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlQualifiedName_t2760654312 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Xml.Schema.XmlSchemaSimpleType[] struct XmlSchemaSimpleTypeU5BU5D_t1394089049 : public RuntimeArray { public: ALIGN_FIELD (8) XmlSchemaSimpleType_t2678868104 * m_Items[1]; public: inline XmlSchemaSimpleType_t2678868104 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XmlSchemaSimpleType_t2678868104 ** 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, XmlSchemaSimpleType_t2678868104 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline XmlSchemaSimpleType_t2678868104 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XmlSchemaSimpleType_t2678868104 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XmlSchemaSimpleType_t2678868104 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // Mono.Xml.Schema.XsdIdentityPath[] struct XsdIdentityPathU5BU5D_t2466178853 : public RuntimeArray { public: ALIGN_FIELD (8) XsdIdentityPath_t991900844 * m_Items[1]; public: inline XsdIdentityPath_t991900844 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XsdIdentityPath_t991900844 ** 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, XsdIdentityPath_t991900844 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline XsdIdentityPath_t991900844 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XsdIdentityPath_t991900844 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XsdIdentityPath_t991900844 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // Mono.Xml.Schema.XsdIdentityStep[] struct XsdIdentityStepU5BU5D_t2964233348 : public RuntimeArray { public: ALIGN_FIELD (8) XsdIdentityStep_t1480907129 * m_Items[1]; public: inline XsdIdentityStep_t1480907129 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline XsdIdentityStep_t1480907129 ** 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, XsdIdentityStep_t1480907129 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline XsdIdentityStep_t1480907129 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline XsdIdentityStep_t1480907129 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, XsdIdentityStep_t1480907129 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Type[] struct TypeU5BU5D_t3940880105 : public RuntimeArray { public: ALIGN_FIELD (8) Type_t * m_Items[1]; public: inline Type_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Type_t ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Type_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.ParameterModifier[] struct ParameterModifierU5BU5D_t2943407543 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterModifier_t1461694466 m_Items[1]; public: inline ParameterModifier_t1461694466 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterModifier_t1461694466 * 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_t1461694466 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline ParameterModifier_t1461694466 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterModifier_t1461694466 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t1461694466 value) { m_Items[index] = value; } }; // System.Reflection.PropertyInfo[] struct PropertyInfoU5BU5D_t1461822886 : public RuntimeArray { public: ALIGN_FIELD (8) PropertyInfo_t * m_Items[1]; public: inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline PropertyInfo_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, PropertyInfo_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Reflection.ParameterInfo[] struct ParameterInfoU5BU5D_t390618515 : public RuntimeArray { public: ALIGN_FIELD (8) ParameterInfo_t1861056598 * m_Items[1]; public: inline ParameterInfo_t1861056598 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ParameterInfo_t1861056598 ** 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, ParameterInfo_t1861056598 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline ParameterInfo_t1861056598 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ParameterInfo_t1861056598 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t1861056598 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor(System.Int32) extern "C" void Dictionary_2__ctor_m182537451_gshared (Dictionary_2_t3384741 * __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::Add(!0,!1) extern "C" void Dictionary_2_Add_m1279427033_gshared (Dictionary_2_t3384741 * __this, RuntimeObject * p0, int32_t p1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::TryGetValue(!0,!1&) extern "C" bool Dictionary_2_TryGetValue_m3959998165_gshared (Dictionary_2_t3384741 * __this, RuntimeObject * p0, int32_t* p1, const RuntimeMethod* method); // System.Void System.Xml.Schema.XmlSchemaExternal::.ctor() extern "C" void XmlSchemaExternal__ctor_m2629943230 (XmlSchemaExternal_t3074890143 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectTable::.ctor() extern "C" void XmlSchemaObjectTable__ctor_m1178187484 (XmlSchemaObjectTable_t2546974348 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectCollection::.ctor(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaObjectCollection__ctor_m3368107069 (XmlSchemaObjectCollection_t1064819932 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaObject_SetParent_m3207914940 (XmlSchemaObject_t1315720168 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaRedefine::get_Items() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaRedefine_get_Items_m3656358695 (XmlSchemaRedefine_t4020109446 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectEnumerator System.Xml.Schema.XmlSchemaObjectCollection::GetEnumerator() extern "C" XmlSchemaObjectEnumerator_t503074204 * XmlSchemaObjectCollection_GetEnumerator_m568986310 (XmlSchemaObjectCollection_t1064819932 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectEnumerator::get_Current() extern "C" XmlSchemaObject_t1315720168 * XmlSchemaObjectEnumerator_get_Current_m2597242723 (XmlSchemaObjectEnumerator_t503074204 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaObjectEnumerator::MoveNext() extern "C" bool XmlSchemaObjectEnumerator_MoveNext_m3595167032 (XmlSchemaObjectEnumerator_t503074204 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaRedefine::.ctor() extern "C" void XmlSchemaRedefine__ctor_m920169286 (XmlSchemaRedefine_t4020109446 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::op_Inequality(System.String,System.String) extern "C" bool String_op_Inequality_m215368492 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String) extern "C" String_t* String_Concat_m3937257545 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::error(System.Xml.Schema.ValidationEventHandler,System.String,System.Exception) extern "C" void XmlSchemaObject_error_m1799989524 (RuntimeObject * __this /* static, unused */, ValidationEventHandler_t791314227 * ___handle0, String_t* ___message1, Exception_t * ___innerException2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Xml.Schema.XmlSchemaReader::get_LineNumber() extern "C" int32_t XmlSchemaReader_get_LineNumber_m3920914464 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::set_LineNumber(System.Int32) extern "C" void XmlSchemaObject_set_LineNumber_m1360499025 (XmlSchemaObject_t1315720168 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Xml.Schema.XmlSchemaReader::get_LinePosition() extern "C" int32_t XmlSchemaReader_get_LinePosition_m2272047151 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::set_LinePosition(System.Int32) extern "C" void XmlSchemaObject_set_LinePosition_m906865826 (XmlSchemaObject_t1315720168 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::set_SourceUri(System.String) extern "C" void XmlSchemaObject_set_SourceUri_m2760372687 (XmlSchemaObject_t1315720168 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::op_Equality(System.String,System.String) extern "C" bool String_op_Equality_m920492651 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaExternal::set_Id(System.String) extern "C" void XmlSchemaExternal_set_Id_m3137701086 (XmlSchemaExternal_t3074890143 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaExternal::set_SchemaLocation(System.String) extern "C" void XmlSchemaExternal_set_SchemaLocation_m533136637 (XmlSchemaExternal_t3074890143 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaUtil::ReadUnhandledAttribute(System.Xml.XmlReader,System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaUtil_ReadUnhandledAttribute_m1314733484 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, XmlSchemaObject_t1315720168 * ___xso1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotation::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAnnotation_t2553753397 * XmlSchemaAnnotation_Read_m1586871736 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Xml.Schema.XmlSchemaObjectCollection::Add(System.Xml.Schema.XmlSchemaObject) extern "C" int32_t XmlSchemaObjectCollection_Add_m1142549045 (XmlSchemaObjectCollection_t1064819932 * __this, XmlSchemaObject_t1315720168 * ___item0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_Read_m1629189972 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaComplexType_t3740801802 * XmlSchemaComplexType_Read_m2926646157 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaGroup System.Xml.Schema.XmlSchemaGroup::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaGroup_t1441741786 * XmlSchemaGroup_Read_m2989256960 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAttributeGroup System.Xml.Schema.XmlSchemaAttributeGroup::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAttributeGroup_t246430545 * XmlSchemaAttributeGroup_Read_m1384675368 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaReader::RaiseInvalidElementError() extern "C" void XmlSchemaReader_RaiseInvalidElementError_m4265021746 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaReader::ReadNextElement() extern "C" bool XmlSchemaReader_ReadNextElement_m611223709 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaGroupBase::.ctor() extern "C" void XmlSchemaGroupBase__ctor_m3091716353 (XmlSchemaGroupBase_t3631079376 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectCollection::.ctor() extern "C" void XmlSchemaObjectCollection__ctor_m1601154956 (XmlSchemaObjectCollection_t1064819932 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Guid::op_Equality(System.Guid,System.Guid) extern "C" bool Guid_op_Equality_m4289903222 (RuntimeObject * __this /* static, unused */, Guid_t p0, Guid_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaAnnotated::get_Id() extern "C" String_t* XmlSchemaAnnotated_get_Id_m2854314617 (XmlSchemaAnnotated_t2603549639 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Hashtable System.Xml.Schema.XmlSchema::get_IDCollection() extern "C" Hashtable_t1853889766 * XmlSchema_get_IDCollection_m3725452494 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaUtil::CompileID(System.String,System.Xml.Schema.XmlSchemaObject,System.Collections.Hashtable,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaUtil_CompileID_m928148374 (RuntimeObject * __this /* static, unused */, String_t* ___id0, XmlSchemaObject_t1315720168 * ___xso1, Hashtable_t1853889766 * ___idCollection2, ValidationEventHandler_t791314227 * ___h3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaParticle::CompileOccurence(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaParticle_CompileOccurence_m2937686890 (XmlSchemaParticle_t3828501457 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObject::error(System.Xml.Schema.ValidationEventHandler,System.String) extern "C" void XmlSchemaObject_error_m903554348 (XmlSchemaObject_t1315720168 * __this, ValidationEventHandler_t791314227 * ___handle0, String_t* ___message1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.CollectionBase::get_Count() extern "C" int32_t CollectionBase_get_Count_m1708965601 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Xml.Schema.XmlSchemaParticle::get_ValidatedMaxOccurs() extern "C" Decimal_t2948259380 XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683 (XmlSchemaParticle_t3828501457 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Decimal::.ctor(System.Int32) extern "C" void Decimal__ctor_m1256289983 (Decimal_t2948259380 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal) extern "C" bool Decimal_op_Equality_m77262825 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::get_Empty() extern "C" XmlSchemaParticle_t3828501457 * XmlSchemaParticle_get_Empty_m1615870170 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Xml.Schema.XmlSchemaParticle::get_ValidatedMinOccurs() extern "C" Decimal_t2948259380 XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405 (XmlSchemaParticle_t3828501457 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSequence::.ctor() extern "C" void XmlSchemaSequence__ctor_m2088825835 (XmlSchemaSequence_t2018345177 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaGroupBase::get_CompiledItems() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaGroupBase_get_CompiledItems_m1009637724 (XmlSchemaGroupBase_t3631079376 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaObject::IsValidated(System.Guid) extern "C" bool XmlSchemaObject_IsValidated_m2227629761 (XmlSchemaObject_t1315720168 * __this, Guid_t ___validationId0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.CollectionBase::Clear() extern "C" void CollectionBase_Clear_m1509125218 (CollectionBase_t2727926298 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaGroupBase::ValidateRecurse(System.Xml.Schema.XmlSchemaGroupBase,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" bool XmlSchemaGroupBase_ValidateRecurse_m3621635736 (XmlSchemaGroupBase_t3631079376 * __this, XmlSchemaGroupBase_t3631079376 * ___baseGroup0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___raiseError3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaElement::get_QualifiedName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaElement_get_QualifiedName_m2688553928 (XmlSchemaElement_t427880856 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlQualifiedName::op_Equality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) extern "C" bool XmlQualifiedName_op_Equality_m1684199236 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___a0, XmlQualifiedName_t2760654312 * ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaObjectCollection::Contains(System.Xml.Schema.XmlSchemaObject) extern "C" bool XmlSchemaObjectCollection_Contains_m123951714 (XmlSchemaObjectCollection_t1064819932 * __this, XmlSchemaObject_t1315720168 * ___item0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaGroupBase::ValidateNSRecurseCheckCardinality(System.Xml.Schema.XmlSchemaAny,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" bool XmlSchemaGroupBase_ValidateNSRecurseCheckCardinality_m4207734782 (XmlSchemaGroupBase_t3631079376 * __this, XmlSchemaAny_t1119175207 * ___any0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___raiseError3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaGroupBase::ValidateSeqRecurseMapSumCommon(System.Xml.Schema.XmlSchemaGroupBase,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean,System.Boolean,System.Boolean) extern "C" bool XmlSchemaGroupBase_ValidateSeqRecurseMapSumCommon_m2619457587 (XmlSchemaGroupBase_t3631079376 * __this, XmlSchemaGroupBase_t3631079376 * ___baseGroup0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___isLax3, bool ___isMapAndSum4, bool ___raiseError5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Xml.Schema.XmlSchemaParticle::GetMinEffectiveTotalRangeAllAndSequence() extern "C" Decimal_t2948259380 XmlSchemaParticle_GetMinEffectiveTotalRangeAllAndSequence_m4225731748 (XmlSchemaParticle_t3828501457 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUPAOnHeadingOptionalComponents(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUPAOnHeadingOptionalComponents_m2072039233 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___qnames0, ArrayList_t2718874744 * ___nsNames1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUPAOnItems(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUPAOnItems_m3453552008 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___qnames0, ArrayList_t2718874744 * ___nsNames1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_Inequality(System.Decimal,System.Decimal) extern "C" bool Decimal_op_Inequality_m3543190500 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.ArrayList::.ctor() extern "C" void ArrayList__ctor_m4254721275 (ArrayList_t2718874744 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectTable::Clear() extern "C" void XmlSchemaObjectTable_Clear_m8811103 (XmlSchemaObjectTable_t2546974348 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ICollection System.Xml.Schema.XmlSchemaObjectTable::get_Names() extern "C" RuntimeObject* XmlSchemaObjectTable_get_Names_m80344028 (XmlSchemaObjectTable_t2546974348 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectTable::Set(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaObjectTable_Set_m2976494497 (XmlSchemaObjectTable_t2546974348 * __this, XmlQualifiedName_t2760654312 * ___name0, XmlSchemaObject_t1315720168 * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectTable::get_Item(System.Xml.XmlQualifiedName) extern "C" XmlSchemaObject_t1315720168 * XmlSchemaObjectTable_get_Item_m170185878 (XmlSchemaObjectTable_t2546974348 * __this, XmlQualifiedName_t2760654312 * ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaAnnotated::set_Id(System.String) extern "C" void XmlSchemaAnnotated_set_Id_m1597719336 (XmlSchemaAnnotated_t2603549639 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaParticle::set_MaxOccursString(System.String) extern "C" void XmlSchemaParticle_set_MaxOccursString_m1136362008 (XmlSchemaParticle_t3828501457 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaParticle::set_MinOccursString(System.String) extern "C" void XmlSchemaParticle_set_MinOccursString_m2757042850 (XmlSchemaParticle_t3828501457 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaAnnotated::set_Annotation(System.Xml.Schema.XmlSchemaAnnotation) extern "C" void XmlSchemaAnnotated_set_Annotation_m3050132480 (XmlSchemaAnnotated_t2603549639 * __this, XmlSchemaAnnotation_t2553753397 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaElement System.Xml.Schema.XmlSchemaElement::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaElement_t427880856 * XmlSchemaElement_Read_m470865371 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaGroupRef System.Xml.Schema.XmlSchemaGroupRef::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaGroupRef_t1314446647 * XmlSchemaGroupRef_Read_m2612111298 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaChoice System.Xml.Schema.XmlSchemaChoice::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaChoice_t959520675 * XmlSchemaChoice_Read_m2424607298 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSequence System.Xml.Schema.XmlSchemaSequence::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSequence_t2018345177 * XmlSchemaSequence_Read_m4225823128 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAny System.Xml.Schema.XmlSchemaAny::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAny_t1119175207 * XmlSchemaAny_Read_m1998536659 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.NameTable::.ctor() extern "C" void NameTable__ctor_m874080766 (NameTable_t3178203267 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSet::.ctor(System.Xml.XmlNameTable) extern "C" void XmlSchemaSet__ctor_m1305906686 (XmlSchemaSet_t266093086 * __this, XmlNameTable_t71772148 * ___nameTable0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlUrlResolver::.ctor() extern "C" void XmlUrlResolver__ctor_m1338399436 (XmlUrlResolver_t817895037 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaCompilationSettings::.ctor() extern "C" void XmlSchemaCompilationSettings__ctor_m1681598812 (XmlSchemaCompilationSettings_t2218765537 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Object::.ctor() extern "C" void Object__ctor_m297566312 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentNullException::.ctor(System.String) extern "C" void ArgumentNullException__ctor_m1170824041 (ArgumentNullException_t1615371798 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Guid System.Guid::NewGuid() extern "C" Guid_t Guid_NewGuid_m923091018 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate) extern "C" Delegate_t1188392813 * Delegate_Combine_m1859655160 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * p0, Delegate_t1188392813 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate) extern "C" Delegate_t1188392813 * Delegate_Remove_m334097152 (RuntimeObject * __this /* static, unused */, Delegate_t1188392813 * p0, Delegate_t1188392813 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Hashtable::.ctor() extern "C" void Hashtable__ctor_m1815022027 (Hashtable_t1853889766 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSet::ResetCompile() extern "C" void XmlSchemaSet_ResetCompile_m3724505894 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSet::ClearGlobalComponents() extern "C" void XmlSchemaSet_ClearGlobalComponents_m1816252391 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::get_IDCollection() extern "C" Hashtable_t1853889766 * XmlSchemaSet_get_IDCollection_m1289038672 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_NamedIdentities() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_NamedIdentities_m132058982 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchema::get_IsCompiled() extern "C" bool XmlSchema_get_IsCompiled_m1798268303 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchema::CompileSubset(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchemaSet,System.Xml.XmlResolver,System.Collections.Hashtable) extern "C" void XmlSchema_CompileSubset_m510143494 (XmlSchema_t3742557897 * __this, ValidationEventHandler_t791314227 * ___handler0, XmlSchemaSet_t266093086 * ___col1, XmlResolver_t626023767 * ___resolver2, Hashtable_t1853889766 * ___handledUris3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::get_Elements() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchema_get_Elements_m2423831735 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ICollection System.Xml.Schema.XmlSchemaObjectTable::get_Values() extern "C" RuntimeObject* XmlSchemaObjectTable_get_Values_m210119958 (XmlSchemaObjectTable_t2546974348 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaElement::FillSubstitutionElementInfo() extern "C" void XmlSchemaElement_FillSubstitutionElementInfo_m1716537754 (XmlSchemaElement_t427880856 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchema::Validate(System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchema_Validate_m1631016973 (XmlSchema_t3742557897 * __this, ValidationEventHandler_t791314227 * ___handler0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSet::AddGlobalComponents(System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSet_AddGlobalComponents_m2268750022 (XmlSchemaSet_t266093086 * __this, XmlSchema_t3742557897 * ___schema0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalElements() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalElements_m2135414308 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalAttributes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalAttributes_m3274158681 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalTypes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalTypes_m149850861 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaObjectTable::Add(System.Xml.XmlQualifiedName,System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaObjectTable_Add_m1270468147 (XmlSchemaObjectTable_t2546974348 * __this, XmlQualifiedName_t2760654312 * ___name0, XmlSchemaObject_t1315720168 * ___value1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::get_Attributes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchema_get_Attributes_m3728178990 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::get_QualifiedName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaAttribute_get_QualifiedName_m383925923 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchema::get_SchemaTypes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchema_get_SchemaTypes_m2814071545 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::get_QualifiedName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaType_get_QualifiedName_m2122094841 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaSet::GetSafeNs(System.String) extern "C" String_t* XmlSchemaSet_GetSafeNs_m1979379821 (XmlSchemaSet_t266093086 * __this, String_t* ___ns0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchema::get_TargetNamespace() extern "C" String_t* XmlSchema_get_TargetNamespace_m442842382 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ICollection System.Xml.Schema.XmlSchemaSet::Schemas(System.String) extern "C" RuntimeObject* XmlSchemaSet_Schemas_m844252656 (XmlSchemaSet_t266093086 * __this, String_t* ___targetNamespace0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaContentModel::.ctor() extern "C" void XmlSchemaContentModel__ctor_m1098532985 (XmlSchemaContentModel_t602185179 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleContent::.ctor() extern "C" void XmlSchemaSimpleContent__ctor_m3949411668 (XmlSchemaSimpleContent_t4264369274 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaReader::SkipToEnd() extern "C" void XmlSchemaReader_SkipToEnd_m864243635 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleContentRestriction System.Xml.Schema.XmlSchemaSimpleContentRestriction::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleContentRestriction_t2746076865 * XmlSchemaSimpleContentRestriction_Read_m2754874039 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleContentExtension System.Xml.Schema.XmlSchemaSimpleContentExtension::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleContentExtension_t1269327470 * XmlSchemaSimpleContentExtension_Read_m47318261 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaContent::.ctor() extern "C" void XmlSchemaContent__ctor_m2690093098 (XmlSchemaContent_t1040349258 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentExtension::get_AnyAttribute() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentExtension::get_Attributes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleContentExtension_get_Attributes_m2422945400 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnnotation System.Xml.Schema.XmlSchemaAnnotated::get_Annotation() extern "C" XmlSchemaAnnotation_t2553753397 * XmlSchemaAnnotated_get_Annotation_m3851538793 (XmlSchemaAnnotated_t2603549639 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentExtension::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentExtension_get_BaseTypeName_m3374486103 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlQualifiedName::get_IsEmpty() extern "C" bool XmlQualifiedName_get_IsEmpty_m1430090042 (XmlQualifiedName_t2760654312 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckQName(System.Xml.XmlQualifiedName) extern "C" bool XmlSchemaUtil_CheckQName_m3878061682 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qname0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Object::GetType() extern "C" Type_t * Object_GetType_m88164663 (RuntimeObject * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object,System.Object) extern "C" String_t* String_Concat_m904156431 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchema::FindSchemaType(System.Xml.XmlQualifiedName) extern "C" XmlSchemaType_t2033747345 * XmlSchema_FindSchemaType_m3920891232 (XmlSchema_t3742557897 * __this, XmlQualifiedName_t2760654312 * ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaContentModel System.Xml.Schema.XmlSchemaComplexType::get_ContentModel() extern "C" XmlSchemaContentModel_t602185179 * XmlSchemaComplexType_get_ContentModel_m1078180248 (XmlSchemaComplexType_t3740801802 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaComplexType System.Xml.Schema.XmlSchemaComplexType::get_AnyType() extern "C" XmlSchemaComplexType_t3740801802 * XmlSchemaComplexType_get_AnyType_m2038550701 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::IsBuiltInDatatypeName(System.Xml.XmlQualifiedName) extern "C" bool XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qname0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaDatatype::FromName(System.Xml.XmlQualifiedName) extern "C" XmlSchemaDatatype_t322714710 * XmlSchemaDatatype_FromName_m1668846326 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qname0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.XmlQualifiedName::get_Namespace() extern "C" String_t* XmlQualifiedName_get_Namespace_m3957593392 (XmlQualifiedName_t2760654312 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchema::IsNamespaceAbsent(System.String) extern "C" bool XmlSchema_IsNamespaceAbsent_m3899863769 (XmlSchema_t3742557897 * __this, String_t* ___ns0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object,System.Object,System.Object) extern "C" String_t* String_Concat_m1715369213 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleContentExtension::.ctor() extern "C" void XmlSchemaSimpleContentExtension__ctor_m1443673690 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaUtil::ReadQNameAttribute(System.Xml.XmlReader,System.Exception&) extern "C" XmlQualifiedName_t2760654312 * XmlSchemaUtil_ReadQNameAttribute_m567024358 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerEx1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAttribute System.Xml.Schema.XmlSchemaAttribute::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAttribute_t2797257020 * XmlSchemaAttribute_Read_m3620037629 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAttributeGroupRef System.Xml.Schema.XmlSchemaAttributeGroupRef::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAttributeGroupRef_t846390688 * XmlSchemaAttributeGroupRef_Read_m3714796484 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaAnyAttribute::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaAnyAttribute_Read_m1369098939 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleContentExtension::set_AnyAttribute(System.Xml.Schema.XmlSchemaAnyAttribute) extern "C" void XmlSchemaSimpleContentExtension_set_AnyAttribute_m3647294672 (XmlSchemaSimpleContentExtension_t1269327470 * __this, XmlSchemaAnyAttribute_t963227996 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_BaseType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_AnyAttribute() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_Attributes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentRestriction_get_BaseTypeName_m2313782330 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlQualifiedName::op_Inequality(System.Xml.XmlQualifiedName,System.Xml.XmlQualifiedName) extern "C" bool XmlQualifiedName_op_Inequality_m3449274916 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___a0, XmlQualifiedName_t2760654312 * ___b1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleContentRestriction::.ctor() extern "C" void XmlSchemaSimpleContentRestriction__ctor_m1686457861 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMinExclusiveFacet System.Xml.Schema.XmlSchemaMinExclusiveFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMinExclusiveFacet_t85871952 * XmlSchemaMinExclusiveFacet_Read_m1334108464 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMinInclusiveFacet System.Xml.Schema.XmlSchemaMinInclusiveFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMinInclusiveFacet_t18629333 * XmlSchemaMinInclusiveFacet_Read_m1579298286 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMaxExclusiveFacet System.Xml.Schema.XmlSchemaMaxExclusiveFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMaxExclusiveFacet_t786951263 * XmlSchemaMaxExclusiveFacet_Read_m3854530505 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMaxInclusiveFacet System.Xml.Schema.XmlSchemaMaxInclusiveFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMaxInclusiveFacet_t719708644 * XmlSchemaMaxInclusiveFacet_Read_m1567297469 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaTotalDigitsFacet System.Xml.Schema.XmlSchemaTotalDigitsFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaTotalDigitsFacet_t297930215 * XmlSchemaTotalDigitsFacet_Read_m2720747555 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaFractionDigitsFacet System.Xml.Schema.XmlSchemaFractionDigitsFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaFractionDigitsFacet_t2589598443 * XmlSchemaFractionDigitsFacet_Read_m1380148146 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaLengthFacet System.Xml.Schema.XmlSchemaLengthFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaLengthFacet_t4286280832 * XmlSchemaLengthFacet_Read_m46713934 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMinLengthFacet System.Xml.Schema.XmlSchemaMinLengthFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMinLengthFacet_t686585762 * XmlSchemaMinLengthFacet_Read_m3215340321 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaMaxLengthFacet System.Xml.Schema.XmlSchemaMaxLengthFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaMaxLengthFacet_t2192171319 * XmlSchemaMaxLengthFacet_Read_m4278595782 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaEnumerationFacet System.Xml.Schema.XmlSchemaEnumerationFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaEnumerationFacet_t2156689038 * XmlSchemaEnumerationFacet_Read_m1625452565 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaWhiteSpaceFacet System.Xml.Schema.XmlSchemaWhiteSpaceFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaWhiteSpaceFacet_t4158372164 * XmlSchemaWhiteSpaceFacet_Read_m1012238860 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaPatternFacet System.Xml.Schema.XmlSchemaPatternFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaPatternFacet_t3316004401 * XmlSchemaPatternFacet_Read_m2669981935 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleContentRestriction::set_AnyAttribute(System.Xml.Schema.XmlSchemaAnyAttribute) extern "C" void XmlSchemaSimpleContentRestriction_set_AnyAttribute_m3812462749 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, XmlSchemaAnyAttribute_t963227996 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaType::.ctor() extern "C" void XmlSchemaType__ctor_m3211054051 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleType::.ctor() extern "C" void XmlSchemaSimpleType__ctor_m2253231569 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::.ctor() extern "C" void XmlSchemaSimpleTypeList__ctor_m468630537 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlQualifiedName::.ctor(System.String,System.String) extern "C" void XmlQualifiedName__ctor_m835061046 (XmlQualifiedName_t2760654312 * __this, String_t* ___name0, String_t* ___ns1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemTypeName(System.Xml.XmlQualifiedName) extern "C" void XmlSchemaSimpleTypeList_set_ItemTypeName_m1444979039 (XmlSchemaSimpleTypeList_t472803608 * __this, XmlQualifiedName_t2760654312 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleType::set_Content(System.Xml.Schema.XmlSchemaSimpleTypeContent) extern "C" void XmlSchemaSimpleType_set_Content_m1970396414 (XmlSchemaSimpleType_t2678868104 * __this, XmlSchemaSimpleTypeContent_t599285223 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_BuildSchemaType_m3396760451 (RuntimeObject * __this /* static, unused */, String_t* ___name0, String_t* ___baseName1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String,System.Boolean,System.Boolean) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_BuildSchemaType_m161812030 (RuntimeObject * __this /* static, unused */, String_t* ___name0, String_t* ___baseName1, bool ___xdt2, bool ___baseXdt3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemType(System.Xml.Schema.XmlSchemaSimpleType) extern "C" void XmlSchemaSimpleTypeList_set_ItemType_m4093680610 (XmlSchemaSimpleTypeList_t472803608 * __this, XmlSchemaSimpleType_t2678868104 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.XmlQualifiedName) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaType_GetBuiltInSimpleType_m1336857001 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qualifiedName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.Schema.XsdAnySimpleType Mono.Xml.Schema.XsdAnySimpleType::get_Instance() extern "C" XsdAnySimpleType_t1257864485 * XsdAnySimpleType_get_Instance_m525392955 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::get_Content() extern "C" XmlSchemaSimpleTypeContent_t599285223 * XmlSchemaSimpleType_get_Content_m2306047784 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaType::get_Name() extern "C" String_t* XmlSchemaType_get_Name_m599822945 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaObject::get_AncestorSchema() extern "C" XmlSchema_t3742557897 * XmlSchemaObject_get_AncestorSchema_m2485268250 (XmlSchemaObject_t1315720168 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::get_Final() extern "C" int32_t XmlSchemaType_get_Final_m2717235480 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckNCName(System.String) extern "C" bool XmlSchemaUtil_CheckNCName_m1273109950 (RuntimeObject * __this /* static, unused */, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchema::get_FinalDefault() extern "C" int32_t XmlSchema_get_FinalDefault_m1839239784 (XmlSchema_t3742557897 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::GetActualType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" RuntimeObject * XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, bool ___validate2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::get_Datatype() extern "C" XmlSchemaDatatype_t322714710 * XmlSchemaType_get_Datatype_m3072197688 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.Schema.XsdAnySimpleType System.Xml.Schema.XmlSchemaSimpleType::get_AnySimpleType() extern "C" XsdAnySimpleType_t1257864485 * XmlSchemaSimpleType_get_AnySimpleType_m3105451177 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleType::CollectBaseType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleType_CollectBaseType_m3045110927 (XmlSchemaSimpleType_t2678868104 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::get_BaseXmlSchemaType() extern "C" XmlSchemaType_t2033747345 * XmlSchemaType_get_BaseXmlSchemaType_m4221231559 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::get_FinalResolved() extern "C" int32_t XmlSchemaType_get_FinalResolved_m213206105 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaSimpleType::get_Variety() extern "C" int32_t XmlSchemaSimpleType_get_Variety_m18134995 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_Facets() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleType::ValidateDerivationValid(System.Object,System.Xml.Schema.XmlSchemaObjectCollection,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleType_ValidateDerivationValid_m431215739 (XmlSchemaSimpleType_t2678868104 * __this, RuntimeObject * ___baseType0, XmlSchemaObjectCollection_t1064819932 * ___facets1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeList::get_ValidatedListItemType() extern "C" RuntimeObject * XmlSchemaSimpleTypeList_get_ValidatedListItemType_m343969183 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleType::ValidateTypeDerivationOK(System.Object,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" bool XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113 (XmlSchemaSimpleType_t2678868104 * __this, RuntimeObject * ___baseType0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___raiseError3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_ValidatedTypes() extern "C" ObjectU5BU5D_t2843939325* XmlSchemaSimpleTypeUnion_get_ValidatedTypes_m461184707 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::ReadDerivationAttribute(System.Xml.XmlReader,System.Exception&,System.String,System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" int32_t XmlSchemaUtil_ReadDerivationAttribute_m214019534 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, String_t* ___name2, int32_t ___allowed3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaType::set_Final(System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" void XmlSchemaType_set_Final_m383026665 (XmlSchemaType_t2033747345 * __this, int32_t ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaType::set_Name(System.String) extern "C" void XmlSchemaType_set_Name_m786219427 (XmlSchemaType_t2033747345 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleTypeRestriction System.Xml.Schema.XmlSchemaSimpleTypeRestriction::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeRestriction_t3925451115 * XmlSchemaSimpleTypeRestriction_Read_m102524905 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleTypeList System.Xml.Schema.XmlSchemaSimpleTypeList::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeList_t472803608 * XmlSchemaSimpleTypeList_Read_m3988772706 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleTypeUnion System.Xml.Schema.XmlSchemaSimpleTypeUnion::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeUnion_t4071426880 * XmlSchemaSimpleTypeUnion_Read_m4121525525 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaAnnotated::.ctor() extern "C" void XmlSchemaAnnotated__ctor_m2738129066 (XmlSchemaAnnotated_t2603549639 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaType::get_BaseSchemaType() extern "C" RuntimeObject * XmlSchemaType_get_BaseSchemaType_m3936227521 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeContent::.ctor() extern "C" void XmlSchemaSimpleTypeContent__ctor_m2939213844 (XmlSchemaSimpleTypeContent_t599285223 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeList::get_ItemType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleTypeList_get_ItemType_m4258023120 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeList::get_ItemTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleTypeList_get_ItemTypeName_m1793827519 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaType_GetBuiltInSimpleType_m1138863932 (RuntimeObject * __this /* static, unused */, int32_t ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_BaseType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleTypeRestriction_get_BaseType_m3965294117 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleTypeRestriction_get_BaseTypeName_m3242510882 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeContent::get_ActualBaseSchemaType() extern "C" RuntimeObject * XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945 (XmlSchemaSimpleTypeContent_t599285223 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean Mono.Xml.Schema.XsdAnySimpleType::AllowsFacet(System.Xml.Schema.XmlSchemaFacet) extern "C" bool XsdAnySimpleType_AllowsFacet_m3295817030 (XsdAnySimpleType_t1257864485 * __this, XmlSchemaFacet_t1906017689 * ___xsf0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::IsAllowedFacet(System.Xml.Schema.XmlSchemaFacet) extern "C" bool XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFacet_t1906017689 * ___xsf0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateActualType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleTypeRestriction_ValidateActualType_m3602917459 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaFacet::get_Value() extern "C" String_t* XmlSchemaFacet_get_Value_m199684217 (XmlSchemaFacet_t1906017689 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkLengthFacet(System.Xml.Schema.XmlSchemaLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkLengthFacet_m552154258 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaLengthFacet_t4286280832 * ___lf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMaxLengthFacet(System.Xml.Schema.XmlSchemaMaxLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMaxLengthFacet_m1519094515 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaMaxLengthFacet_t2192171319 * ___maxlf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMinLengthFacet(System.Xml.Schema.XmlSchemaMinLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMinLengthFacet_m3798454509 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaMinLengthFacet_t686585762 * ___minlf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMinMaxFacet(System.Xml.Schema.XmlSchemaFacet,System.Object&,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFacet_t1906017689 * ___facet0, RuntimeObject ** ___baseFacet1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkFractionDigitsFacet(System.Xml.Schema.XmlSchemaFractionDigitsFacet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkFractionDigitsFacet_m4137464669 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFractionDigitsFacet_t2589598443 * ___fracf0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkTotalDigitsFacet(System.Xml.Schema.XmlSchemaTotalDigitsFacet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkTotalDigitsFacet_m1136086706 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaTotalDigitsFacet_t297930215 * ___totf0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle) extern "C" Type_t * Type_GetTypeFromHandle_m1620074514 (RuntimeObject * __this /* static, unused */, RuntimeTypeHandle_t3027515415 p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Char System.String::get_Chars(System.Int32) extern "C" Il2CppChar String_get_Chars_m2986988803 (String_t* __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::get_Length() extern "C" int32_t String_get_Length_m3847582255 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Text.StringBuilder::.ctor() extern "C" void StringBuilder__ctor_m3121283359 (StringBuilder_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32) extern "C" StringBuilder_t * StringBuilder_Append_m3214161208 (StringBuilder_t * __this, String_t* p0, int32_t p1, int32_t p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) extern "C" StringBuilder_t * StringBuilder_Append_m1965104174 (StringBuilder_t * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Text.StringBuilder::ToString() extern "C" String_t* StringBuilder_ToString_m3317489284 (StringBuilder_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String,System.String) extern "C" String_t* String_Concat_m3755062657 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String) extern "C" void Regex__ctor_m3948448025 (Regex_t3657309853 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Trim() extern "C" String_t* String_Trim_m923598732 (String_t* __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() extern "C" CultureInfo_t4157843068 * CultureInfo_get_InvariantCulture_m3532445182 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Decimal::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider) extern "C" Decimal_t2948259380 Decimal_Parse_m942471224 (RuntimeObject * __this /* static, unused */, String_t* p0, int32_t p1, RuntimeObject* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_LessThanOrEqual(System.Decimal,System.Decimal) extern "C" bool Decimal_op_LessThanOrEqual_m3936545906 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) extern "C" String_t* String_Format_m1881875187 (RuntimeObject * __this /* static, unused */, RuntimeObject* p0, String_t* p1, ObjectU5BU5D_t2843939325* p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_GreaterThan(System.Decimal,System.Decimal) extern "C" bool Decimal_op_GreaterThan_m627311519 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.String,System.Object) extern "C" String_t* String_Format_m2844511972 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_LessThan(System.Decimal,System.Decimal) extern "C" bool Decimal_op_LessThan_m1273833514 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Decimal::op_GreaterThanOrEqual(System.Decimal,System.Decimal) extern "C" bool Decimal_op_GreaterThanOrEqual_m1217153501 (RuntimeObject * __this /* static, unused */, Decimal_t2948259380 p0, Decimal_t2948259380 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateValueWithDatatype(System.String) extern "C" RuntimeObject * XmlSchemaSimpleTypeRestriction_ValidateValueWithDatatype_m3322151548 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.Schema.XsdAnySimpleType System.Xml.Schema.XmlSchemaSimpleTypeRestriction::getDatatype() extern "C" XsdAnySimpleType_t1257864485 * XmlSchemaSimpleTypeRestriction_getDatatype_m687103007 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateValueWithFacets_m2411738315 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateListValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacets_m932200076 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateNonListValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacets_m3279012679 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateListValueWithFacetsCore(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacetsCore_m714256667 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaDatatype::FromName(System.String,System.String) extern "C" XmlSchemaDatatype_t322714710 * XmlSchemaDatatype_FromName_m2299183149 (RuntimeObject * __this /* static, unused */, String_t* ___localName0, String_t* ___ns1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String[] Mono.Xml.Schema.XsdAnySimpleType::ParseListValue(System.String,System.Xml.XmlNameTable) extern "C" StringU5BU5D_t1281789340* XsdAnySimpleType_ParseListValue_m2696966159 (XsdAnySimpleType_t1257864485 * __this, String_t* ___s0, XmlNameTable_t71772148 * ___nameTable1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String) extern "C" bool Regex_IsMatch_m4067478295 (Regex_t3657309853 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::AreSchemaDatatypeEqual(Mono.Xml.Schema.XsdAnySimpleType,System.Object,Mono.Xml.Schema.XsdAnySimpleType,System.Object) extern "C" bool XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075 (RuntimeObject * __this /* static, unused */, XsdAnySimpleType_t1257864485 * ___st10, RuntimeObject * ___v11, XsdAnySimpleType_t1257864485 * ___st22, RuntimeObject * ___v23, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Decimal::op_Implicit(System.Int32) extern "C" Decimal_t2948259380 Decimal_op_Implicit_m1328901562 (RuntimeObject * __this /* static, unused */, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateNonListValueWithFacetsCore(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacetsCore_m1733844805 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) extern "C" void RuntimeHelpers_InitializeArray_m3117905507 (RuntimeObject * __this /* static, unused */, RuntimeArray * p0, RuntimeFieldHandle_t1871169219 p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Trim(System.Char[]) extern "C" String_t* String_Trim_m3384720403 (String_t* __this, CharU5BU5D_t3528271667* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.String) extern "C" int32_t String_IndexOf_m1977622757 (String_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::.ctor() extern "C" void XmlSchemaSimpleTypeRestriction__ctor_m666597917 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_BaseTypes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_MemberTypes() extern "C" XmlQualifiedNameU5BU5D_t1471530361* XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaSimpleTypeUnion::.ctor() extern "C" void XmlSchemaSimpleTypeUnion__ctor_m2055690608 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String[] System.Xml.Schema.XmlSchemaUtil::SplitList(System.String) extern "C" StringU5BU5D_t1281789340* XmlSchemaUtil_SplitList_m1641535596 (RuntimeObject * __this /* static, unused */, String_t* ___list0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaUtil::ToQName(System.Xml.XmlReader,System.String,System.Exception&) extern "C" XmlQualifiedName_t2760654312 * XmlSchemaUtil_ToQName_m3017013972 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, String_t* ___qnamestr1, Exception_t ** ___innerEx2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaNumericFacet::.ctor() extern "C" void XmlSchemaNumericFacet__ctor_m2383455012 (XmlSchemaNumericFacet_t3753040035 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaTotalDigitsFacet::.ctor() extern "C" void XmlSchemaTotalDigitsFacet__ctor_m585714547 (XmlSchemaTotalDigitsFacet_t297930215 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::ReadBoolAttribute(System.Xml.XmlReader,System.Exception&) extern "C" bool XmlSchemaUtil_ReadBoolAttribute_m854567538 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaFacet::set_Value(System.String) extern "C" void XmlSchemaFacet_set_Value_m2382101717 (XmlSchemaFacet_t1906017689 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.XmlQualifiedName::get_Name() extern "C" String_t* XmlQualifiedName_get_Name_m815040483 (XmlQualifiedName_t2760654312 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor(System.Int32) #define Dictionary_2__ctor_m2392909825(__this, p0, method) (( void (*) (Dictionary_2_t2736202052 *, int32_t, const RuntimeMethod*))Dictionary_2__ctor_m182537451_gshared)(__this, p0, method) // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(!0,!1) #define Dictionary_2_Add_m282647386(__this, p0, p1, method) (( void (*) (Dictionary_2_t2736202052 *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_Add_m1279427033_gshared)(__this, p0, p1, method) // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(!0,!1&) #define Dictionary_2_TryGetValue_m1013208020(__this, p0, p1, method) (( bool (*) (Dictionary_2_t2736202052 *, String_t*, int32_t*, const RuntimeMethod*))Dictionary_2_TryGetValue_m3959998165_gshared)(__this, p0, p1, method) // System.Boolean System.Xml.Schema.XmlSchemaType::ValidateRecursionCheck() extern "C" bool XmlSchemaType_ValidateRecursionCheck_m3062154423 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaIdentityConstraint::.ctor() extern "C" void XmlSchemaIdentityConstraint__ctor_m3826864011 (XmlSchemaIdentityConstraint_t297318432 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Xml.Schema.XmlSchemaIdentityConstraint::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaIdentityConstraint_Compile_m3517703601 (XmlSchemaIdentityConstraint_t297318432 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaUnique::.ctor() extern "C" void XmlSchemaUnique__ctor_m274875952 (XmlSchemaUnique_t2867867737 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaIdentityConstraint::set_Name(System.String) extern "C" void XmlSchemaIdentityConstraint_set_Name_m1938683954 (XmlSchemaIdentityConstraint_t297318432 * __this, String_t* ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaXPath System.Xml.Schema.XmlSchemaXPath::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler,System.String) extern "C" XmlSchemaXPath_t3156455507 * XmlSchemaXPath_Read_m1808832972 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, String_t* ___name2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaIdentityConstraint::set_Selector(System.Xml.Schema.XmlSchemaXPath) extern "C" void XmlSchemaIdentityConstraint_set_Selector_m4012263722 (XmlSchemaIdentityConstraint_t297318432 * __this, XmlSchemaXPath_t3156455507 * ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaXPath System.Xml.Schema.XmlSchemaIdentityConstraint::get_Selector() extern "C" XmlSchemaXPath_t3156455507 * XmlSchemaIdentityConstraint_get_Selector_m1128146390 (XmlSchemaIdentityConstraint_t297318432 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaIdentityConstraint::get_Fields() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaIdentityConstraint_get_Fields_m2787365736 (XmlSchemaIdentityConstraint_t297318432 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Environment::GetEnvironmentVariable(System.String) extern "C" String_t* Environment_GetEnvironmentVariable_m394552009 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaObjectTable::Contains(System.Xml.XmlQualifiedName) extern "C" bool XmlSchemaObjectTable_Contains_m3252282677 (XmlSchemaObjectTable_t2546974348 * __this, XmlQualifiedName_t2760654312 * ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Format(System.String,System.Object,System.Object) extern "C" String_t* String_Format_m2556382932 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.String::StartsWith(System.String) extern "C" bool String_StartsWith_m1759067526 (String_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlChar::IsNCName(System.String) extern "C" bool XmlChar_IsNCName_m2365231717 (RuntimeObject * __this /* static, unused */, String_t* ___str0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Single System.Convert::ToSingle(System.Object) extern "C" float Convert_ToSingle_m770958689 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Double System.Convert::ToDouble(System.Object) extern "C" double Convert_ToDouble_m4025515304 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Decimal System.Convert::ToDecimal(System.Object) extern "C" Decimal_t2948259380 Convert_ToDecimal_m92395068 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String[] System.String::Split(System.Char[],System.Int32) extern "C" StringU5BU5D_t1281789340* String_Split_m2077324731 (String_t* __this, CharU5BU5D_t3528271667* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Substring(System.Int32,System.Int32) extern "C" String_t* String_Substring_m1610150815 (String_t* __this, int32_t p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Substring(System.Int32) extern "C" String_t* String_Substring_m2848979100 (String_t* __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.XmlSerializerNamespaces System.Xml.Schema.XmlSchemaObject::get_Namespaces() extern "C" XmlSerializerNamespaces_t2702737953 * XmlSchemaObject_get_Namespaces_m1671673830 (XmlSchemaObject_t1315720168 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Serialization.XmlSerializerNamespaces::Add(System.String,System.String) extern "C" void XmlSerializerNamespaces_Add_m3530434184 (XmlSerializerNamespaces_t2702737953 * __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlDocument::.ctor() extern "C" void XmlDocument__ctor_m664597982 (XmlDocument_t2837193595 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String) extern "C" XmlAttribute_t1173852259 * XmlDocument_CreateAttribute_m695080770 (XmlDocument_t2837193595 * __this, String_t* ___qualifiedName0, String_t* ___namespaceURI1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaUtil::ParseWsdlArrayType(System.Xml.XmlReader,System.Xml.XmlAttribute) extern "C" void XmlSchemaUtil_ParseWsdlArrayType_m829317714 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, XmlAttribute_t1173852259 * ___attr1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&) extern "C" void TypeTranslator_ParseArrayType_m1334976778 (RuntimeObject * __this /* static, unused */, String_t* ___arrayType0, String_t** ___type1, String_t** ___ns2, String_t** ___dimensions3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlConvert::ToBoolean(System.String) extern "C" bool XmlConvert_ToBoolean_m3792671347 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.String,System.String,System.String,System.String) extern "C" String_t* String_Concat_m2163913788 (RuntimeObject * __this /* static, unused */, String_t* p0, String_t* p1, String_t* p2, String_t* p3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Exception::.ctor(System.String) extern "C" void Exception__ctor_m1152696503 (Exception_t * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::AddFlag(System.Xml.Schema.XmlSchemaDerivationMethod,System.Xml.Schema.XmlSchemaDerivationMethod,System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" int32_t XmlSchemaUtil_AddFlag_m1779127340 (RuntimeObject * __this /* static, unused */, int32_t ___dst0, int32_t ___add1, int32_t ___allowed2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.ArgumentException::.ctor(System.String) extern "C" void ArgumentException__ctor_m1312628991 (ArgumentException_t132251570 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::IsValidQName(System.String) extern "C" bool XmlSchemaUtil_IsValidQName_m1652922650 (RuntimeObject * __this /* static, unused */, String_t* ___qname0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttributeGroupRef::get_RefName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaAttributeGroupRef_get_RefName_m204670386 (XmlSchemaAttributeGroupRef_t846390688 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttributeGroup::get_QualifiedName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaAttributeGroup_get_QualifiedName_m1385469852 (XmlSchemaAttributeGroup_t246430545 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAttributeGroup System.Xml.Schema.XmlSchema::FindAttributeGroup(System.Xml.XmlQualifiedName) extern "C" XmlSchemaAttributeGroup_t246430545 * XmlSchema_FindAttributeGroup_m3862267088 (XmlSchema_t3742557897 * __this, XmlQualifiedName_t2760654312 * ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaAttributeGroup::get_AnyAttributeUse() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaAttributeGroup_get_AnyAttributeUse_m1865244267 (XmlSchemaAttributeGroup_t246430545 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaAttributeGroup::get_AttributeUses() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaAttributeGroup_get_AttributeUses_m4084363404 (XmlSchemaAttributeGroup_t246430545 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.IDictionaryEnumerator System.Xml.Schema.XmlSchemaObjectTable::GetEnumerator() extern "C" RuntimeObject* XmlSchemaObjectTable_GetEnumerator_m810751834 (XmlSchemaObjectTable_t2546974348 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Collections.DictionaryEntry::get_Value() extern "C" RuntimeObject * DictionaryEntry_get_Value_m618120527 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::get_Use() extern "C" int32_t XmlSchemaAttribute_get_Use_m2314455910 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaAttribute::get_RefName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaAttribute_get_RefName_m3220837151 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::AreAttributesEqual(System.Xml.Schema.XmlSchemaAttribute,System.Xml.Schema.XmlSchemaAttribute) extern "C" bool XmlSchemaUtil_AreAttributesEqual_m2698191758 (RuntimeObject * __this /* static, unused */, XmlSchemaAttribute_t2797257020 * ___one0, XmlSchemaAttribute_t2797257020 * ___another1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaUtil::AddToTable(System.Xml.Schema.XmlSchemaObjectTable,System.Xml.Schema.XmlSchemaObject,System.Xml.XmlQualifiedName,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaUtil_AddToTable_m2760389917 (RuntimeObject * __this /* static, unused */, XmlSchemaObjectTable_t2546974348 * ___table0, XmlSchemaObject_t1315720168 * ___obj1, XmlQualifiedName_t2760654312 * ___qname2, ValidationEventHandler_t791314227 * ___h3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Xml.Schema.XmlSchemaAttribute::get_AttributeType() extern "C" RuntimeObject * XmlSchemaAttribute_get_AttributeType_m3262341146 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaAttribute::get_Form() extern "C" int32_t XmlSchemaAttribute_get_Form_m2648016496 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaAttribute::get_ValidatedUse() extern "C" int32_t XmlSchemaAttribute_get_ValidatedUse_m1294483544 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaAttribute::get_ValidatedDefaultValue() extern "C" String_t* XmlSchemaAttribute_get_ValidatedDefaultValue_m3096825113 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaAttribute::get_ValidatedFixedValue() extern "C" String_t* XmlSchemaAttribute_get_ValidatedFixedValue_m2069521927 (XmlSchemaAttribute_t2797257020 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaComplexType::get_AttributeUses() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaComplexType_get_AttributeUses_m3736990879 (XmlSchemaComplexType_t3740801802 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaComplexType::get_AttributeWildcard() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaComplexType_get_AttributeWildcard_m3132428207 (XmlSchemaComplexType_t3740801802 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaUtil::AttributeWildcardItemValid(System.Xml.Schema.XmlSchemaAnyAttribute,System.Xml.XmlQualifiedName,System.String) extern "C" bool XmlSchemaUtil_AttributeWildcardItemValid_m34123625 (RuntimeObject * __this /* static, unused */, XmlSchemaAnyAttribute_t963227996 * ___anyAttr0, XmlQualifiedName_t2760654312 * ___qname1, String_t* ___ns2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaAnyAttribute::get_ResolvedProcessContents() extern "C" int32_t XmlSchemaAnyAttribute_get_ResolvedProcessContents_m870264228 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaAnyAttribute::get_HasValueAny() extern "C" bool XmlSchemaAnyAttribute_get_HasValueAny_m840082675 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaAnyAttribute::get_HasValueOther() extern "C" bool XmlSchemaAnyAttribute_get_HasValueOther_m1767451513 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Schema.XmlSchemaAnyAttribute::get_TargetNamespace() extern "C" String_t* XmlSchemaAnyAttribute_get_TargetNamespace_m1092685783 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaAnyAttribute::get_HasValueTargetNamespace() extern "C" bool XmlSchemaAnyAttribute_get_HasValueTargetNamespace_m1853992864 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Schema.XmlSchemaAnyAttribute::get_HasValueLocal() extern "C" bool XmlSchemaAnyAttribute_get_HasValueLocal_m1152318798 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Specialized.StringCollection System.Xml.Schema.XmlSchemaAnyAttribute::get_ResolvedNamespaces() extern "C" StringCollection_t167406615 * XmlSchemaAnyAttribute_get_ResolvedNamespaces_m3287693330 (XmlSchemaAnyAttribute_t963227996 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Collections.Specialized.StringCollection::get_Item(System.Int32) extern "C" String_t* StringCollection_get_Item_m4180232243 (StringCollection_t167406615 * __this, int32_t p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Specialized.StringCollection::get_Count() extern "C" int32_t StringCollection_get_Count_m2156595195 (StringCollection_t167406615 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaException::.ctor() extern "C" void XmlSchemaException__ctor_m840420279 (XmlSchemaException_t3511258692 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void XmlSchemaException__ctor_m2998327023 (XmlSchemaException_t3511258692 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaException::.ctor(System.String,System.Object,System.String,System.Xml.Schema.XmlSchemaObject,System.Exception) extern "C" void XmlSchemaException__ctor_m198186642 (XmlSchemaException_t3511258692 * __this, String_t* ___message0, RuntimeObject * ___sender1, String_t* ___sourceUri2, XmlSchemaObject_t1315720168 * ___sourceObject3, Exception_t * ___innerException4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void XmlSchemaException_GetObjectData_m4261679908 (XmlSchemaException_t3511258692 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaFacet::.ctor() extern "C" void XmlSchemaFacet__ctor_m442738916 (XmlSchemaFacet_t1906017689 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaWhiteSpaceFacet::.ctor() extern "C" void XmlSchemaWhiteSpaceFacet__ctor_m1190861561 (XmlSchemaWhiteSpaceFacet_t4158372164 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlNamespaceManager::.ctor(System.Xml.XmlNameTable) extern "C" void XmlNamespaceManager__ctor_m3238790559 (XmlNamespaceManager_t418790500 * __this, XmlNameTable_t71772148 * ___nameTable0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlQualifiedName[] System.Xml.Serialization.XmlSerializerNamespaces::ToArray() extern "C" XmlQualifiedNameU5BU5D_t1471530361* XmlSerializerNamespaces_ToArray_m2843559361 (XmlSerializerNamespaces_t2702737953 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void Mono.Xml.Schema.XsdIdentityPath::.ctor() extern "C" void XsdIdentityPath__ctor_m2092303249 (XsdIdentityPath_t991900844 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaXPath::ParseExpression(System.String,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParseExpression_m2341068207 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaXPath::ParsePath(System.String,System.Int32,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParsePath_m1265390928 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, ArrayList_t2718874744 * ___paths2, ValidationEventHandler_t791314227 * ___h3, XmlSchema_t3742557897 * ___schema4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Xml.Schema.XmlSchemaXPath::SkipWhitespace(System.String,System.Int32) extern "C" int32_t XmlSchemaXPath_SkipWhitespace_m3783431406 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32) extern "C" int32_t String_IndexOf_m2410372598 (String_t* __this, String_t* p0, int32_t p1, int32_t p2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaXPath::ParseStep(System.String,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParseStep_m3870533266 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, ArrayList_t2718874744 * ___steps2, ArrayList_t2718874744 * ___paths3, ValidationEventHandler_t791314227 * ___h4, XmlSchema_t3742557897 * ___schema5, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void Mono.Xml.Schema.XsdIdentityStep::.ctor() extern "C" void XsdIdentityStep__ctor_m1074702096 (XsdIdentityStep_t1480907129 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlChar::IsNCNameChar(System.Int32) extern "C" bool XmlChar_IsNCNameChar_m158431100 (RuntimeObject * __this /* static, unused */, int32_t ___ch0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.XmlNamespaceManager::LookupNamespace(System.String,System.Boolean) extern "C" String_t* XmlNamespaceManager_LookupNamespace_m2828740952 (XmlNamespaceManager_t418790500 * __this, String_t* ___prefix0, bool ___atomizedNames1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaXPath::.ctor() extern "C" void XmlSchemaXPath__ctor_m3593854984 (XmlSchemaXPath_t3156455507 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlReader System.Xml.Schema.XmlSchemaReader::get_Reader() extern "C" XmlReader_t3121518892 * XmlSchemaReader_get_Reader_m1814361792 (XmlSchemaReader_t1164558392 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlParserContext System.Xml.Schema.XmlSchemaUtil::GetParserContext(System.Xml.XmlReader) extern "C" XmlParserContext_t2544895291 * XmlSchemaUtil_GetParserContext_m769704433 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNamespaceManager System.Xml.XmlParserContext::get_NamespaceManager() extern "C" XmlNamespaceManager_t418790500 * XmlParserContext_get_NamespaceManager_m1180655003 (XmlParserContext_t2544895291 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Serialization.CodeIdentifier::MakeValid(System.String) extern "C" String_t* CodeIdentifier_MakeValid_m147143689 (RuntimeObject * __this /* static, unused */, String_t* ___identifier0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo) extern "C" Il2CppChar Char_ToUpper_m3659851865 (RuntimeObject * __this /* static, unused */, Il2CppChar p0, CultureInfo_t4157843068 * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NullReferenceException::.ctor() extern "C" void NullReferenceException__ctor_m744513393 (NullReferenceException_t1023182353 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Char::IsLetter(System.Char) extern "C" bool Char_IsLetter_m3996985877 (RuntimeObject * __this /* static, unused */, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Char::IsLetterOrDigit(System.Char) extern "C" bool Char_IsLetterOrDigit_m3494175785 (RuntimeObject * __this /* static, unused */, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean,System.Xml.Serialization.TypeData,System.Xml.Schema.XmlSchemaPatternFacet) extern "C" void TypeData__ctor_m812170617 (TypeData_t476999220 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, TypeData_t476999220 * ___mappedType3, XmlSchemaPatternFacet_t3316004401 * ___facet4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" void InvalidOperationException__ctor_m237278729 (InvalidOperationException_t56020091 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Replace(System.Char,System.Char) extern "C" String_t* String_Replace_m3726209165 (String_t* __this, Il2CppChar p0, Il2CppChar p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsEnum() extern "C" bool Type_get_IsEnum_m208091508 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsArray() extern "C" bool Type_get_IsArray_m2591212821 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.Serialization.TypeData::get_IsListType() extern "C" bool TypeData_get_IsListType_m1184961596 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData() extern "C" TypeData_t476999220 * TypeData_get_ListItemTypeData_m3343906619 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Serialization.TypeData::get_XmlType() extern "C" String_t* TypeData_get_XmlType_m323326007 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String) extern "C" String_t* TypeTranslator_GetArrayName_m2745210150 (RuntimeObject * __this /* static, unused */, String_t* ___elemName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsInterface() extern "C" bool Type_get_IsInterface_m3284996719 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[]) extern "C" ConstructorInfo_t5769829 * Type_GetConstructor_m2219014380 (Type_t * __this, TypeU5BU5D_t3940880105* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsAbstract() extern "C" bool Type_get_IsAbstract_m1120089130 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Type::get_IsValueType() extern "C" bool Type_get_IsValueType_m3108065642 (Type_t * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() extern "C" int32_t TypeData_get_SchemaType_m4022828308 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Xml.Serialization.TypeData::get_ListItemType() extern "C" Type_t * TypeData_get_ListItemType_m2212788481 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type) extern "C" TypeData_t476999220 * TypeTranslator_GetTypeData_m1676550349 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Xml.Serialization.TypeData::get_Type() extern "C" Type_t * TypeData_get_Type_m3693670728 (TypeData_t476999220 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type) extern "C" Type_t * TypeData_GetGenericListItemType_m2145930005 (TypeData_t476999220 * __this, Type_t * ___type0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.NotSupportedException::.ctor(System.String) extern "C" void NotSupportedException__ctor_m2494070935 (NotSupportedException_t1314879016 * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type) extern "C" PropertyInfo_t * TypeData_GetIndexerProperty_m1051013388 (RuntimeObject * __this /* static, unused */, Type_t * ___collectionType0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[]) extern "C" MethodInfo_t * Type_GetMethod_m1479779718 (Type_t * __this, String_t* p0, TypeU5BU5D_t3940880105* p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.InvalidOperationException System.Xml.Serialization.TypeData::CreateMissingAddMethodException(System.Type,System.String,System.Type) extern "C" InvalidOperationException_t56020091 * TypeData_CreateMissingAddMethodException_m662119892 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, String_t* ___inheritFrom1, Type_t * ___argumentType2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[]) extern "C" MethodInfo_t * Type_GetMethod_m637078096 (Type_t * __this, String_t* p0, int32_t p1, Binder_t2999457153 * p2, TypeU5BU5D_t3940880105* p3, ParameterModifierU5BU5D_t2943407543* p4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Reflection.PropertyInfo System.Type::GetProperty(System.String) extern "C" PropertyInfo_t * Type_GetProperty_m3414567179 (Type_t * __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.Hashtable System.Collections.Hashtable::Synchronized(System.Collections.Hashtable) extern "C" Hashtable_t1853889766 * Hashtable_Synchronized_m2228653257 (RuntimeObject * __this /* static, unused */, Hashtable_t1853889766 * p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean) extern "C" void TypeData__ctor_m548900801 (TypeData_t476999220 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Schema.XmlSchemaPatternFacet::.ctor() extern "C" void XmlSchemaPatternFacet__ctor_m2153033712 (XmlSchemaPatternFacet_t3316004401 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.Serialization.TypeData::set_IsNullable(System.Boolean) extern "C" void TypeData_set_IsNullable_m3746874811 (TypeData_t476999220 * __this, bool ___value0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Object System.Collections.DictionaryEntry::get_Key() extern "C" RuntimeObject * DictionaryEntry_get_Key_m3117378551 (DictionaryEntry_t3123975638 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String) extern "C" TypeData_t476999220 * TypeTranslator_GetTypeData_m2576829536 (RuntimeObject * __this /* static, unused */, Type_t * ___runtimeType0, String_t* ___xmlDataType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String) extern "C" TypeData_t476999220 * TypeTranslator_GetPrimitiveTypeData_m2740454283 (RuntimeObject * __this /* static, unused */, String_t* ___typeName0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.String::Concat(System.Object[]) extern "C" String_t* String_Concat_m2971454694 (RuntimeObject * __this /* static, unused */, ObjectU5BU5D_t2843939325* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.Char) extern "C" int32_t String_IndexOf_m363431711 (String_t* __this, Il2CppChar p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.XmlConvert::EncodeLocalName(System.String) extern "C" String_t* XmlConvert_EncodeLocalName_m2931600124 (RuntimeObject * __this /* static, unused */, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.Serialization.CodeIdentifier::MakePascal(System.String) extern "C" String_t* CodeIdentifier_MakePascal_m714146339 (RuntimeObject * __this /* static, unused */, String_t* ___identifier0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String,System.Boolean) extern "C" TypeData_t476999220 * TypeTranslator_GetPrimitiveTypeData_m2492367760 (RuntimeObject * __this /* static, unused */, String_t* ___typeName0, bool ___nullable1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::LastIndexOf(System.String) extern "C" int32_t String_LastIndexOf_m2676535141 (String_t* __this, String_t* p0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.String::IndexOf(System.String,System.Int32) extern "C" int32_t String_IndexOf_m3406607758 (String_t* __this, String_t* p0, int32_t p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Attribute::.ctor() extern "C" void Attribute__ctor_m1529526131 (Attribute_t861562559 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.ListDictionary::.ctor() extern "C" void ListDictionary__ctor_m2955211750 (ListDictionary_t1624492310 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Collections.Specialized.ListDictionary::set_Item(System.Object,System.Object) extern "C" void ListDictionary_set_Item_m1659493973 (ListDictionary_t1624492310 * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Int32 System.Collections.Specialized.ListDictionary::get_Count() extern "C" int32_t ListDictionary_get_Count_m414236492 (ListDictionary_t1624492310 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Collections.ICollection System.Collections.Specialized.ListDictionary::get_Values() extern "C" RuntimeObject* ListDictionary_get_Values_m2311943364 (ListDictionary_t1624492310 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlNode::.ctor(System.Xml.XmlDocument) extern "C" void XmlNode__ctor_m2694942411 (XmlNode_t3767805227 * __this, XmlDocument_t2837193595 * ___ownerDocument0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Boolean System.Xml.XmlChar::IsName(System.String) extern "C" bool XmlChar_IsName_m846619221 (RuntimeObject * __this /* static, unused */, String_t* ___str0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNameTable System.Xml.XmlDocument::get_NameTable() extern "C" XmlNameTable_t71772148 * XmlDocument_get_NameTable_m3351667098 (XmlDocument_t2837193595 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNameEntryCache System.Xml.XmlDocument::get_NameCache() extern "C" XmlNameEntryCache_t2890546907 * XmlDocument_get_NameCache_m4223541773 (XmlDocument_t2837193595 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNameEntry System.Xml.XmlNameEntryCache::Add(System.String,System.String,System.String,System.Boolean) extern "C" XmlNameEntry_t1073099671 * XmlNameEntryCache_Add_m886977046 (XmlNameEntryCache_t2890546907 * __this, String_t* ___prefix0, String_t* ___local1, String_t* ___ns2, bool ___atomic3, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.String System.Xml.XmlNameEntry::GetPrefixedName(System.Xml.XmlNameEntryCache) extern "C" String_t* XmlNameEntry_GetPrefixedName_m1299719957 (XmlNameEntry_t1073099671 * __this, XmlNameEntryCache_t2890546907 * ___owner0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlDocument System.Xml.XmlNode::get_OwnerDocument() extern "C" XmlDocument_t2837193595 * XmlNode_get_OwnerDocument_m1156966852 (XmlNode_t3767805227 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlElement System.Xml.XmlNode::get_AttributeOwnerElement() extern "C" XmlElement_t561603118 * XmlNode_get_AttributeOwnerElement_m1547712886 (XmlNode_t3767805227 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlException::.ctor(System.String) extern "C" void XmlException__ctor_m3751204500 (XmlException_t1761730631 * __this, String_t* ___message0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Void System.Xml.XmlDocument::CheckIdTableUpdate(System.Xml.XmlAttribute,System.String,System.String) extern "C" void XmlDocument_CheckIdTableUpdate_m1665709554 (XmlDocument_t2837193595 * __this, XmlAttribute_t1173852259 * ___attr0, String_t* ___oldValue1, String_t* ___newValue2, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode,System.Boolean) extern "C" XmlNode_t3767805227 * XmlNode_AppendChild_m3759797305 (XmlNode_t3767805227 * __this, XmlNode_t3767805227 * ___newChild0, bool ___checkNodeType1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNode System.Xml.XmlNode::AppendChild(System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlNode_AppendChild_m1826791120 (XmlNode_t3767805227 * __this, XmlNode_t3767805227 * ___newChild0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNode System.Xml.XmlNode::InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlNode_InsertBefore_m3712336504 (XmlNode_t3767805227 * __this, XmlNode_t3767805227 * ___newChild0, XmlNode_t3767805227 * ___refChild1, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlNode System.Xml.XmlNode::RemoveChild(System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlNode_RemoveChild_m3038472627 (XmlNode_t3767805227 * __this, XmlNode_t3767805227 * ___oldChild0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // System.Xml.XmlAttribute System.Xml.XmlDocument::CreateAttribute(System.String,System.String,System.String,System.Boolean,System.Boolean) extern "C" XmlAttribute_t1173852259 * XmlDocument_CreateAttribute_m1866139548 (XmlDocument_t2837193595 * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, bool ___atomizedNames3, bool ___checkNamespace4, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.DTDObjectModel System.Xml.XmlDocumentType::get_DTD() extern "C" DTDObjectModel_t1729680289 * XmlDocumentType_get_DTD_m2297215448 (XmlDocumentType_t4112370061 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.DTDAttListDeclarationCollection Mono.Xml.DTDObjectModel::get_AttListDecls() extern "C" DTDAttListDeclarationCollection_t2220366188 * DTDObjectModel_get_AttListDecls_m2801359668 (DTDObjectModel_t1729680289 * __this, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.DTDAttListDeclaration Mono.Xml.DTDAttListDeclarationCollection::get_Item(System.String) extern "C" DTDAttListDeclaration_t3593159715 * DTDAttListDeclarationCollection_get_Item_m3930829771 (DTDAttListDeclarationCollection_t2220366188 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; // Mono.Xml.DTDAttributeDefinition Mono.Xml.DTDAttListDeclaration::get_Item(System.String) extern "C" DTDAttributeDefinition_t3434905422 * DTDAttListDeclaration_get_Item_m126874962 (DTDAttListDeclaration_t3593159715 * __this, String_t* ___name0, const RuntimeMethod* method) IL2CPP_METHOD_ATTR; #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaRedefine::.ctor() extern "C" void XmlSchemaRedefine__ctor_m920169286 (XmlSchemaRedefine_t4020109446 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaRedefine__ctor_m920169286_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaExternal__ctor_m2629943230(__this, /*hidden argument*/NULL); XmlSchemaObjectTable_t2546974348 * L_0 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_0, /*hidden argument*/NULL); __this->set_attributeGroups_16(L_0); XmlSchemaObjectTable_t2546974348 * L_1 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_1, /*hidden argument*/NULL); __this->set_groups_17(L_1); XmlSchemaObjectCollection_t1064819932 * L_2 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m3368107069(L_2, __this, /*hidden argument*/NULL); __this->set_items_18(L_2); XmlSchemaObjectTable_t2546974348 * L_3 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_3, /*hidden argument*/NULL); __this->set_schemaTypes_19(L_3); return; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaRedefine::get_Items() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaRedefine_get_Items_m3656358695 (XmlSchemaRedefine_t4020109446 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_items_18(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaRedefine::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaRedefine_SetParent_m1836653862 (XmlSchemaRedefine_t4020109446 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaRedefine_SetParent_m1836653862_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_1 = XmlSchemaRedefine_get_Items_m3656358695(__this, /*hidden argument*/NULL); NullCheck(L_1); XmlSchemaObjectEnumerator_t503074204 * L_2 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_1, /*hidden argument*/NULL); V_1 = L_2; } IL_0013: try { // begin try (depth: 1) { goto IL_0034; } IL_0018: { XmlSchemaObjectEnumerator_t503074204 * L_3 = V_1; NullCheck(L_3); XmlSchemaObject_t1315720168 * L_4 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_3, /*hidden argument*/NULL); V_0 = L_4; XmlSchemaObject_t1315720168 * L_5 = V_0; NullCheck(L_5); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_5, __this); XmlSchemaObject_t1315720168 * L_6 = V_0; NullCheck(L_6); L_6->set_isRedefinedComponent_10((bool)1); XmlSchemaObject_t1315720168 * L_7 = V_0; NullCheck(L_7); L_7->set_isRedefineChild_9((bool)1); } IL_0034: { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; NullCheck(L_8); bool L_9 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0018; } } IL_003f: { IL2CPP_LEAVE(0x56, FINALLY_0044); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0044; } FINALLY_0044: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_10 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_2; if (L_11) { goto IL_004f; } } IL_004e: { IL2CPP_END_FINALLY(68) } IL_004f: { RuntimeObject* L_12 = V_2; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_12); IL2CPP_END_FINALLY(68) } } // end finally (depth: 1) IL2CPP_CLEANUP(68) { IL2CPP_JUMP_TBL(0x56, IL_0056) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0056: { return; } } // System.Xml.Schema.XmlSchemaRedefine System.Xml.Schema.XmlSchemaRedefine::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaRedefine_t4020109446 * XmlSchemaRedefine_Read_m1202760073 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaRedefine_Read_m1202760073_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaRedefine_t4020109446 * V_0 = NULL; XmlSchemaAnnotation_t2553753397 * V_1 = NULL; XmlSchemaSimpleType_t2678868104 * V_2 = NULL; XmlSchemaComplexType_t3740801802 * V_3 = NULL; XmlSchemaGroup_t1441741786 * V_4 = NULL; XmlSchemaAttributeGroup_t246430545 * V_5 = NULL; { XmlSchemaRedefine_t4020109446 * L_0 = (XmlSchemaRedefine_t4020109446 *)il2cpp_codegen_object_new(XmlSchemaRedefine_t4020109446_il2cpp_TypeInfo_var); XmlSchemaRedefine__ctor_m920169286(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral3379208704, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1629453411, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaRedefine_t4020109446 *)NULL; } IL_0056: { XmlSchemaRedefine_t4020109446 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaRedefine_t4020109446 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaRedefine_t4020109446 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_012d; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaRedefine_t4020109446 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaExternal_set_Id_m3137701086(L_25, L_27, /*hidden argument*/NULL); goto IL_012d; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral4101407196, /*hidden argument*/NULL); if (!L_30) { goto IL_00cb; } } { XmlSchemaRedefine_t4020109446 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_32); NullCheck(L_31); XmlSchemaExternal_set_SchemaLocation_m533136637(L_31, L_33, /*hidden argument*/NULL); goto IL_012d; } IL_00cb: { XmlSchemaReader_t1164558392 * L_34 = ___reader0; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_37 = String_op_Equality_m920492651(NULL /*static, unused*/, L_35, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00f5; } } { XmlSchemaReader_t1164558392 * L_38 = ___reader0; NullCheck(L_38); String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_38); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_40 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_39, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_40) { goto IL_010a; } } IL_00f5: { XmlSchemaReader_t1164558392 * L_41 = ___reader0; NullCheck(L_41); String_t* L_42 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_41); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_42, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_43) { goto IL_0126; } } IL_010a: { ValidationEventHandler_t791314227 * L_44 = ___h1; XmlSchemaReader_t1164558392 * L_45 = ___reader0; NullCheck(L_45); String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_45); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_47 = String_Concat_m3937257545(NULL /*static, unused*/, L_46, _stringLiteral2952131434, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_44, L_47, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_012d; } IL_0126: { XmlSchemaReader_t1164558392 * L_48 = ___reader0; XmlSchemaRedefine_t4020109446 * L_49 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_48, L_49, /*hidden argument*/NULL); } IL_012d: { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); bool L_51 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_50); if (L_51) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_52 = ___reader0; NullCheck(L_52); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_52); XmlSchemaReader_t1164558392 * L_53 = ___reader0; NullCheck(L_53); bool L_54 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_53); if (!L_54) { goto IL_014c; } } { XmlSchemaRedefine_t4020109446 * L_55 = V_0; return L_55; } IL_014c: { goto IL_02a4; } IL_0151: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); int32_t L_57 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_56); if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)15))))) { goto IL_018f; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); String_t* L_59 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_58); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_60 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_59, _stringLiteral3379208704, /*hidden argument*/NULL); if (!L_60) { goto IL_018a; } } { ValidationEventHandler_t791314227 * L_61 = ___h1; XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_62); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_64 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral567928159, L_63, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_61, L_64, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_018a: { goto IL_02af; } IL_018f: { XmlSchemaReader_t1164558392 * L_65 = ___reader0; NullCheck(L_65); String_t* L_66 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_65); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_67 = String_op_Equality_m920492651(NULL /*static, unused*/, L_66, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_67) { goto IL_01c4; } } { XmlSchemaReader_t1164558392 * L_68 = ___reader0; ValidationEventHandler_t791314227 * L_69 = ___h1; XmlSchemaAnnotation_t2553753397 * L_70 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_68, L_69, /*hidden argument*/NULL); V_1 = L_70; XmlSchemaAnnotation_t2553753397 * L_71 = V_1; if (!L_71) { goto IL_01bf; } } { XmlSchemaRedefine_t4020109446 * L_72 = V_0; NullCheck(L_72); XmlSchemaObjectCollection_t1064819932 * L_73 = L_72->get_items_18(); XmlSchemaAnnotation_t2553753397 * L_74 = V_1; NullCheck(L_73); XmlSchemaObjectCollection_Add_m1142549045(L_73, L_74, /*hidden argument*/NULL); } IL_01bf: { goto IL_02a4; } IL_01c4: { XmlSchemaReader_t1164558392 * L_75 = ___reader0; NullCheck(L_75); String_t* L_76 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_75); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_77 = String_op_Equality_m920492651(NULL /*static, unused*/, L_76, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_77) { goto IL_01f9; } } { XmlSchemaReader_t1164558392 * L_78 = ___reader0; ValidationEventHandler_t791314227 * L_79 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_80 = XmlSchemaSimpleType_Read_m1629189972(NULL /*static, unused*/, L_78, L_79, /*hidden argument*/NULL); V_2 = L_80; XmlSchemaSimpleType_t2678868104 * L_81 = V_2; if (!L_81) { goto IL_01f4; } } { XmlSchemaRedefine_t4020109446 * L_82 = V_0; NullCheck(L_82); XmlSchemaObjectCollection_t1064819932 * L_83 = L_82->get_items_18(); XmlSchemaSimpleType_t2678868104 * L_84 = V_2; NullCheck(L_83); XmlSchemaObjectCollection_Add_m1142549045(L_83, L_84, /*hidden argument*/NULL); } IL_01f4: { goto IL_02a4; } IL_01f9: { XmlSchemaReader_t1164558392 * L_85 = ___reader0; NullCheck(L_85); String_t* L_86 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_85); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_87 = String_op_Equality_m920492651(NULL /*static, unused*/, L_86, _stringLiteral2444421609, /*hidden argument*/NULL); if (!L_87) { goto IL_022e; } } { XmlSchemaReader_t1164558392 * L_88 = ___reader0; ValidationEventHandler_t791314227 * L_89 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_90 = XmlSchemaComplexType_Read_m2926646157(NULL /*static, unused*/, L_88, L_89, /*hidden argument*/NULL); V_3 = L_90; XmlSchemaComplexType_t3740801802 * L_91 = V_3; if (!L_91) { goto IL_0229; } } { XmlSchemaRedefine_t4020109446 * L_92 = V_0; NullCheck(L_92); XmlSchemaObjectCollection_t1064819932 * L_93 = L_92->get_items_18(); XmlSchemaComplexType_t3740801802 * L_94 = V_3; NullCheck(L_93); XmlSchemaObjectCollection_Add_m1142549045(L_93, L_94, /*hidden argument*/NULL); } IL_0229: { goto IL_02a4; } IL_022e: { XmlSchemaReader_t1164558392 * L_95 = ___reader0; NullCheck(L_95); String_t* L_96 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_95); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_97 = String_op_Equality_m920492651(NULL /*static, unused*/, L_96, _stringLiteral3122773422, /*hidden argument*/NULL); if (!L_97) { goto IL_0266; } } { XmlSchemaReader_t1164558392 * L_98 = ___reader0; ValidationEventHandler_t791314227 * L_99 = ___h1; XmlSchemaGroup_t1441741786 * L_100 = XmlSchemaGroup_Read_m2989256960(NULL /*static, unused*/, L_98, L_99, /*hidden argument*/NULL); V_4 = L_100; XmlSchemaGroup_t1441741786 * L_101 = V_4; if (!L_101) { goto IL_0261; } } { XmlSchemaRedefine_t4020109446 * L_102 = V_0; NullCheck(L_102); XmlSchemaObjectCollection_t1064819932 * L_103 = L_102->get_items_18(); XmlSchemaGroup_t1441741786 * L_104 = V_4; NullCheck(L_103); XmlSchemaObjectCollection_Add_m1142549045(L_103, L_104, /*hidden argument*/NULL); } IL_0261: { goto IL_02a4; } IL_0266: { XmlSchemaReader_t1164558392 * L_105 = ___reader0; NullCheck(L_105); String_t* L_106 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_105); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_107 = String_op_Equality_m920492651(NULL /*static, unused*/, L_106, _stringLiteral400592889, /*hidden argument*/NULL); if (!L_107) { goto IL_029e; } } { XmlSchemaReader_t1164558392 * L_108 = ___reader0; ValidationEventHandler_t791314227 * L_109 = ___h1; XmlSchemaAttributeGroup_t246430545 * L_110 = XmlSchemaAttributeGroup_Read_m1384675368(NULL /*static, unused*/, L_108, L_109, /*hidden argument*/NULL); V_5 = L_110; XmlSchemaAttributeGroup_t246430545 * L_111 = V_5; if (!L_111) { goto IL_0299; } } { XmlSchemaRedefine_t4020109446 * L_112 = V_0; NullCheck(L_112); XmlSchemaObjectCollection_t1064819932 * L_113 = L_112->get_items_18(); XmlSchemaAttributeGroup_t246430545 * L_114 = V_5; NullCheck(L_113); XmlSchemaObjectCollection_Add_m1142549045(L_113, L_114, /*hidden argument*/NULL); } IL_0299: { goto IL_02a4; } IL_029e: { XmlSchemaReader_t1164558392 * L_115 = ___reader0; NullCheck(L_115); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_115, /*hidden argument*/NULL); } IL_02a4: { XmlSchemaReader_t1164558392 * L_116 = ___reader0; NullCheck(L_116); bool L_117 = XmlSchemaReader_ReadNextElement_m611223709(L_116, /*hidden argument*/NULL); if (L_117) { goto IL_0151; } } IL_02af: { XmlSchemaRedefine_t4020109446 * L_118 = V_0; return L_118; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSequence::.ctor() extern "C" void XmlSchemaSequence__ctor_m2088825835 (XmlSchemaSequence_t2018345177 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence__ctor_m2088825835_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaGroupBase__ctor_m3091716353(__this, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_0 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_0, /*hidden argument*/NULL); __this->set_items_28(L_0); return; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSequence_get_Items_m1057713884 (XmlSchemaSequence_t2018345177 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_items_28(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSequence::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSequence_SetParent_m4014962768 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_SetParent_m4014962768_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_1 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_1); XmlSchemaObjectEnumerator_t503074204 * L_2 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_1, /*hidden argument*/NULL); V_1 = L_2; } IL_0013: try { // begin try (depth: 1) { goto IL_0026; } IL_0018: { XmlSchemaObjectEnumerator_t503074204 * L_3 = V_1; NullCheck(L_3); XmlSchemaObject_t1315720168 * L_4 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_3, /*hidden argument*/NULL); V_0 = L_4; XmlSchemaObject_t1315720168 * L_5 = V_0; NullCheck(L_5); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_5, __this); } IL_0026: { XmlSchemaObjectEnumerator_t503074204 * L_6 = V_1; NullCheck(L_6); bool L_7 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0018; } } IL_0031: { IL2CPP_LEAVE(0x48, FINALLY_0036); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0036; } FINALLY_0036: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_2; if (L_9) { goto IL_0041; } } IL_0040: { IL2CPP_END_FINALLY(54) } IL_0041: { RuntimeObject* L_10 = V_2; NullCheck(L_10); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_10); IL2CPP_END_FINALLY(54) } } // end finally (depth: 1) IL2CPP_CLEANUP(54) { IL2CPP_JUMP_TBL(0x48, IL_0048) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0048: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSequence::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSequence_Compile_m3478356094 (XmlSchemaSequence_t2018345177 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_Compile_m3478356094_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { String_t* L_4 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_5 = ___schema1; NullCheck(L_5); Hashtable_t1853889766 * L_6 = XmlSchema_get_IDCollection_m3725452494(L_5, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_7 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_4, __this, L_6, L_7, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_8 = ___h0; XmlSchema_t3742557897 * L_9 = ___schema1; XmlSchemaParticle_CompileOccurence_m2937686890(__this, L_8, L_9, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_10 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_10); XmlSchemaObjectEnumerator_t503074204 * L_11 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_10, /*hidden argument*/NULL); V_1 = L_11; } IL_003f: try { // begin try (depth: 1) { goto IL_00a8; } IL_0044: { XmlSchemaObjectEnumerator_t503074204 * L_12 = V_1; NullCheck(L_12); XmlSchemaObject_t1315720168 * L_13 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_12, /*hidden argument*/NULL); V_0 = L_13; XmlSchemaObject_t1315720168 * L_14 = V_0; if (((XmlSchemaElement_t427880856 *)IsInstClass((RuntimeObject*)L_14, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var))) { goto IL_0082; } } IL_0056: { XmlSchemaObject_t1315720168 * L_15 = V_0; if (((XmlSchemaGroupRef_t1314446647 *)IsInstClass((RuntimeObject*)L_15, XmlSchemaGroupRef_t1314446647_il2cpp_TypeInfo_var))) { goto IL_0082; } } IL_0061: { XmlSchemaObject_t1315720168 * L_16 = V_0; if (((XmlSchemaChoice_t959520675 *)IsInstClass((RuntimeObject*)L_16, XmlSchemaChoice_t959520675_il2cpp_TypeInfo_var))) { goto IL_0082; } } IL_006c: { XmlSchemaObject_t1315720168 * L_17 = V_0; if (((XmlSchemaSequence_t2018345177 *)IsInstClass((RuntimeObject*)L_17, XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var))) { goto IL_0082; } } IL_0077: { XmlSchemaObject_t1315720168 * L_18 = V_0; if (!((XmlSchemaAny_t1119175207 *)IsInstClass((RuntimeObject*)L_18, XmlSchemaAny_t1119175207_il2cpp_TypeInfo_var))) { goto IL_009c; } } IL_0082: { int32_t L_19 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaObject_t1315720168 * L_20 = V_0; ValidationEventHandler_t791314227 * L_21 = ___h0; XmlSchema_t3742557897 * L_22 = ___schema1; NullCheck(L_20); int32_t L_23 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_20, L_21, L_22); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)L_23))); goto IL_00a8; } IL_009c: { ValidationEventHandler_t791314227 * L_24 = ___h0; XmlSchemaObject_error_m903554348(__this, L_24, _stringLiteral1001627974, /*hidden argument*/NULL); } IL_00a8: { XmlSchemaObjectEnumerator_t503074204 * L_25 = V_1; NullCheck(L_25); bool L_26 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_25, /*hidden argument*/NULL); if (L_26) { goto IL_0044; } } IL_00b3: { IL2CPP_LEAVE(0xCA, FINALLY_00b8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00b8; } FINALLY_00b8: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_27 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_27, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_28 = V_2; if (L_28) { goto IL_00c3; } } IL_00c2: { IL2CPP_END_FINALLY(184) } IL_00c3: { RuntimeObject* L_29 = V_2; NullCheck(L_29); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_29); IL2CPP_END_FINALLY(184) } } // end finally (depth: 1) IL2CPP_CLEANUP(184) { IL2CPP_JUMP_TBL(0xCA, IL_00ca) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ca: { XmlSchema_t3742557897 * L_30 = ___schema1; NullCheck(L_30); Guid_t L_31 = ((XmlSchemaObject_t1315720168 *)L_30)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_31); int32_t L_32 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_32; } } // System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaSequence::GetOptimizedParticle(System.Boolean) extern "C" XmlSchemaParticle_t3828501457 * XmlSchemaSequence_GetOptimizedParticle_m2174831162 (XmlSchemaSequence_t2018345177 * __this, bool ___isTop0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_GetOptimizedParticle_m2174831162_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSequence_t2018345177 * V_0 = NULL; int32_t V_1 = 0; XmlSchemaParticle_t3828501457 * V_2 = NULL; XmlSchemaSequence_t2018345177 * V_3 = NULL; int32_t V_4 = 0; { XmlSchemaParticle_t3828501457 * L_0 = ((XmlSchemaParticle_t3828501457 *)__this)->get_OptimizedParticle_26(); if (!L_0) { goto IL_0012; } } { XmlSchemaParticle_t3828501457 * L_1 = ((XmlSchemaParticle_t3828501457 *)__this)->get_OptimizedParticle_26(); return L_1; } IL_0012: { XmlSchemaObjectCollection_t1064819932 * L_2 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_2); int32_t L_3 = CollectionBase_get_Count_m1708965601(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0038; } } { Decimal_t2948259380 L_4 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(__this, /*hidden argument*/NULL); Decimal_t2948259380 L_5; memset(&L_5, 0, sizeof(L_5)); Decimal__ctor_m1256289983((&L_5), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_6 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_4, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_004a; } } IL_0038: { XmlSchemaParticle_t3828501457 * L_7 = XmlSchemaParticle_get_Empty_m1615870170(NULL /*static, unused*/, /*hidden argument*/NULL); ((XmlSchemaParticle_t3828501457 *)__this)->set_OptimizedParticle_26(L_7); XmlSchemaParticle_t3828501457 * L_8 = ((XmlSchemaParticle_t3828501457 *)__this)->get_OptimizedParticle_26(); return L_8; } IL_004a: { bool L_9 = ___isTop0; if (L_9) { goto IL_00a5; } } { Decimal_t2948259380 L_10 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(__this, /*hidden argument*/NULL); Decimal_t2948259380 L_11; memset(&L_11, 0, sizeof(L_11)); Decimal__ctor_m1256289983((&L_11), 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_12 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_00a5; } } { Decimal_t2948259380 L_13 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(__this, /*hidden argument*/NULL); Decimal_t2948259380 L_14; memset(&L_14, 0, sizeof(L_14)); Decimal__ctor_m1256289983((&L_14), 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_15 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_00a5; } } { XmlSchemaObjectCollection_t1064819932 * L_16 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_16); int32_t L_17 = CollectionBase_get_Count_m1708965601(L_16, /*hidden argument*/NULL); if ((!(((uint32_t)L_17) == ((uint32_t)1)))) { goto IL_00a5; } } { XmlSchemaObjectCollection_t1064819932 * L_18 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_18); XmlSchemaObject_t1315720168 * L_19 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_18, 0); NullCheck(((XmlSchemaParticle_t3828501457 *)CastclassClass((RuntimeObject*)L_19, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var))); XmlSchemaParticle_t3828501457 * L_20 = VirtFuncInvoker1< XmlSchemaParticle_t3828501457 *, bool >::Invoke(8 /* System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::GetOptimizedParticle(System.Boolean) */, ((XmlSchemaParticle_t3828501457 *)CastclassClass((RuntimeObject*)L_19, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)), (bool)0); return L_20; } IL_00a5: { XmlSchemaSequence_t2018345177 * L_21 = (XmlSchemaSequence_t2018345177 *)il2cpp_codegen_object_new(XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var); XmlSchemaSequence__ctor_m2088825835(L_21, /*hidden argument*/NULL); V_0 = L_21; XmlSchemaSequence_t2018345177 * L_22 = V_0; VirtActionInvoker1< XmlSchemaParticle_t3828501457 * >::Invoke(7 /* System.Void System.Xml.Schema.XmlSchemaParticle::CopyInfo(System.Xml.Schema.XmlSchemaParticle) */, __this, L_22); V_1 = 0; goto IL_0196; } IL_00b9: { XmlSchemaObjectCollection_t1064819932 * L_23 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); int32_t L_24 = V_1; NullCheck(L_23); XmlSchemaObject_t1315720168 * L_25 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_23, L_24); V_2 = ((XmlSchemaParticle_t3828501457 *)IsInstClass((RuntimeObject*)L_25, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)); XmlSchemaParticle_t3828501457 * L_26 = V_2; NullCheck(L_26); XmlSchemaParticle_t3828501457 * L_27 = VirtFuncInvoker1< XmlSchemaParticle_t3828501457 *, bool >::Invoke(8 /* System.Xml.Schema.XmlSchemaParticle System.Xml.Schema.XmlSchemaParticle::GetOptimizedParticle(System.Boolean) */, L_26, (bool)0); V_2 = L_27; XmlSchemaParticle_t3828501457 * L_28 = V_2; XmlSchemaParticle_t3828501457 * L_29 = XmlSchemaParticle_get_Empty_m1615870170(NULL /*static, unused*/, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(XmlSchemaParticle_t3828501457 *)L_28) == ((RuntimeObject*)(XmlSchemaParticle_t3828501457 *)L_29)))) { goto IL_00e3; } } { goto IL_0192; } IL_00e3: { XmlSchemaParticle_t3828501457 * L_30 = V_2; if (!((XmlSchemaSequence_t2018345177 *)IsInstClass((RuntimeObject*)L_30, XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var))) { goto IL_0178; } } { XmlSchemaParticle_t3828501457 * L_31 = V_2; NullCheck(L_31); Decimal_t2948259380 L_32 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(L_31, /*hidden argument*/NULL); Decimal_t2948259380 L_33; memset(&L_33, 0, sizeof(L_33)); Decimal__ctor_m1256289983((&L_33), 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_34 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_32, L_33, /*hidden argument*/NULL); if (!L_34) { goto IL_0178; } } { XmlSchemaParticle_t3828501457 * L_35 = V_2; NullCheck(L_35); Decimal_t2948259380 L_36 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(L_35, /*hidden argument*/NULL); Decimal_t2948259380 L_37; memset(&L_37, 0, sizeof(L_37)); Decimal__ctor_m1256289983((&L_37), 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_38 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_36, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_0178; } } { XmlSchemaParticle_t3828501457 * L_39 = V_2; V_3 = ((XmlSchemaSequence_t2018345177 *)IsInstClass((RuntimeObject*)L_39, XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var)); V_4 = 0; goto IL_0161; } IL_0129: { XmlSchemaSequence_t2018345177 * L_40 = V_0; NullCheck(L_40); XmlSchemaObjectCollection_t1064819932 * L_41 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_40); XmlSchemaSequence_t2018345177 * L_42 = V_3; NullCheck(L_42); XmlSchemaObjectCollection_t1064819932 * L_43 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_42); int32_t L_44 = V_4; NullCheck(L_43); XmlSchemaObject_t1315720168 * L_45 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_43, L_44); NullCheck(L_41); XmlSchemaObjectCollection_Add_m1142549045(L_41, L_45, /*hidden argument*/NULL); XmlSchemaSequence_t2018345177 * L_46 = V_0; NullCheck(L_46); XmlSchemaObjectCollection_t1064819932 * L_47 = XmlSchemaGroupBase_get_CompiledItems_m1009637724(L_46, /*hidden argument*/NULL); XmlSchemaSequence_t2018345177 * L_48 = V_3; NullCheck(L_48); XmlSchemaObjectCollection_t1064819932 * L_49 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_48); int32_t L_50 = V_4; NullCheck(L_49); XmlSchemaObject_t1315720168 * L_51 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_49, L_50); NullCheck(L_47); XmlSchemaObjectCollection_Add_m1142549045(L_47, L_51, /*hidden argument*/NULL); int32_t L_52 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1)); } IL_0161: { int32_t L_53 = V_4; XmlSchemaSequence_t2018345177 * L_54 = V_3; NullCheck(L_54); XmlSchemaObjectCollection_t1064819932 * L_55 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_54); NullCheck(L_55); int32_t L_56 = CollectionBase_get_Count_m1708965601(L_55, /*hidden argument*/NULL); if ((((int32_t)L_53) < ((int32_t)L_56))) { goto IL_0129; } } { goto IL_0192; } IL_0178: { XmlSchemaSequence_t2018345177 * L_57 = V_0; NullCheck(L_57); XmlSchemaObjectCollection_t1064819932 * L_58 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_57); XmlSchemaParticle_t3828501457 * L_59 = V_2; NullCheck(L_58); XmlSchemaObjectCollection_Add_m1142549045(L_58, L_59, /*hidden argument*/NULL); XmlSchemaSequence_t2018345177 * L_60 = V_0; NullCheck(L_60); XmlSchemaObjectCollection_t1064819932 * L_61 = XmlSchemaGroupBase_get_CompiledItems_m1009637724(L_60, /*hidden argument*/NULL); XmlSchemaParticle_t3828501457 * L_62 = V_2; NullCheck(L_61); XmlSchemaObjectCollection_Add_m1142549045(L_61, L_62, /*hidden argument*/NULL); } IL_0192: { int32_t L_63 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)1)); } IL_0196: { int32_t L_64 = V_1; XmlSchemaObjectCollection_t1064819932 * L_65 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_65); int32_t L_66 = CollectionBase_get_Count_m1708965601(L_65, /*hidden argument*/NULL); if ((((int32_t)L_64) < ((int32_t)L_66))) { goto IL_00b9; } } { XmlSchemaSequence_t2018345177 * L_67 = V_0; NullCheck(L_67); XmlSchemaObjectCollection_t1064819932 * L_68 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, L_67); NullCheck(L_68); int32_t L_69 = CollectionBase_get_Count_m1708965601(L_68, /*hidden argument*/NULL); if (L_69) { goto IL_01c7; } } { XmlSchemaParticle_t3828501457 * L_70 = XmlSchemaParticle_get_Empty_m1615870170(NULL /*static, unused*/, /*hidden argument*/NULL); ((XmlSchemaParticle_t3828501457 *)__this)->set_OptimizedParticle_26(L_70); goto IL_01ce; } IL_01c7: { XmlSchemaSequence_t2018345177 * L_71 = V_0; ((XmlSchemaParticle_t3828501457 *)__this)->set_OptimizedParticle_26(L_71); } IL_01ce: { XmlSchemaParticle_t3828501457 * L_72 = ((XmlSchemaParticle_t3828501457 *)__this)->get_OptimizedParticle_26(); return L_72; } } // System.Int32 System.Xml.Schema.XmlSchemaSequence::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSequence_Validate_m1924671964 (XmlSchemaSequence_t2018345177 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_Validate_m1924671964_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaParticle_t3828501457 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_CompilationId_7(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { XmlSchemaObjectCollection_t1064819932 * L_4 = XmlSchemaGroupBase_get_CompiledItems_m1009637724(__this, /*hidden argument*/NULL); NullCheck(L_4); CollectionBase_Clear_m1509125218(L_4, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_5 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_5); XmlSchemaObjectEnumerator_t503074204 * L_6 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_5, /*hidden argument*/NULL); V_1 = L_6; } IL_002f: try { // begin try (depth: 1) { goto IL_0062; } IL_0034: { XmlSchemaObjectEnumerator_t503074204 * L_7 = V_1; NullCheck(L_7); XmlSchemaObject_t1315720168 * L_8 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_7, /*hidden argument*/NULL); V_0 = ((XmlSchemaParticle_t3828501457 *)CastclassClass((RuntimeObject*)L_8, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)); int32_t L_9 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaParticle_t3828501457 * L_10 = V_0; ValidationEventHandler_t791314227 * L_11 = ___h0; XmlSchema_t3742557897 * L_12 = ___schema1; NullCheck(L_10); int32_t L_13 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_10, L_11, L_12); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)L_13))); XmlSchemaObjectCollection_t1064819932 * L_14 = XmlSchemaGroupBase_get_CompiledItems_m1009637724(__this, /*hidden argument*/NULL); XmlSchemaParticle_t3828501457 * L_15 = V_0; NullCheck(L_14); XmlSchemaObjectCollection_Add_m1142549045(L_14, L_15, /*hidden argument*/NULL); } IL_0062: { XmlSchemaObjectEnumerator_t503074204 * L_16 = V_1; NullCheck(L_16); bool L_17 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0034; } } IL_006d: { IL2CPP_LEAVE(0x84, FINALLY_0072); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0072; } FINALLY_0072: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_18 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_19 = V_2; if (L_19) { goto IL_007d; } } IL_007c: { IL2CPP_END_FINALLY(114) } IL_007d: { RuntimeObject* L_20 = V_2; NullCheck(L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_20); IL2CPP_END_FINALLY(114) } } // end finally (depth: 1) IL2CPP_CLEANUP(114) { IL2CPP_JUMP_TBL(0x84, IL_0084) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0084: { XmlSchema_t3742557897 * L_21 = ___schema1; NullCheck(L_21); Guid_t L_22 = ((XmlSchemaObject_t1315720168 *)L_21)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_22); int32_t L_23 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_23; } } // System.Boolean System.Xml.Schema.XmlSchemaSequence::ValidateDerivationByRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" bool XmlSchemaSequence_ValidateDerivationByRestriction_m3468271002 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaParticle_t3828501457 * ___baseParticle0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___raiseError3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_ValidateDerivationByRestriction_m3468271002_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaElement_t427880856 * V_0 = NULL; XmlSchemaSequence_t2018345177 * V_1 = NULL; XmlSchemaAll_t1118454309 * V_2 = NULL; XmlSchemaObjectCollection_t1064819932 * V_3 = NULL; int32_t V_4 = 0; XmlSchemaElement_t427880856 * V_5 = NULL; XmlSchemaElement_t427880856 * V_6 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_7 = NULL; XmlSchemaElement_t427880856 * V_8 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_9 = NULL; XmlSchemaAny_t1119175207 * V_10 = NULL; XmlSchemaChoice_t959520675 * V_11 = NULL; bool V_12 = false; RuntimeObject* V_13 = NULL; RuntimeObject* V_14 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaParticle_t3828501457 * L_0 = ___baseParticle0; if ((!(((RuntimeObject*)(XmlSchemaSequence_t2018345177 *)__this) == ((RuntimeObject*)(XmlSchemaParticle_t3828501457 *)L_0)))) { goto IL_0009; } } { return (bool)1; } IL_0009: { XmlSchemaParticle_t3828501457 * L_1 = ___baseParticle0; V_0 = ((XmlSchemaElement_t427880856 *)IsInstClass((RuntimeObject*)L_1, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaElement_t427880856 * L_2 = V_0; if (!L_2) { goto IL_002b; } } { bool L_3 = ___raiseError3; if (!L_3) { goto IL_0029; } } { ValidationEventHandler_t791314227 * L_4 = ___h1; XmlSchemaObject_error_m903554348(__this, L_4, _stringLiteral1711926346, /*hidden argument*/NULL); } IL_0029: { return (bool)0; } IL_002b: { XmlSchemaParticle_t3828501457 * L_5 = ___baseParticle0; V_1 = ((XmlSchemaSequence_t2018345177 *)IsInstClass((RuntimeObject*)L_5, XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var)); XmlSchemaSequence_t2018345177 * L_6 = V_1; if (!L_6) { goto IL_00b0; } } { XmlSchemaSequence_t2018345177 * L_7 = V_1; ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchema_t3742557897 * L_9 = ___schema2; bool L_10 = ___raiseError3; bool L_11 = VirtFuncInvoker4< bool, XmlSchemaParticle_t3828501457 *, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 *, bool >::Invoke(9 /* System.Boolean System.Xml.Schema.XmlSchemaParticle::ValidateOccurenceRangeOK(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) */, __this, L_7, L_8, L_9, L_10); if (L_11) { goto IL_004a; } } { return (bool)0; } IL_004a: { XmlSchemaSequence_t2018345177 * L_12 = V_1; NullCheck(L_12); Decimal_t2948259380 L_13 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(L_12, /*hidden argument*/NULL); Decimal_t2948259380 L_14; memset(&L_14, 0, sizeof(L_14)); Decimal__ctor_m1256289983((&L_14), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_15 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_00a4; } } { XmlSchemaSequence_t2018345177 * L_16 = V_1; NullCheck(L_16); Decimal_t2948259380 L_17 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(L_16, /*hidden argument*/NULL); Decimal_t2948259380 L_18; memset(&L_18, 0, sizeof(L_18)); Decimal__ctor_m1256289983((&L_18), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_19 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_17, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_00a4; } } { Decimal_t2948259380 L_20 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(__this, /*hidden argument*/NULL); Decimal_t2948259380 L_21; memset(&L_21, 0, sizeof(L_21)); Decimal__ctor_m1256289983((&L_21), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_22 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_20, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00a4; } } { Decimal_t2948259380 L_23 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(__this, /*hidden argument*/NULL); Decimal_t2948259380 L_24; memset(&L_24, 0, sizeof(L_24)); Decimal__ctor_m1256289983((&L_24), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_25 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00a4; } } { return (bool)1; } IL_00a4: { XmlSchemaSequence_t2018345177 * L_26 = V_1; ValidationEventHandler_t791314227 * L_27 = ___h1; XmlSchema_t3742557897 * L_28 = ___schema2; bool L_29 = ___raiseError3; bool L_30 = XmlSchemaGroupBase_ValidateRecurse_m3621635736(__this, L_26, L_27, L_28, L_29, /*hidden argument*/NULL); return L_30; } IL_00b0: { XmlSchemaParticle_t3828501457 * L_31 = ___baseParticle0; V_2 = ((XmlSchemaAll_t1118454309 *)IsInstClass((RuntimeObject*)L_31, XmlSchemaAll_t1118454309_il2cpp_TypeInfo_var)); XmlSchemaAll_t1118454309 * L_32 = V_2; if (!L_32) { goto IL_023a; } } { XmlSchemaObjectCollection_t1064819932 * L_33 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_33, /*hidden argument*/NULL); V_3 = L_33; V_4 = 0; goto IL_01ab; } IL_00cb: { XmlSchemaObjectCollection_t1064819932 * L_34 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); int32_t L_35 = V_4; NullCheck(L_34); XmlSchemaObject_t1315720168 * L_36 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_34, L_35); V_5 = ((XmlSchemaElement_t427880856 *)IsInstClass((RuntimeObject*)L_36, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaElement_t427880856 * L_37 = V_5; if (L_37) { goto IL_00fb; } } { bool L_38 = ___raiseError3; if (!L_38) { goto IL_00f9; } } { ValidationEventHandler_t791314227 * L_39 = ___h1; XmlSchemaObject_error_m903554348(__this, L_39, _stringLiteral1357803242, /*hidden argument*/NULL); } IL_00f9: { return (bool)0; } IL_00fb: { XmlSchemaAll_t1118454309 * L_40 = V_2; NullCheck(L_40); XmlSchemaObjectCollection_t1064819932 * L_41 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaAll::get_Items() */, L_40); NullCheck(L_41); XmlSchemaObjectEnumerator_t503074204 * L_42 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_41, /*hidden argument*/NULL); V_7 = L_42; } IL_0108: try { // begin try (depth: 1) { goto IL_017e; } IL_010d: { XmlSchemaObjectEnumerator_t503074204 * L_43 = V_7; NullCheck(L_43); XmlSchemaObject_t1315720168 * L_44 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_43, /*hidden argument*/NULL); V_6 = ((XmlSchemaElement_t427880856 *)CastclassClass((RuntimeObject*)L_44, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaElement_t427880856 * L_45 = V_6; NullCheck(L_45); XmlQualifiedName_t2760654312 * L_46 = XmlSchemaElement_get_QualifiedName_m2688553928(L_45, /*hidden argument*/NULL); XmlSchemaElement_t427880856 * L_47 = V_5; NullCheck(L_47); XmlQualifiedName_t2760654312 * L_48 = XmlSchemaElement_get_QualifiedName_m2688553928(L_47, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_49 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_46, L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_017e; } } IL_0133: { XmlSchemaObjectCollection_t1064819932 * L_50 = V_3; XmlSchemaElement_t427880856 * L_51 = V_6; NullCheck(L_50); bool L_52 = XmlSchemaObjectCollection_Contains_m123951714(L_50, L_51, /*hidden argument*/NULL); if (!L_52) { goto IL_015b; } } IL_0140: { bool L_53 = ___raiseError3; if (!L_53) { goto IL_0153; } } IL_0147: { ValidationEventHandler_t791314227 * L_54 = ___h1; XmlSchemaObject_error_m903554348(__this, L_54, _stringLiteral4003800678, /*hidden argument*/NULL); } IL_0153: { V_12 = (bool)0; IL2CPP_LEAVE(0x276, FINALLY_018f); } IL_015b: { XmlSchemaObjectCollection_t1064819932 * L_55 = V_3; XmlSchemaElement_t427880856 * L_56 = V_6; NullCheck(L_55); XmlSchemaObjectCollection_Add_m1142549045(L_55, L_56, /*hidden argument*/NULL); XmlSchemaElement_t427880856 * L_57 = V_5; XmlSchemaElement_t427880856 * L_58 = V_6; ValidationEventHandler_t791314227 * L_59 = ___h1; XmlSchema_t3742557897 * L_60 = ___schema2; bool L_61 = ___raiseError3; NullCheck(L_57); bool L_62 = VirtFuncInvoker4< bool, XmlSchemaParticle_t3828501457 *, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 *, bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaElement::ValidateDerivationByRestriction(System.Xml.Schema.XmlSchemaParticle,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) */, L_57, L_58, L_59, L_60, L_61); if (L_62) { goto IL_017e; } } IL_0176: { V_12 = (bool)0; IL2CPP_LEAVE(0x276, FINALLY_018f); } IL_017e: { XmlSchemaObjectEnumerator_t503074204 * L_63 = V_7; NullCheck(L_63); bool L_64 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_63, /*hidden argument*/NULL); if (L_64) { goto IL_010d; } } IL_018a: { IL2CPP_LEAVE(0x1A5, FINALLY_018f); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_018f; } FINALLY_018f: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_65 = V_7; V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_65, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_66 = V_13; if (L_66) { goto IL_019d; } } IL_019c: { IL2CPP_END_FINALLY(399) } IL_019d: { RuntimeObject* L_67 = V_13; NullCheck(L_67); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_67); IL2CPP_END_FINALLY(399) } } // end finally (depth: 1) IL2CPP_CLEANUP(399) { IL2CPP_JUMP_TBL(0x276, IL_0276) IL2CPP_JUMP_TBL(0x1A5, IL_01a5) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01a5: { int32_t L_68 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1)); } IL_01ab: { int32_t L_69 = V_4; XmlSchemaObjectCollection_t1064819932 * L_70 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_70); int32_t L_71 = CollectionBase_get_Count_m1708965601(L_70, /*hidden argument*/NULL); if ((((int32_t)L_69) < ((int32_t)L_71))) { goto IL_00cb; } } { XmlSchemaAll_t1118454309 * L_72 = V_2; NullCheck(L_72); XmlSchemaObjectCollection_t1064819932 * L_73 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaAll::get_Items() */, L_72); NullCheck(L_73); XmlSchemaObjectEnumerator_t503074204 * L_74 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_73, /*hidden argument*/NULL); V_9 = L_74; } IL_01ca: try { // begin try (depth: 1) { goto IL_0211; } IL_01cf: { XmlSchemaObjectEnumerator_t503074204 * L_75 = V_9; NullCheck(L_75); XmlSchemaObject_t1315720168 * L_76 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_75, /*hidden argument*/NULL); V_8 = ((XmlSchemaElement_t427880856 *)CastclassClass((RuntimeObject*)L_76, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaObjectCollection_t1064819932 * L_77 = V_3; XmlSchemaElement_t427880856 * L_78 = V_8; NullCheck(L_77); bool L_79 = XmlSchemaObjectCollection_Contains_m123951714(L_77, L_78, /*hidden argument*/NULL); if (L_79) { goto IL_0211; } } IL_01ea: { XmlSchemaElement_t427880856 * L_80 = V_8; NullCheck(L_80); bool L_81 = VirtFuncInvoker0< bool >::Invoke(11 /* System.Boolean System.Xml.Schema.XmlSchemaParticle::ValidateIsEmptiable() */, L_80); if (L_81) { goto IL_0211; } } IL_01f6: { bool L_82 = ___raiseError3; if (!L_82) { goto IL_0209; } } IL_01fd: { ValidationEventHandler_t791314227 * L_83 = ___h1; XmlSchemaObject_error_m903554348(__this, L_83, _stringLiteral3026504829, /*hidden argument*/NULL); } IL_0209: { V_12 = (bool)0; IL2CPP_LEAVE(0x276, FINALLY_0222); } IL_0211: { XmlSchemaObjectEnumerator_t503074204 * L_84 = V_9; NullCheck(L_84); bool L_85 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_84, /*hidden argument*/NULL); if (L_85) { goto IL_01cf; } } IL_021d: { IL2CPP_LEAVE(0x238, FINALLY_0222); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0222; } FINALLY_0222: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_86 = V_9; V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_86, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_87 = V_14; if (L_87) { goto IL_0230; } } IL_022f: { IL2CPP_END_FINALLY(546) } IL_0230: { RuntimeObject* L_88 = V_14; NullCheck(L_88); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_88); IL2CPP_END_FINALLY(546) } } // end finally (depth: 1) IL2CPP_CLEANUP(546) { IL2CPP_JUMP_TBL(0x276, IL_0276) IL2CPP_JUMP_TBL(0x238, IL_0238) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0238: { return (bool)1; } IL_023a: { XmlSchemaParticle_t3828501457 * L_89 = ___baseParticle0; V_10 = ((XmlSchemaAny_t1119175207 *)IsInstClass((RuntimeObject*)L_89, XmlSchemaAny_t1119175207_il2cpp_TypeInfo_var)); XmlSchemaAny_t1119175207 * L_90 = V_10; if (!L_90) { goto IL_0256; } } { XmlSchemaAny_t1119175207 * L_91 = V_10; ValidationEventHandler_t791314227 * L_92 = ___h1; XmlSchema_t3742557897 * L_93 = ___schema2; bool L_94 = ___raiseError3; bool L_95 = XmlSchemaGroupBase_ValidateNSRecurseCheckCardinality_m4207734782(__this, L_91, L_92, L_93, L_94, /*hidden argument*/NULL); return L_95; } IL_0256: { XmlSchemaParticle_t3828501457 * L_96 = ___baseParticle0; V_11 = ((XmlSchemaChoice_t959520675 *)IsInstClass((RuntimeObject*)L_96, XmlSchemaChoice_t959520675_il2cpp_TypeInfo_var)); XmlSchemaChoice_t959520675 * L_97 = V_11; if (!L_97) { goto IL_0274; } } { XmlSchemaChoice_t959520675 * L_98 = V_11; ValidationEventHandler_t791314227 * L_99 = ___h1; XmlSchema_t3742557897 * L_100 = ___schema2; bool L_101 = ___raiseError3; bool L_102 = XmlSchemaGroupBase_ValidateSeqRecurseMapSumCommon_m2619457587(__this, L_98, L_99, L_100, (bool)0, (bool)1, L_101, /*hidden argument*/NULL); return L_102; } IL_0274: { return (bool)1; } IL_0276: { bool L_103 = V_12; return L_103; } } // System.Decimal System.Xml.Schema.XmlSchemaSequence::GetMinEffectiveTotalRange() extern "C" Decimal_t2948259380 XmlSchemaSequence_GetMinEffectiveTotalRange_m230323811 (XmlSchemaSequence_t2018345177 * __this, const RuntimeMethod* method) { { Decimal_t2948259380 L_0 = XmlSchemaParticle_GetMinEffectiveTotalRangeAllAndSequence_m4225731748(__this, /*hidden argument*/NULL); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUniqueParticleAttribution(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUniqueParticleAttribution_m1382777206 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___qnames0, ArrayList_t2718874744 * ___nsNames1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) { { XmlSchemaObjectTable_t2546974348 * L_0 = ___qnames0; ArrayList_t2718874744 * L_1 = ___nsNames1; ValidationEventHandler_t791314227 * L_2 = ___h2; XmlSchema_t3742557897 * L_3 = ___schema3; XmlSchemaSequence_ValidateUPAOnHeadingOptionalComponents_m2072039233(__this, L_0, L_1, L_2, L_3, /*hidden argument*/NULL); XmlSchemaObjectTable_t2546974348 * L_4 = ___qnames0; ArrayList_t2718874744 * L_5 = ___nsNames1; ValidationEventHandler_t791314227 * L_6 = ___h2; XmlSchema_t3742557897 * L_7 = ___schema3; XmlSchemaSequence_ValidateUPAOnItems_m3453552008(__this, L_4, L_5, L_6, L_7, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUPAOnHeadingOptionalComponents(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUPAOnHeadingOptionalComponents_m2072039233 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___qnames0, ArrayList_t2718874744 * ___nsNames1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_ValidateUPAOnHeadingOptionalComponents_m2072039233_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaParticle_t3828501457 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObjectCollection_t1064819932 * L_0 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_0); XmlSchemaObjectEnumerator_t503074204 * L_1 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_0, /*hidden argument*/NULL); V_1 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0043; } IL_0011: { XmlSchemaObjectEnumerator_t503074204 * L_2 = V_1; NullCheck(L_2); XmlSchemaObject_t1315720168 * L_3 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_2, /*hidden argument*/NULL); V_0 = ((XmlSchemaParticle_t3828501457 *)CastclassClass((RuntimeObject*)L_3, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)); XmlSchemaParticle_t3828501457 * L_4 = V_0; XmlSchemaObjectTable_t2546974348 * L_5 = ___qnames0; ArrayList_t2718874744 * L_6 = ___nsNames1; ValidationEventHandler_t791314227 * L_7 = ___h2; XmlSchema_t3742557897 * L_8 = ___schema3; NullCheck(L_4); VirtActionInvoker4< XmlSchemaObjectTable_t2546974348 *, ArrayList_t2718874744 *, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(13 /* System.Void System.Xml.Schema.XmlSchemaParticle::ValidateUniqueParticleAttribution(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_4, L_5, L_6, L_7, L_8); XmlSchemaParticle_t3828501457 * L_9 = V_0; NullCheck(L_9); Decimal_t2948259380 L_10 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(L_9, /*hidden argument*/NULL); Decimal_t2948259380 L_11; memset(&L_11, 0, sizeof(L_11)); Decimal__ctor_m1256289983((&L_11), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_12 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0043; } } IL_003e: { goto IL_004e; } IL_0043: { XmlSchemaObjectEnumerator_t503074204 * L_13 = V_1; NullCheck(L_13); bool L_14 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0011; } } IL_004e: { IL2CPP_LEAVE(0x65, FINALLY_0053); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0053; } FINALLY_0053: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_15 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_15, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_16 = V_2; if (L_16) { goto IL_005e; } } IL_005d: { IL2CPP_END_FINALLY(83) } IL_005e: { RuntimeObject* L_17 = V_2; NullCheck(L_17); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_17); IL2CPP_END_FINALLY(83) } } // end finally (depth: 1) IL2CPP_CLEANUP(83) { IL2CPP_JUMP_TBL(0x65, IL_0065) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0065: { return; } } // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUPAOnItems(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUPAOnItems_m3453552008 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___qnames0, ArrayList_t2718874744 * ___nsNames1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_ValidateUPAOnItems_m3453552008_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObjectTable_t2546974348 * V_0 = NULL; ArrayList_t2718874744 * V_1 = NULL; XmlSchemaObjectTable_t2546974348 * V_2 = NULL; ArrayList_t2718874744 * V_3 = NULL; int32_t V_4 = 0; XmlSchemaParticle_t3828501457 * V_5 = NULL; XmlQualifiedName_t2760654312 * V_6 = NULL; RuntimeObject* V_7 = NULL; RuntimeObject * V_8 = NULL; RuntimeObject* V_9 = NULL; XmlQualifiedName_t2760654312 * V_10 = NULL; RuntimeObject* V_11 = NULL; RuntimeObject* V_12 = NULL; RuntimeObject* V_13 = NULL; RuntimeObject* V_14 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObjectTable_t2546974348 * L_0 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_0, /*hidden argument*/NULL); V_0 = L_0; ArrayList_t2718874744 * L_1 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_1, /*hidden argument*/NULL); V_1 = L_1; XmlSchemaObjectTable_t2546974348 * L_2 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_2, /*hidden argument*/NULL); V_2 = L_2; ArrayList_t2718874744 * L_3 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_3, /*hidden argument*/NULL); V_3 = L_3; V_4 = 0; goto IL_017f; } IL_0020: { XmlSchemaObjectCollection_t1064819932 * L_4 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); int32_t L_5 = V_4; NullCheck(L_4); XmlSchemaObject_t1315720168 * L_6 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_4, L_5); V_5 = ((XmlSchemaParticle_t3828501457 *)IsInstClass((RuntimeObject*)L_6, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)); XmlSchemaParticle_t3828501457 * L_7 = V_5; XmlSchemaObjectTable_t2546974348 * L_8 = V_0; ArrayList_t2718874744 * L_9 = V_1; ValidationEventHandler_t791314227 * L_10 = ___h2; XmlSchema_t3742557897 * L_11 = ___schema3; NullCheck(L_7); VirtActionInvoker4< XmlSchemaObjectTable_t2546974348 *, ArrayList_t2718874744 *, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(13 /* System.Void System.Xml.Schema.XmlSchemaParticle::ValidateUniqueParticleAttribution(System.Xml.Schema.XmlSchemaObjectTable,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_7, L_8, L_9, L_10, L_11); XmlSchemaParticle_t3828501457 * L_12 = V_5; NullCheck(L_12); Decimal_t2948259380 L_13 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(L_12, /*hidden argument*/NULL); XmlSchemaParticle_t3828501457 * L_14 = V_5; NullCheck(L_14); Decimal_t2948259380 L_15 = XmlSchemaParticle_get_ValidatedMaxOccurs_m4011260683(L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_16 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_13, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0069; } } { XmlSchemaObjectTable_t2546974348 * L_17 = V_0; NullCheck(L_17); XmlSchemaObjectTable_Clear_m8811103(L_17, /*hidden argument*/NULL); ArrayList_t2718874744 * L_18 = V_1; NullCheck(L_18); VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_18); goto IL_0179; } IL_0069: { XmlSchemaParticle_t3828501457 * L_19 = V_5; NullCheck(L_19); Decimal_t2948259380 L_20 = XmlSchemaParticle_get_ValidatedMinOccurs_m4117380405(L_19, /*hidden argument*/NULL); Decimal_t2948259380 L_21; memset(&L_21, 0, sizeof(L_21)); Decimal__ctor_m1256289983((&L_21), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_22 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_20, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_0115; } } { XmlSchemaObjectTable_t2546974348 * L_23 = V_2; NullCheck(L_23); RuntimeObject* L_24 = XmlSchemaObjectTable_get_Names_m80344028(L_23, /*hidden argument*/NULL); NullCheck(L_24); RuntimeObject* L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_24); V_7 = L_25; } IL_008d: try { // begin try (depth: 1) { goto IL_00a9; } IL_0092: { RuntimeObject* L_26 = V_7; NullCheck(L_26); RuntimeObject * L_27 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_26); V_6 = ((XmlQualifiedName_t2760654312 *)CastclassClass((RuntimeObject*)L_27, XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var)); XmlSchemaObjectTable_t2546974348 * L_28 = V_0; XmlQualifiedName_t2760654312 * L_29 = V_6; NullCheck(L_28); XmlSchemaObjectTable_Set_m2976494497(L_28, L_29, (XmlSchemaObject_t1315720168 *)NULL, /*hidden argument*/NULL); } IL_00a9: { RuntimeObject* L_30 = V_7; NullCheck(L_30); bool L_31 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_30); if (L_31) { goto IL_0092; } } IL_00b5: { IL2CPP_LEAVE(0xD0, FINALLY_00ba); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ba; } FINALLY_00ba: { // begin finally (depth: 1) { RuntimeObject* L_32 = V_7; V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_32, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_33 = V_12; if (L_33) { goto IL_00c8; } } IL_00c7: { IL2CPP_END_FINALLY(186) } IL_00c8: { RuntimeObject* L_34 = V_12; NullCheck(L_34); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_34); IL2CPP_END_FINALLY(186) } } // end finally (depth: 1) IL2CPP_CLEANUP(186) { IL2CPP_JUMP_TBL(0xD0, IL_00d0) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00d0: { ArrayList_t2718874744 * L_35 = V_3; NullCheck(L_35); RuntimeObject* L_36 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_35); V_9 = L_36; } IL_00d8: try { // begin try (depth: 1) { goto IL_00ee; } IL_00dd: { RuntimeObject* L_37 = V_9; NullCheck(L_37); RuntimeObject * L_38 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_37); V_8 = L_38; ArrayList_t2718874744 * L_39 = V_1; RuntimeObject * L_40 = V_8; NullCheck(L_39); VirtActionInvoker1< RuntimeObject * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_39, L_40); } IL_00ee: { RuntimeObject* L_41 = V_9; NullCheck(L_41); bool L_42 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_41); if (L_42) { goto IL_00dd; } } IL_00fa: { IL2CPP_LEAVE(0x115, FINALLY_00ff); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ff; } FINALLY_00ff: { // begin finally (depth: 1) { RuntimeObject* L_43 = V_9; V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_44 = V_13; if (L_44) { goto IL_010d; } } IL_010c: { IL2CPP_END_FINALLY(255) } IL_010d: { RuntimeObject* L_45 = V_13; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_45); IL2CPP_END_FINALLY(255) } } // end finally (depth: 1) IL2CPP_CLEANUP(255) { IL2CPP_JUMP_TBL(0x115, IL_0115) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0115: { XmlSchemaObjectTable_t2546974348 * L_46 = V_0; NullCheck(L_46); RuntimeObject* L_47 = XmlSchemaObjectTable_get_Names_m80344028(L_46, /*hidden argument*/NULL); NullCheck(L_47); RuntimeObject* L_48 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_47); V_11 = L_48; } IL_0122: try { // begin try (depth: 1) { goto IL_0145; } IL_0127: { RuntimeObject* L_49 = V_11; NullCheck(L_49); RuntimeObject * L_50 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_49); V_10 = ((XmlQualifiedName_t2760654312 *)CastclassClass((RuntimeObject*)L_50, XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var)); XmlSchemaObjectTable_t2546974348 * L_51 = V_2; XmlQualifiedName_t2760654312 * L_52 = V_10; XmlSchemaObjectTable_t2546974348 * L_53 = V_0; XmlQualifiedName_t2760654312 * L_54 = V_10; NullCheck(L_53); XmlSchemaObject_t1315720168 * L_55 = XmlSchemaObjectTable_get_Item_m170185878(L_53, L_54, /*hidden argument*/NULL); NullCheck(L_51); XmlSchemaObjectTable_Set_m2976494497(L_51, L_52, L_55, /*hidden argument*/NULL); } IL_0145: { RuntimeObject* L_56 = V_11; NullCheck(L_56); bool L_57 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_56); if (L_57) { goto IL_0127; } } IL_0151: { IL2CPP_LEAVE(0x16C, FINALLY_0156); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0156; } FINALLY_0156: { // begin finally (depth: 1) { RuntimeObject* L_58 = V_11; V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_58, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_59 = V_14; if (L_59) { goto IL_0164; } } IL_0163: { IL2CPP_END_FINALLY(342) } IL_0164: { RuntimeObject* L_60 = V_14; NullCheck(L_60); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_60); IL2CPP_END_FINALLY(342) } } // end finally (depth: 1) IL2CPP_CLEANUP(342) { IL2CPP_JUMP_TBL(0x16C, IL_016c) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_016c: { ArrayList_t2718874744 * L_61 = V_3; NullCheck(L_61); VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_61); ArrayList_t2718874744 * L_62 = V_3; ArrayList_t2718874744 * L_63 = V_1; NullCheck(L_62); VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_62, L_63); } IL_0179: { int32_t L_64 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)); } IL_017f: { int32_t L_65 = V_4; XmlSchemaObjectCollection_t1064819932 * L_66 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_66); int32_t L_67 = CollectionBase_get_Count_m1708965601(L_66, /*hidden argument*/NULL); if ((((int32_t)L_65) < ((int32_t)L_67))) { goto IL_0020; } } { return; } } // System.Void System.Xml.Schema.XmlSchemaSequence::ValidateUniqueTypeAttribution(System.Xml.Schema.XmlSchemaObjectTable,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSequence_ValidateUniqueTypeAttribution_m176015213 (XmlSchemaSequence_t2018345177 * __this, XmlSchemaObjectTable_t2546974348 * ___labels0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_ValidateUniqueTypeAttribution_m176015213_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaParticle_t3828501457 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObjectCollection_t1064819932 * L_0 = VirtFuncInvoker0< XmlSchemaObjectCollection_t1064819932 * >::Invoke(17 /* System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSequence::get_Items() */, __this); NullCheck(L_0); XmlSchemaObjectEnumerator_t503074204 * L_1 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_0, /*hidden argument*/NULL); V_1 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_0026; } IL_0011: { XmlSchemaObjectEnumerator_t503074204 * L_2 = V_1; NullCheck(L_2); XmlSchemaObject_t1315720168 * L_3 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_2, /*hidden argument*/NULL); V_0 = ((XmlSchemaParticle_t3828501457 *)CastclassClass((RuntimeObject*)L_3, XmlSchemaParticle_t3828501457_il2cpp_TypeInfo_var)); XmlSchemaParticle_t3828501457 * L_4 = V_0; XmlSchemaObjectTable_t2546974348 * L_5 = ___labels0; ValidationEventHandler_t791314227 * L_6 = ___h1; XmlSchema_t3742557897 * L_7 = ___schema2; NullCheck(L_4); VirtActionInvoker3< XmlSchemaObjectTable_t2546974348 *, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(14 /* System.Void System.Xml.Schema.XmlSchemaParticle::ValidateUniqueTypeAttribution(System.Xml.Schema.XmlSchemaObjectTable,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_4, L_5, L_6, L_7); } IL_0026: { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; NullCheck(L_8); bool L_9 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_0011; } } IL_0031: { IL2CPP_LEAVE(0x48, FINALLY_0036); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0036; } FINALLY_0036: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_10 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_2; if (L_11) { goto IL_0041; } } IL_0040: { IL2CPP_END_FINALLY(54) } IL_0041: { RuntimeObject* L_12 = V_2; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_12); IL2CPP_END_FINALLY(54) } } // end finally (depth: 1) IL2CPP_CLEANUP(54) { IL2CPP_JUMP_TBL(0x48, IL_0048) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0048: { return; } } // System.Xml.Schema.XmlSchemaSequence System.Xml.Schema.XmlSchemaSequence::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSequence_t2018345177 * XmlSchemaSequence_Read_m4225823128 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSequence_Read_m4225823128_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSequence_t2018345177 * V_0 = NULL; Exception_t * V_1 = NULL; Exception_t * V_2 = NULL; int32_t V_3 = 0; XmlSchemaAnnotation_t2553753397 * V_4 = NULL; XmlSchemaElement_t427880856 * V_5 = NULL; XmlSchemaGroupRef_t1314446647 * V_6 = NULL; XmlSchemaChoice_t959520675 * V_7 = NULL; XmlSchemaSequence_t2018345177 * V_8 = NULL; XmlSchemaAny_t1119175207 * V_9 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaSequence_t2018345177 * L_0 = (XmlSchemaSequence_t2018345177 *)il2cpp_codegen_object_new(XmlSchemaSequence_t2018345177_il2cpp_TypeInfo_var); XmlSchemaSequence__ctor_m2088825835(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral3810116474, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2182914272, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSequence_t2018345177 *)NULL; } IL_0056: { XmlSchemaSequence_t2018345177 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSequence_t2018345177 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSequence_t2018345177 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0197; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaSequence_t2018345177 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_0197; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral660438115, /*hidden argument*/NULL); if (!L_30) { goto IL_00ed; } } IL_00ba: try { // begin try (depth: 1) XmlSchemaSequence_t2018345177 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_32); NullCheck(L_31); XmlSchemaParticle_set_MaxOccursString_m1136362008(L_31, L_33, /*hidden argument*/NULL); goto IL_00e8; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00cb; throw e; } CATCH_00cb: { // begin catch(System.Exception) V_1 = ((Exception_t *)__exception_local); ValidationEventHandler_t791314227 * L_34 = ___h1; XmlSchemaReader_t1164558392 * L_35 = ___reader0; NullCheck(L_35); String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_35); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_37 = String_Concat_m3937257545(NULL /*static, unused*/, L_36, _stringLiteral1495269871, /*hidden argument*/NULL); Exception_t * L_38 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_34, L_37, L_38, /*hidden argument*/NULL); goto IL_00e8; } // end catch (depth: 1) IL_00e8: { goto IL_0197; } IL_00ed: { XmlSchemaReader_t1164558392 * L_39 = ___reader0; NullCheck(L_39); String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_39); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_41 = String_op_Equality_m920492651(NULL /*static, unused*/, L_40, _stringLiteral837243573, /*hidden argument*/NULL); if (!L_41) { goto IL_0135; } } IL_0102: try { // begin try (depth: 1) XmlSchemaSequence_t2018345177 * L_42 = V_0; XmlSchemaReader_t1164558392 * L_43 = ___reader0; NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_43); NullCheck(L_42); XmlSchemaParticle_set_MinOccursString_m2757042850(L_42, L_44, /*hidden argument*/NULL); goto IL_0130; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0113; throw e; } CATCH_0113: { // begin catch(System.Exception) V_2 = ((Exception_t *)__exception_local); ValidationEventHandler_t791314227 * L_45 = ___h1; XmlSchemaReader_t1164558392 * L_46 = ___reader0; NullCheck(L_46); String_t* L_47 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_46); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_48 = String_Concat_m3937257545(NULL /*static, unused*/, L_47, _stringLiteral2227061191, /*hidden argument*/NULL); Exception_t * L_49 = V_2; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_45, L_48, L_49, /*hidden argument*/NULL); goto IL_0130; } // end catch (depth: 1) IL_0130: { goto IL_0197; } IL_0135: { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); String_t* L_51 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_50); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_52 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_53 = String_op_Equality_m920492651(NULL /*static, unused*/, L_51, L_52, /*hidden argument*/NULL); if (!L_53) { goto IL_015f; } } { XmlSchemaReader_t1164558392 * L_54 = ___reader0; NullCheck(L_54); String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_54); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_56 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_55, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_56) { goto IL_0174; } } IL_015f: { XmlSchemaReader_t1164558392 * L_57 = ___reader0; NullCheck(L_57); String_t* L_58 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_57); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_59 = String_op_Equality_m920492651(NULL /*static, unused*/, L_58, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_59) { goto IL_0190; } } IL_0174: { ValidationEventHandler_t791314227 * L_60 = ___h1; XmlSchemaReader_t1164558392 * L_61 = ___reader0; NullCheck(L_61); String_t* L_62 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_61); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_63 = String_Concat_m3937257545(NULL /*static, unused*/, L_62, _stringLiteral3509310898, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_60, L_63, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0197; } IL_0190: { XmlSchemaReader_t1164558392 * L_64 = ___reader0; XmlSchemaSequence_t2018345177 * L_65 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_64, L_65, /*hidden argument*/NULL); } IL_0197: { XmlSchemaReader_t1164558392 * L_66 = ___reader0; NullCheck(L_66); bool L_67 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_66); if (L_67) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_68); XmlSchemaReader_t1164558392 * L_69 = ___reader0; NullCheck(L_69); bool L_70 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_69); if (!L_70) { goto IL_01b6; } } { XmlSchemaSequence_t2018345177 * L_71 = V_0; return L_71; } IL_01b6: { V_3 = 1; goto IL_0365; } IL_01bd: { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); int32_t L_73 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_72); if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)15))))) { goto IL_01fb; } } { XmlSchemaReader_t1164558392 * L_74 = ___reader0; NullCheck(L_74); String_t* L_75 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_74); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_76 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_75, _stringLiteral3810116474, /*hidden argument*/NULL); if (!L_76) { goto IL_01f6; } } { ValidationEventHandler_t791314227 * L_77 = ___h1; XmlSchemaReader_t1164558392 * L_78 = ___reader0; NullCheck(L_78); String_t* L_79 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_78); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_80 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3679593333, L_79, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_77, L_80, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01f6: { goto IL_0370; } IL_01fb: { int32_t L_81 = V_3; if ((((int32_t)L_81) > ((int32_t)1))) { goto IL_0236; } } { XmlSchemaReader_t1164558392 * L_82 = ___reader0; NullCheck(L_82); String_t* L_83 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_82); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_84 = String_op_Equality_m920492651(NULL /*static, unused*/, L_83, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_84) { goto IL_0236; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_85 = ___reader0; ValidationEventHandler_t791314227 * L_86 = ___h1; XmlSchemaAnnotation_t2553753397 * L_87 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_85, L_86, /*hidden argument*/NULL); V_4 = L_87; XmlSchemaAnnotation_t2553753397 * L_88 = V_4; if (!L_88) { goto IL_0231; } } { XmlSchemaSequence_t2018345177 * L_89 = V_0; XmlSchemaAnnotation_t2553753397 * L_90 = V_4; NullCheck(L_89); XmlSchemaAnnotated_set_Annotation_m3050132480(L_89, L_90, /*hidden argument*/NULL); } IL_0231: { goto IL_0365; } IL_0236: { int32_t L_91 = V_3; if ((((int32_t)L_91) > ((int32_t)2))) { goto IL_035f; } } { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_92); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_94 = String_op_Equality_m920492651(NULL /*static, unused*/, L_93, _stringLiteral4059539929, /*hidden argument*/NULL); if (!L_94) { goto IL_0277; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_95 = ___reader0; ValidationEventHandler_t791314227 * L_96 = ___h1; XmlSchemaElement_t427880856 * L_97 = XmlSchemaElement_Read_m470865371(NULL /*static, unused*/, L_95, L_96, /*hidden argument*/NULL); V_5 = L_97; XmlSchemaElement_t427880856 * L_98 = V_5; if (!L_98) { goto IL_0272; } } { XmlSchemaSequence_t2018345177 * L_99 = V_0; NullCheck(L_99); XmlSchemaObjectCollection_t1064819932 * L_100 = L_99->get_items_28(); XmlSchemaElement_t427880856 * L_101 = V_5; NullCheck(L_100); XmlSchemaObjectCollection_Add_m1142549045(L_100, L_101, /*hidden argument*/NULL); } IL_0272: { goto IL_0365; } IL_0277: { XmlSchemaReader_t1164558392 * L_102 = ___reader0; NullCheck(L_102); String_t* L_103 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_102); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_104 = String_op_Equality_m920492651(NULL /*static, unused*/, L_103, _stringLiteral3122773422, /*hidden argument*/NULL); if (!L_104) { goto IL_02b1; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_105 = ___reader0; ValidationEventHandler_t791314227 * L_106 = ___h1; XmlSchemaGroupRef_t1314446647 * L_107 = XmlSchemaGroupRef_Read_m2612111298(NULL /*static, unused*/, L_105, L_106, /*hidden argument*/NULL); V_6 = L_107; XmlSchemaGroupRef_t1314446647 * L_108 = V_6; if (!L_108) { goto IL_02ac; } } { XmlSchemaSequence_t2018345177 * L_109 = V_0; NullCheck(L_109); XmlSchemaObjectCollection_t1064819932 * L_110 = L_109->get_items_28(); XmlSchemaGroupRef_t1314446647 * L_111 = V_6; NullCheck(L_110); XmlSchemaObjectCollection_Add_m1142549045(L_110, L_111, /*hidden argument*/NULL); } IL_02ac: { goto IL_0365; } IL_02b1: { XmlSchemaReader_t1164558392 * L_112 = ___reader0; NullCheck(L_112); String_t* L_113 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_112); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_114 = String_op_Equality_m920492651(NULL /*static, unused*/, L_113, _stringLiteral2342829633, /*hidden argument*/NULL); if (!L_114) { goto IL_02eb; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_115 = ___reader0; ValidationEventHandler_t791314227 * L_116 = ___h1; XmlSchemaChoice_t959520675 * L_117 = XmlSchemaChoice_Read_m2424607298(NULL /*static, unused*/, L_115, L_116, /*hidden argument*/NULL); V_7 = L_117; XmlSchemaChoice_t959520675 * L_118 = V_7; if (!L_118) { goto IL_02e6; } } { XmlSchemaSequence_t2018345177 * L_119 = V_0; NullCheck(L_119); XmlSchemaObjectCollection_t1064819932 * L_120 = L_119->get_items_28(); XmlSchemaChoice_t959520675 * L_121 = V_7; NullCheck(L_120); XmlSchemaObjectCollection_Add_m1142549045(L_120, L_121, /*hidden argument*/NULL); } IL_02e6: { goto IL_0365; } IL_02eb: { XmlSchemaReader_t1164558392 * L_122 = ___reader0; NullCheck(L_122); String_t* L_123 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_122); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_124 = String_op_Equality_m920492651(NULL /*static, unused*/, L_123, _stringLiteral3810116474, /*hidden argument*/NULL); if (!L_124) { goto IL_0325; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_125 = ___reader0; ValidationEventHandler_t791314227 * L_126 = ___h1; XmlSchemaSequence_t2018345177 * L_127 = XmlSchemaSequence_Read_m4225823128(NULL /*static, unused*/, L_125, L_126, /*hidden argument*/NULL); V_8 = L_127; XmlSchemaSequence_t2018345177 * L_128 = V_8; if (!L_128) { goto IL_0320; } } { XmlSchemaSequence_t2018345177 * L_129 = V_0; NullCheck(L_129); XmlSchemaObjectCollection_t1064819932 * L_130 = L_129->get_items_28(); XmlSchemaSequence_t2018345177 * L_131 = V_8; NullCheck(L_130); XmlSchemaObjectCollection_Add_m1142549045(L_130, L_131, /*hidden argument*/NULL); } IL_0320: { goto IL_0365; } IL_0325: { XmlSchemaReader_t1164558392 * L_132 = ___reader0; NullCheck(L_132); String_t* L_133 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_132); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_134 = String_op_Equality_m920492651(NULL /*static, unused*/, L_133, _stringLiteral2600730716, /*hidden argument*/NULL); if (!L_134) { goto IL_035f; } } { V_3 = 2; XmlSchemaReader_t1164558392 * L_135 = ___reader0; ValidationEventHandler_t791314227 * L_136 = ___h1; XmlSchemaAny_t1119175207 * L_137 = XmlSchemaAny_Read_m1998536659(NULL /*static, unused*/, L_135, L_136, /*hidden argument*/NULL); V_9 = L_137; XmlSchemaAny_t1119175207 * L_138 = V_9; if (!L_138) { goto IL_035a; } } { XmlSchemaSequence_t2018345177 * L_139 = V_0; NullCheck(L_139); XmlSchemaObjectCollection_t1064819932 * L_140 = L_139->get_items_28(); XmlSchemaAny_t1119175207 * L_141 = V_9; NullCheck(L_140); XmlSchemaObjectCollection_Add_m1142549045(L_140, L_141, /*hidden argument*/NULL); } IL_035a: { goto IL_0365; } IL_035f: { XmlSchemaReader_t1164558392 * L_142 = ___reader0; NullCheck(L_142); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_142, /*hidden argument*/NULL); } IL_0365: { XmlSchemaReader_t1164558392 * L_143 = ___reader0; NullCheck(L_143); bool L_144 = XmlSchemaReader_ReadNextElement_m611223709(L_143, /*hidden argument*/NULL); if (L_144) { goto IL_01bd; } } IL_0370: { XmlSchemaSequence_t2018345177 * L_145 = V_0; return L_145; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSet::.ctor() extern "C" void XmlSchemaSet__ctor_m2333710421 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet__ctor_m2333710421_MetadataUsageId); s_Il2CppMethodInitialized = true; } { NameTable_t3178203267 * L_0 = (NameTable_t3178203267 *)il2cpp_codegen_object_new(NameTable_t3178203267_il2cpp_TypeInfo_var); NameTable__ctor_m874080766(L_0, /*hidden argument*/NULL); XmlSchemaSet__ctor_m1305906686(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaSet::.ctor(System.Xml.XmlNameTable) extern "C" void XmlSchemaSet__ctor_m1305906686 (XmlSchemaSet_t266093086 * __this, XmlNameTable_t71772148 * ___nameTable0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet__ctor_m1305906686_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlUrlResolver_t817895037 * L_0 = (XmlUrlResolver_t817895037 *)il2cpp_codegen_object_new(XmlUrlResolver_t817895037_il2cpp_TypeInfo_var); XmlUrlResolver__ctor_m1338399436(L_0, /*hidden argument*/NULL); __this->set_xmlResolver_1(L_0); XmlSchemaCompilationSettings_t2218765537 * L_1 = (XmlSchemaCompilationSettings_t2218765537 *)il2cpp_codegen_object_new(XmlSchemaCompilationSettings_t2218765537_il2cpp_TypeInfo_var); XmlSchemaCompilationSettings__ctor_m1681598812(L_1, /*hidden argument*/NULL); __this->set_settings_8(L_1); Object__ctor_m297566312(__this, /*hidden argument*/NULL); XmlNameTable_t71772148 * L_2 = ___nameTable0; if (L_2) { goto IL_002d; } } { ArgumentNullException_t1615371798 * L_3 = (ArgumentNullException_t1615371798 *)il2cpp_codegen_object_new(ArgumentNullException_t1615371798_il2cpp_TypeInfo_var); ArgumentNullException__ctor_m1170824041(L_3, _stringLiteral2315872071, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_3,XmlSchemaSet__ctor_m1305906686_RuntimeMethod_var); } IL_002d: { XmlNameTable_t71772148 * L_4 = ___nameTable0; __this->set_nameTable_0(L_4); ArrayList_t2718874744 * L_5 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_5, /*hidden argument*/NULL); __this->set_schemas_2(L_5); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); Guid_t L_6 = Guid_NewGuid_m923091018(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_CompilationId_10(L_6); return; } } // System.Void System.Xml.Schema.XmlSchemaSet::add_ValidationEventHandler(System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSet_add_ValidationEventHandler_m752947157 (XmlSchemaSet_t266093086 * __this, ValidationEventHandler_t791314227 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_add_ValidationEventHandler_m752947157_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ValidationEventHandler_t791314227 * L_0 = __this->get_ValidationEventHandler_11(); ValidationEventHandler_t791314227 * L_1 = ___value0; Delegate_t1188392813 * L_2 = Delegate_Combine_m1859655160(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); __this->set_ValidationEventHandler_11(((ValidationEventHandler_t791314227 *)CastclassSealed((RuntimeObject*)L_2, ValidationEventHandler_t791314227_il2cpp_TypeInfo_var))); return; } } // System.Void System.Xml.Schema.XmlSchemaSet::remove_ValidationEventHandler(System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSet_remove_ValidationEventHandler_m2549812285 (XmlSchemaSet_t266093086 * __this, ValidationEventHandler_t791314227 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_remove_ValidationEventHandler_m2549812285_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ValidationEventHandler_t791314227 * L_0 = __this->get_ValidationEventHandler_11(); ValidationEventHandler_t791314227 * L_1 = ___value0; Delegate_t1188392813 * L_2 = Delegate_Remove_m334097152(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL); __this->set_ValidationEventHandler_11(((ValidationEventHandler_t791314227 *)CastclassSealed((RuntimeObject*)L_2, ValidationEventHandler_t791314227_il2cpp_TypeInfo_var))); return; } } // System.Int32 System.Xml.Schema.XmlSchemaSet::get_Count() extern "C" int32_t XmlSchemaSet_get_Count_m805802669 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { ArrayList_t2718874744 * L_0 = __this->get_schemas_2(); NullCheck(L_0); int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0); return L_1; } } // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalAttributes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalAttributes_m3274158681 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_get_GlobalAttributes_m3274158681_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaObjectTable_t2546974348 * L_0 = __this->get_attributes_3(); if (L_0) { goto IL_0016; } } { XmlSchemaObjectTable_t2546974348 * L_1 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_1, /*hidden argument*/NULL); __this->set_attributes_3(L_1); } IL_0016: { XmlSchemaObjectTable_t2546974348 * L_2 = __this->get_attributes_3(); return L_2; } } // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalElements() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalElements_m2135414308 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_get_GlobalElements_m2135414308_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaObjectTable_t2546974348 * L_0 = __this->get_elements_4(); if (L_0) { goto IL_0016; } } { XmlSchemaObjectTable_t2546974348 * L_1 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_1, /*hidden argument*/NULL); __this->set_elements_4(L_1); } IL_0016: { XmlSchemaObjectTable_t2546974348 * L_2 = __this->get_elements_4(); return L_2; } } // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_GlobalTypes() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_GlobalTypes_m149850861 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_get_GlobalTypes_m149850861_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaObjectTable_t2546974348 * L_0 = __this->get_types_5(); if (L_0) { goto IL_0016; } } { XmlSchemaObjectTable_t2546974348 * L_1 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_1, /*hidden argument*/NULL); __this->set_types_5(L_1); } IL_0016: { XmlSchemaObjectTable_t2546974348 * L_2 = __this->get_types_5(); return L_2; } } // System.Boolean System.Xml.Schema.XmlSchemaSet::get_IsCompiled() extern "C" bool XmlSchemaSet_get_IsCompiled_m1394593071 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isCompiled_9(); return L_0; } } // System.Xml.Schema.XmlSchemaCompilationSettings System.Xml.Schema.XmlSchemaSet::get_CompilationSettings() extern "C" XmlSchemaCompilationSettings_t2218765537 * XmlSchemaSet_get_CompilationSettings_m7940651 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { XmlSchemaCompilationSettings_t2218765537 * L_0 = __this->get_settings_8(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSet::set_XmlResolver(System.Xml.XmlResolver) extern "C" void XmlSchemaSet_set_XmlResolver_m40248040 (XmlSchemaSet_t266093086 * __this, XmlResolver_t626023767 * ___value0, const RuntimeMethod* method) { { XmlResolver_t626023767 * L_0 = ___value0; __this->set_xmlResolver_1(L_0); return; } } // System.Collections.Hashtable System.Xml.Schema.XmlSchemaSet::get_IDCollection() extern "C" Hashtable_t1853889766 * XmlSchemaSet_get_IDCollection_m1289038672 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_get_IDCollection_m1289038672_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Hashtable_t1853889766 * L_0 = __this->get_idCollection_6(); if (L_0) { goto IL_0016; } } { Hashtable_t1853889766 * L_1 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_1, /*hidden argument*/NULL); __this->set_idCollection_6(L_1); } IL_0016: { Hashtable_t1853889766 * L_2 = __this->get_idCollection_6(); return L_2; } } // System.Xml.Schema.XmlSchemaObjectTable System.Xml.Schema.XmlSchemaSet::get_NamedIdentities() extern "C" XmlSchemaObjectTable_t2546974348 * XmlSchemaSet_get_NamedIdentities_m132058982 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_get_NamedIdentities_m132058982_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaObjectTable_t2546974348 * L_0 = __this->get_namedIdentities_7(); if (L_0) { goto IL_0016; } } { XmlSchemaObjectTable_t2546974348 * L_1 = (XmlSchemaObjectTable_t2546974348 *)il2cpp_codegen_object_new(XmlSchemaObjectTable_t2546974348_il2cpp_TypeInfo_var); XmlSchemaObjectTable__ctor_m1178187484(L_1, /*hidden argument*/NULL); __this->set_namedIdentities_7(L_1); } IL_0016: { XmlSchemaObjectTable_t2546974348 * L_2 = __this->get_namedIdentities_7(); return L_2; } } // System.Xml.Schema.XmlSchema System.Xml.Schema.XmlSchemaSet::Add(System.Xml.Schema.XmlSchema) extern "C" XmlSchema_t3742557897 * XmlSchemaSet_Add_m27831907 (XmlSchemaSet_t266093086 * __this, XmlSchema_t3742557897 * ___schema0, const RuntimeMethod* method) { { ArrayList_t2718874744 * L_0 = __this->get_schemas_2(); XmlSchema_t3742557897 * L_1 = ___schema0; NullCheck(L_0); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1); XmlSchemaSet_ResetCompile_m3724505894(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_2 = ___schema0; return L_2; } } // System.Void System.Xml.Schema.XmlSchemaSet::Compile() extern "C" void XmlSchemaSet_Compile_m1310515789 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_Compile_m1310515789_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t2718874744 * V_0 = NULL; Hashtable_t1853889766 * V_1 = NULL; XmlSchema_t3742557897 * V_2 = NULL; RuntimeObject* V_3 = NULL; XmlSchema_t3742557897 * V_4 = NULL; RuntimeObject* V_5 = NULL; XmlSchemaElement_t427880856 * V_6 = NULL; RuntimeObject* V_7 = NULL; XmlSchema_t3742557897 * V_8 = NULL; RuntimeObject* V_9 = NULL; XmlSchema_t3742557897 * V_10 = NULL; RuntimeObject* V_11 = NULL; RuntimeObject* V_12 = NULL; RuntimeObject* V_13 = NULL; RuntimeObject* V_14 = NULL; RuntimeObject* V_15 = NULL; RuntimeObject* V_16 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaSet_ClearGlobalComponents_m1816252391(__this, /*hidden argument*/NULL); ArrayList_t2718874744 * L_0 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_0, /*hidden argument*/NULL); V_0 = L_0; ArrayList_t2718874744 * L_1 = V_0; ArrayList_t2718874744 * L_2 = __this->get_schemas_2(); NullCheck(L_1); VirtActionInvoker1< RuntimeObject* >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_1, L_2); Hashtable_t1853889766 * L_3 = XmlSchemaSet_get_IDCollection_m1289038672(__this, /*hidden argument*/NULL); NullCheck(L_3); VirtActionInvoker0::Invoke(30 /* System.Void System.Collections.Hashtable::Clear() */, L_3); XmlSchemaObjectTable_t2546974348 * L_4 = XmlSchemaSet_get_NamedIdentities_m132058982(__this, /*hidden argument*/NULL); NullCheck(L_4); XmlSchemaObjectTable_Clear_m8811103(L_4, /*hidden argument*/NULL); Hashtable_t1853889766 * L_5 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_5, /*hidden argument*/NULL); V_1 = L_5; ArrayList_t2718874744 * L_6 = V_0; NullCheck(L_6); RuntimeObject* L_7 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_6); V_3 = L_7; } IL_003b: try { // begin try (depth: 1) { goto IL_006b; } IL_0040: { RuntimeObject* L_8 = V_3; NullCheck(L_8); RuntimeObject * L_9 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_8); V_2 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_9, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_10 = V_2; NullCheck(L_10); bool L_11 = XmlSchema_get_IsCompiled_m1798268303(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_006b; } } IL_0057: { XmlSchema_t3742557897 * L_12 = V_2; ValidationEventHandler_t791314227 * L_13 = __this->get_ValidationEventHandler_11(); XmlResolver_t626023767 * L_14 = __this->get_xmlResolver_1(); Hashtable_t1853889766 * L_15 = V_1; NullCheck(L_12); XmlSchema_CompileSubset_m510143494(L_12, L_13, __this, L_14, L_15, /*hidden argument*/NULL); } IL_006b: { RuntimeObject* L_16 = V_3; NullCheck(L_16); bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_16); if (L_17) { goto IL_0040; } } IL_0076: { IL2CPP_LEAVE(0x90, FINALLY_007b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007b; } FINALLY_007b: { // begin finally (depth: 1) { RuntimeObject* L_18 = V_3; V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_19 = V_12; if (L_19) { goto IL_0088; } } IL_0087: { IL2CPP_END_FINALLY(123) } IL_0088: { RuntimeObject* L_20 = V_12; NullCheck(L_20); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_20); IL2CPP_END_FINALLY(123) } } // end finally (depth: 1) IL2CPP_CLEANUP(123) { IL2CPP_JUMP_TBL(0x90, IL_0090) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0090: { ArrayList_t2718874744 * L_21 = V_0; NullCheck(L_21); RuntimeObject* L_22 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_21); V_5 = L_22; } IL_0098: try { // begin try (depth: 1) { goto IL_00ff; } IL_009d: { RuntimeObject* L_23 = V_5; NullCheck(L_23); RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_23); V_4 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_24, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_25 = V_4; NullCheck(L_25); XmlSchemaObjectTable_t2546974348 * L_26 = XmlSchema_get_Elements_m2423831735(L_25, /*hidden argument*/NULL); NullCheck(L_26); RuntimeObject* L_27 = XmlSchemaObjectTable_get_Values_m210119958(L_26, /*hidden argument*/NULL); NullCheck(L_27); RuntimeObject* L_28 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_27); V_7 = L_28; } IL_00be: try { // begin try (depth: 2) { goto IL_00d8; } IL_00c3: { RuntimeObject* L_29 = V_7; NullCheck(L_29); RuntimeObject * L_30 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_29); V_6 = ((XmlSchemaElement_t427880856 *)CastclassClass((RuntimeObject*)L_30, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaElement_t427880856 * L_31 = V_6; NullCheck(L_31); XmlSchemaElement_FillSubstitutionElementInfo_m1716537754(L_31, /*hidden argument*/NULL); } IL_00d8: { RuntimeObject* L_32 = V_7; NullCheck(L_32); bool L_33 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_32); if (L_33) { goto IL_00c3; } } IL_00e4: { IL2CPP_LEAVE(0xFF, FINALLY_00e9); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e9; } FINALLY_00e9: { // begin finally (depth: 2) { RuntimeObject* L_34 = V_7; V_13 = ((RuntimeObject*)IsInst((RuntimeObject*)L_34, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_35 = V_13; if (L_35) { goto IL_00f7; } } IL_00f6: { IL2CPP_END_FINALLY(233) } IL_00f7: { RuntimeObject* L_36 = V_13; NullCheck(L_36); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_36); IL2CPP_END_FINALLY(233) } } // end finally (depth: 2) IL2CPP_CLEANUP(233) { IL2CPP_JUMP_TBL(0xFF, IL_00ff) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00ff: { RuntimeObject* L_37 = V_5; NullCheck(L_37); bool L_38 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_37); if (L_38) { goto IL_009d; } } IL_010b: { IL2CPP_LEAVE(0x126, FINALLY_0110); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0110; } FINALLY_0110: { // begin finally (depth: 1) { RuntimeObject* L_39 = V_5; V_14 = ((RuntimeObject*)IsInst((RuntimeObject*)L_39, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_40 = V_14; if (L_40) { goto IL_011e; } } IL_011d: { IL2CPP_END_FINALLY(272) } IL_011e: { RuntimeObject* L_41 = V_14; NullCheck(L_41); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_41); IL2CPP_END_FINALLY(272) } } // end finally (depth: 1) IL2CPP_CLEANUP(272) { IL2CPP_JUMP_TBL(0x126, IL_0126) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0126: { ArrayList_t2718874744 * L_42 = V_0; NullCheck(L_42); RuntimeObject* L_43 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_42); V_9 = L_43; } IL_012e: try { // begin try (depth: 1) { goto IL_014e; } IL_0133: { RuntimeObject* L_44 = V_9; NullCheck(L_44); RuntimeObject * L_45 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_44); V_8 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_45, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_46 = V_8; ValidationEventHandler_t791314227 * L_47 = __this->get_ValidationEventHandler_11(); NullCheck(L_46); XmlSchema_Validate_m1631016973(L_46, L_47, /*hidden argument*/NULL); } IL_014e: { RuntimeObject* L_48 = V_9; NullCheck(L_48); bool L_49 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_48); if (L_49) { goto IL_0133; } } IL_015a: { IL2CPP_LEAVE(0x175, FINALLY_015f); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_015f; } FINALLY_015f: { // begin finally (depth: 1) { RuntimeObject* L_50 = V_9; V_15 = ((RuntimeObject*)IsInst((RuntimeObject*)L_50, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_51 = V_15; if (L_51) { goto IL_016d; } } IL_016c: { IL2CPP_END_FINALLY(351) } IL_016d: { RuntimeObject* L_52 = V_15; NullCheck(L_52); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_52); IL2CPP_END_FINALLY(351) } } // end finally (depth: 1) IL2CPP_CLEANUP(351) { IL2CPP_JUMP_TBL(0x175, IL_0175) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0175: { ArrayList_t2718874744 * L_53 = V_0; NullCheck(L_53); RuntimeObject* L_54 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_53); V_11 = L_54; } IL_017d: try { // begin try (depth: 1) { goto IL_0198; } IL_0182: { RuntimeObject* L_55 = V_11; NullCheck(L_55); RuntimeObject * L_56 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_55); V_10 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_56, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_57 = V_10; XmlSchemaSet_AddGlobalComponents_m2268750022(__this, L_57, /*hidden argument*/NULL); } IL_0198: { RuntimeObject* L_58 = V_11; NullCheck(L_58); bool L_59 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_58); if (L_59) { goto IL_0182; } } IL_01a4: { IL2CPP_LEAVE(0x1BF, FINALLY_01a9); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01a9; } FINALLY_01a9: { // begin finally (depth: 1) { RuntimeObject* L_60 = V_11; V_16 = ((RuntimeObject*)IsInst((RuntimeObject*)L_60, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_61 = V_16; if (L_61) { goto IL_01b7; } } IL_01b6: { IL2CPP_END_FINALLY(425) } IL_01b7: { RuntimeObject* L_62 = V_16; NullCheck(L_62); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_62); IL2CPP_END_FINALLY(425) } } // end finally (depth: 1) IL2CPP_CLEANUP(425) { IL2CPP_JUMP_TBL(0x1BF, IL_01bf) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01bf: { __this->set_isCompiled_9((bool)1); return; } } // System.Void System.Xml.Schema.XmlSchemaSet::ClearGlobalComponents() extern "C" void XmlSchemaSet_ClearGlobalComponents_m1816252391 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { XmlSchemaObjectTable_t2546974348 * L_0 = XmlSchemaSet_get_GlobalElements_m2135414308(__this, /*hidden argument*/NULL); NullCheck(L_0); XmlSchemaObjectTable_Clear_m8811103(L_0, /*hidden argument*/NULL); XmlSchemaObjectTable_t2546974348 * L_1 = XmlSchemaSet_get_GlobalAttributes_m3274158681(__this, /*hidden argument*/NULL); NullCheck(L_1); XmlSchemaObjectTable_Clear_m8811103(L_1, /*hidden argument*/NULL); XmlSchemaObjectTable_t2546974348 * L_2 = XmlSchemaSet_get_GlobalTypes_m149850861(__this, /*hidden argument*/NULL); NullCheck(L_2); XmlSchemaObjectTable_Clear_m8811103(L_2, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaSet::AddGlobalComponents(System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSet_AddGlobalComponents_m2268750022 (XmlSchemaSet_t266093086 * __this, XmlSchema_t3742557897 * ___schema0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_AddGlobalComponents_m2268750022_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaElement_t427880856 * V_0 = NULL; RuntimeObject* V_1 = NULL; XmlSchemaAttribute_t2797257020 * V_2 = NULL; RuntimeObject* V_3 = NULL; XmlSchemaType_t2033747345 * V_4 = NULL; RuntimeObject* V_5 = NULL; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; RuntimeObject* V_8 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchema_t3742557897 * L_0 = ___schema0; NullCheck(L_0); XmlSchemaObjectTable_t2546974348 * L_1 = XmlSchema_get_Elements_m2423831735(L_0, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject* L_2 = XmlSchemaObjectTable_get_Values_m210119958(L_1, /*hidden argument*/NULL); NullCheck(L_2); RuntimeObject* L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_2); V_1 = L_3; } IL_0011: try { // begin try (depth: 1) { goto IL_0034; } IL_0016: { RuntimeObject* L_4 = V_1; NullCheck(L_4); RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_4); V_0 = ((XmlSchemaElement_t427880856 *)CastclassClass((RuntimeObject*)L_5, XmlSchemaElement_t427880856_il2cpp_TypeInfo_var)); XmlSchemaObjectTable_t2546974348 * L_6 = XmlSchemaSet_get_GlobalElements_m2135414308(__this, /*hidden argument*/NULL); XmlSchemaElement_t427880856 * L_7 = V_0; NullCheck(L_7); XmlQualifiedName_t2760654312 * L_8 = XmlSchemaElement_get_QualifiedName_m2688553928(L_7, /*hidden argument*/NULL); XmlSchemaElement_t427880856 * L_9 = V_0; NullCheck(L_6); XmlSchemaObjectTable_Add_m1270468147(L_6, L_8, L_9, /*hidden argument*/NULL); } IL_0034: { RuntimeObject* L_10 = V_1; NullCheck(L_10); bool L_11 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_10); if (L_11) { goto IL_0016; } } IL_003f: { IL2CPP_LEAVE(0x59, FINALLY_0044); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0044; } FINALLY_0044: { // begin finally (depth: 1) { RuntimeObject* L_12 = V_1; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_13 = V_6; if (L_13) { goto IL_0051; } } IL_0050: { IL2CPP_END_FINALLY(68) } IL_0051: { RuntimeObject* L_14 = V_6; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_14); IL2CPP_END_FINALLY(68) } } // end finally (depth: 1) IL2CPP_CLEANUP(68) { IL2CPP_JUMP_TBL(0x59, IL_0059) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0059: { XmlSchema_t3742557897 * L_15 = ___schema0; NullCheck(L_15); XmlSchemaObjectTable_t2546974348 * L_16 = XmlSchema_get_Attributes_m3728178990(L_15, /*hidden argument*/NULL); NullCheck(L_16); RuntimeObject* L_17 = XmlSchemaObjectTable_get_Values_m210119958(L_16, /*hidden argument*/NULL); NullCheck(L_17); RuntimeObject* L_18 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_17); V_3 = L_18; } IL_006a: try { // begin try (depth: 1) { goto IL_008d; } IL_006f: { RuntimeObject* L_19 = V_3; NullCheck(L_19); RuntimeObject * L_20 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_19); V_2 = ((XmlSchemaAttribute_t2797257020 *)CastclassClass((RuntimeObject*)L_20, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); XmlSchemaObjectTable_t2546974348 * L_21 = XmlSchemaSet_get_GlobalAttributes_m3274158681(__this, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_22 = V_2; NullCheck(L_22); XmlQualifiedName_t2760654312 * L_23 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_22, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_24 = V_2; NullCheck(L_21); XmlSchemaObjectTable_Add_m1270468147(L_21, L_23, L_24, /*hidden argument*/NULL); } IL_008d: { RuntimeObject* L_25 = V_3; NullCheck(L_25); bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_25); if (L_26) { goto IL_006f; } } IL_0098: { IL2CPP_LEAVE(0xB2, FINALLY_009d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_009d; } FINALLY_009d: { // begin finally (depth: 1) { RuntimeObject* L_27 = V_3; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_27, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_28 = V_7; if (L_28) { goto IL_00aa; } } IL_00a9: { IL2CPP_END_FINALLY(157) } IL_00aa: { RuntimeObject* L_29 = V_7; NullCheck(L_29); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_29); IL2CPP_END_FINALLY(157) } } // end finally (depth: 1) IL2CPP_CLEANUP(157) { IL2CPP_JUMP_TBL(0xB2, IL_00b2) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00b2: { XmlSchema_t3742557897 * L_30 = ___schema0; NullCheck(L_30); XmlSchemaObjectTable_t2546974348 * L_31 = XmlSchema_get_SchemaTypes_m2814071545(L_30, /*hidden argument*/NULL); NullCheck(L_31); RuntimeObject* L_32 = XmlSchemaObjectTable_get_Values_m210119958(L_31, /*hidden argument*/NULL); NullCheck(L_32); RuntimeObject* L_33 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_32); V_5 = L_33; } IL_00c4: try { // begin try (depth: 1) { goto IL_00eb; } IL_00c9: { RuntimeObject* L_34 = V_5; NullCheck(L_34); RuntimeObject * L_35 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_34); V_4 = ((XmlSchemaType_t2033747345 *)CastclassClass((RuntimeObject*)L_35, XmlSchemaType_t2033747345_il2cpp_TypeInfo_var)); XmlSchemaObjectTable_t2546974348 * L_36 = XmlSchemaSet_get_GlobalTypes_m149850861(__this, /*hidden argument*/NULL); XmlSchemaType_t2033747345 * L_37 = V_4; NullCheck(L_37); XmlQualifiedName_t2760654312 * L_38 = XmlSchemaType_get_QualifiedName_m2122094841(L_37, /*hidden argument*/NULL); XmlSchemaType_t2033747345 * L_39 = V_4; NullCheck(L_36); XmlSchemaObjectTable_Add_m1270468147(L_36, L_38, L_39, /*hidden argument*/NULL); } IL_00eb: { RuntimeObject* L_40 = V_5; NullCheck(L_40); bool L_41 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_40); if (L_41) { goto IL_00c9; } } IL_00f7: { IL2CPP_LEAVE(0x112, FINALLY_00fc); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00fc; } FINALLY_00fc: { // begin finally (depth: 1) { RuntimeObject* L_42 = V_5; V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_42, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_43 = V_8; if (L_43) { goto IL_010a; } } IL_0109: { IL2CPP_END_FINALLY(252) } IL_010a: { RuntimeObject* L_44 = V_8; NullCheck(L_44); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_44); IL2CPP_END_FINALLY(252) } } // end finally (depth: 1) IL2CPP_CLEANUP(252) { IL2CPP_JUMP_TBL(0x112, IL_0112) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0112: { return; } } // System.Boolean System.Xml.Schema.XmlSchemaSet::Contains(System.String) extern "C" bool XmlSchemaSet_Contains_m2963568736 (XmlSchemaSet_t266093086 * __this, String_t* ___targetNamespace0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_Contains_m2963568736_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchema_t3742557897 * V_0 = NULL; RuntimeObject* V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = ___targetNamespace0; String_t* L_1 = XmlSchemaSet_GetSafeNs_m1979379821(__this, L_0, /*hidden argument*/NULL); ___targetNamespace0 = L_1; ArrayList_t2718874744 * L_2 = __this->get_schemas_2(); NullCheck(L_2); RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2); V_1 = L_3; } IL_0015: try { // begin try (depth: 1) { goto IL_0044; } IL_001a: { RuntimeObject* L_4 = V_1; NullCheck(L_4); RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_4); V_0 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_5, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_6 = V_0; NullCheck(L_6); String_t* L_7 = XmlSchema_get_TargetNamespace_m442842382(L_6, /*hidden argument*/NULL); String_t* L_8 = XmlSchemaSet_GetSafeNs_m1979379821(__this, L_7, /*hidden argument*/NULL); String_t* L_9 = ___targetNamespace0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_10 = String_op_Equality_m920492651(NULL /*static, unused*/, L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0044; } } IL_003d: { V_2 = (bool)1; IL2CPP_LEAVE(0x68, FINALLY_0054); } IL_0044: { RuntimeObject* L_11 = V_1; NullCheck(L_11); bool L_12 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_11); if (L_12) { goto IL_001a; } } IL_004f: { IL2CPP_LEAVE(0x66, FINALLY_0054); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0054; } FINALLY_0054: { // begin finally (depth: 1) { RuntimeObject* L_13 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_14 = V_3; if (L_14) { goto IL_005f; } } IL_005e: { IL2CPP_END_FINALLY(84) } IL_005f: { RuntimeObject* L_15 = V_3; NullCheck(L_15); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_15); IL2CPP_END_FINALLY(84) } } // end finally (depth: 1) IL2CPP_CLEANUP(84) { IL2CPP_JUMP_TBL(0x68, IL_0068) IL2CPP_JUMP_TBL(0x66, IL_0066) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0066: { return (bool)0; } IL_0068: { bool L_16 = V_2; return L_16; } } // System.Boolean System.Xml.Schema.XmlSchemaSet::Contains(System.Xml.Schema.XmlSchema) extern "C" bool XmlSchemaSet_Contains_m1201416344 (XmlSchemaSet_t266093086 * __this, XmlSchema_t3742557897 * ___targetNamespace0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_Contains_m1201416344_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchema_t3742557897 * V_0 = NULL; RuntimeObject* V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { ArrayList_t2718874744 * L_0 = __this->get_schemas_2(); NullCheck(L_0); RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0); V_1 = L_1; } IL_000c: try { // begin try (depth: 1) { goto IL_002b; } IL_0011: { RuntimeObject* L_2 = V_1; NullCheck(L_2); RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_2); V_0 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_3, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_4 = V_0; XmlSchema_t3742557897 * L_5 = ___targetNamespace0; if ((!(((RuntimeObject*)(XmlSchema_t3742557897 *)L_4) == ((RuntimeObject*)(XmlSchema_t3742557897 *)L_5)))) { goto IL_002b; } } IL_0024: { V_2 = (bool)1; IL2CPP_LEAVE(0x4F, FINALLY_003b); } IL_002b: { RuntimeObject* L_6 = V_1; NullCheck(L_6); bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_6); if (L_7) { goto IL_0011; } } IL_0036: { IL2CPP_LEAVE(0x4D, FINALLY_003b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003b; } FINALLY_003b: { // begin finally (depth: 1) { RuntimeObject* L_8 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_3; if (L_9) { goto IL_0046; } } IL_0045: { IL2CPP_END_FINALLY(59) } IL_0046: { RuntimeObject* L_10 = V_3; NullCheck(L_10); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_10); IL2CPP_END_FINALLY(59) } } // end finally (depth: 1) IL2CPP_CLEANUP(59) { IL2CPP_JUMP_TBL(0x4F, IL_004f) IL2CPP_JUMP_TBL(0x4D, IL_004d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_004d: { return (bool)0; } IL_004f: { bool L_11 = V_2; return L_11; } } // System.Void System.Xml.Schema.XmlSchemaSet::CopyTo(System.Array,System.Int32) extern "C" void XmlSchemaSet_CopyTo_m395757807 (XmlSchemaSet_t266093086 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method) { { ArrayList_t2718874744 * L_0 = __this->get_schemas_2(); RuntimeArray * L_1 = ___array0; int32_t L_2 = ___index1; NullCheck(L_0); VirtActionInvoker2< RuntimeArray *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2); return; } } // System.String System.Xml.Schema.XmlSchemaSet::GetSafeNs(System.String) extern "C" String_t* XmlSchemaSet_GetSafeNs_m1979379821 (XmlSchemaSet_t266093086 * __this, String_t* ___ns0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_GetSafeNs_m1979379821_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { String_t* L_0 = ___ns0; if (L_0) { goto IL_0010; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); G_B3_0 = L_1; goto IL_0011; } IL_0010: { String_t* L_2 = ___ns0; G_B3_0 = L_2; } IL_0011: { return G_B3_0; } } // System.Void System.Xml.Schema.XmlSchemaSet::ResetCompile() extern "C" void XmlSchemaSet_ResetCompile_m3724505894 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { __this->set_isCompiled_9((bool)0); XmlSchemaSet_ClearGlobalComponents_m1816252391(__this, /*hidden argument*/NULL); return; } } // System.Collections.ICollection System.Xml.Schema.XmlSchemaSet::Schemas() extern "C" RuntimeObject* XmlSchemaSet_Schemas_m4143905947 (XmlSchemaSet_t266093086 * __this, const RuntimeMethod* method) { { ArrayList_t2718874744 * L_0 = __this->get_schemas_2(); return L_0; } } // System.Collections.ICollection System.Xml.Schema.XmlSchemaSet::Schemas(System.String) extern "C" RuntimeObject* XmlSchemaSet_Schemas_m844252656 (XmlSchemaSet_t266093086 * __this, String_t* ___targetNamespace0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_Schemas_m844252656_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t2718874744 * V_0 = NULL; XmlSchema_t3742557897 * V_1 = NULL; RuntimeObject* V_2 = NULL; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = ___targetNamespace0; String_t* L_1 = XmlSchemaSet_GetSafeNs_m1979379821(__this, L_0, /*hidden argument*/NULL); ___targetNamespace0 = L_1; ArrayList_t2718874744 * L_2 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_2, /*hidden argument*/NULL); V_0 = L_2; ArrayList_t2718874744 * L_3 = __this->get_schemas_2(); NullCheck(L_3); RuntimeObject* L_4 = VirtFuncInvoker0< RuntimeObject* >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_3); V_2 = L_4; } IL_001b: try { // begin try (depth: 1) { goto IL_004b; } IL_0020: { RuntimeObject* L_5 = V_2; NullCheck(L_5); RuntimeObject * L_6 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_5); V_1 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_6, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_7 = V_1; NullCheck(L_7); String_t* L_8 = XmlSchema_get_TargetNamespace_m442842382(L_7, /*hidden argument*/NULL); String_t* L_9 = XmlSchemaSet_GetSafeNs_m1979379821(__this, L_8, /*hidden argument*/NULL); String_t* L_10 = ___targetNamespace0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_11 = String_op_Equality_m920492651(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_004b; } } IL_0043: { ArrayList_t2718874744 * L_12 = V_0; XmlSchema_t3742557897 * L_13 = V_1; NullCheck(L_12); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_13); } IL_004b: { RuntimeObject* L_14 = V_2; NullCheck(L_14); bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_14); if (L_15) { goto IL_0020; } } IL_0056: { IL2CPP_LEAVE(0x6D, FINALLY_005b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_005b; } FINALLY_005b: { // begin finally (depth: 1) { RuntimeObject* L_16 = V_2; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_3; if (L_17) { goto IL_0066; } } IL_0065: { IL2CPP_END_FINALLY(91) } IL_0066: { RuntimeObject* L_18 = V_3; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_18); IL2CPP_END_FINALLY(91) } } // end finally (depth: 1) IL2CPP_CLEANUP(91) { IL2CPP_JUMP_TBL(0x6D, IL_006d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_006d: { ArrayList_t2718874744 * L_19 = V_0; return L_19; } } // System.Boolean System.Xml.Schema.XmlSchemaSet::MissedSubComponents(System.String) extern "C" bool XmlSchemaSet_MissedSubComponents_m3092777572 (XmlSchemaSet_t266093086 * __this, String_t* ___targetNamespace0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSet_MissedSubComponents_m3092777572_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchema_t3742557897 * V_0 = NULL; RuntimeObject* V_1 = NULL; bool V_2 = false; RuntimeObject* V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = ___targetNamespace0; RuntimeObject* L_1 = XmlSchemaSet_Schemas_m844252656(__this, L_0, /*hidden argument*/NULL); NullCheck(L_1); RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_1); V_1 = L_2; } IL_000d: try { // begin try (depth: 1) { goto IL_0030; } IL_0012: { RuntimeObject* L_3 = V_1; NullCheck(L_3); RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_3); V_0 = ((XmlSchema_t3742557897 *)CastclassClass((RuntimeObject*)L_4, XmlSchema_t3742557897_il2cpp_TypeInfo_var)); XmlSchema_t3742557897 * L_5 = V_0; NullCheck(L_5); bool L_6 = L_5->get_missedSubComponents_30(); if (!L_6) { goto IL_0030; } } IL_0029: { V_2 = (bool)1; IL2CPP_LEAVE(0x54, FINALLY_0040); } IL_0030: { RuntimeObject* L_7 = V_1; NullCheck(L_7); bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_7); if (L_8) { goto IL_0012; } } IL_003b: { IL2CPP_LEAVE(0x52, FINALLY_0040); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0040; } FINALLY_0040: { // begin finally (depth: 1) { RuntimeObject* L_9 = V_1; V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_10 = V_3; if (L_10) { goto IL_004b; } } IL_004a: { IL2CPP_END_FINALLY(64) } IL_004b: { RuntimeObject* L_11 = V_3; NullCheck(L_11); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_11); IL2CPP_END_FINALLY(64) } } // end finally (depth: 1) IL2CPP_CLEANUP(64) { IL2CPP_JUMP_TBL(0x54, IL_0054) IL2CPP_JUMP_TBL(0x52, IL_0052) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0052: { return (bool)0; } IL_0054: { bool L_12 = V_2; return L_12; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleContent::.ctor() extern "C" void XmlSchemaSimpleContent__ctor_m3949411668 (XmlSchemaSimpleContent_t4264369274 * __this, const RuntimeMethod* method) { { XmlSchemaContentModel__ctor_m1098532985(__this, /*hidden argument*/NULL); return; } } // System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() extern "C" XmlSchemaContent_t1040349258 * XmlSchemaSimpleContent_get_Content_m3707877903 (XmlSchemaSimpleContent_t4264369274 * __this, const RuntimeMethod* method) { { XmlSchemaContent_t1040349258 * L_0 = __this->get_content_16(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleContent::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleContent_SetParent_m2905545279 (XmlSchemaSimpleContent_t4264369274 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaContent_t1040349258 * L_1 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); if (!L_1) { goto IL_001e; } } { XmlSchemaContent_t1040349258 * L_2 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContent::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContent_Compile_m2443699014 (XmlSchemaSimpleContent_t4264369274 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContent_Compile_m2443699014_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleContentRestriction_t2746076865 * V_0 = NULL; XmlSchemaSimpleContentExtension_t1269327470 * V_1 = NULL; { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { XmlSchemaContent_t1040349258 * L_4 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); if (L_4) { goto IL_0034; } } { ValidationEventHandler_t791314227 * L_5 = ___h0; XmlSchemaObject_error_m903554348(__this, L_5, _stringLiteral3330369379, /*hidden argument*/NULL); goto IL_00ac; } IL_0034: { XmlSchemaContent_t1040349258 * L_6 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); if (!((XmlSchemaSimpleContentRestriction_t2746076865 *)IsInstClass((RuntimeObject*)L_6, XmlSchemaSimpleContentRestriction_t2746076865_il2cpp_TypeInfo_var))) { goto IL_006a; } } { XmlSchemaContent_t1040349258 * L_7 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); V_0 = ((XmlSchemaSimpleContentRestriction_t2746076865 *)CastclassClass((RuntimeObject*)L_7, XmlSchemaSimpleContentRestriction_t2746076865_il2cpp_TypeInfo_var)); int32_t L_8 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleContentRestriction_t2746076865 * L_9 = V_0; ValidationEventHandler_t791314227 * L_10 = ___h0; XmlSchema_t3742557897 * L_11 = ___schema1; NullCheck(L_9); int32_t L_12 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleContentRestriction::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_9, L_10, L_11); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_12))); goto IL_00ac; } IL_006a: { XmlSchemaContent_t1040349258 * L_13 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); if (!((XmlSchemaSimpleContentExtension_t1269327470 *)IsInstClass((RuntimeObject*)L_13, XmlSchemaSimpleContentExtension_t1269327470_il2cpp_TypeInfo_var))) { goto IL_00a0; } } { XmlSchemaContent_t1040349258 * L_14 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); V_1 = ((XmlSchemaSimpleContentExtension_t1269327470 *)CastclassClass((RuntimeObject*)L_14, XmlSchemaSimpleContentExtension_t1269327470_il2cpp_TypeInfo_var)); int32_t L_15 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleContentExtension_t1269327470 * L_16 = V_1; ValidationEventHandler_t791314227 * L_17 = ___h0; XmlSchema_t3742557897 * L_18 = ___schema1; NullCheck(L_16); int32_t L_19 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleContentExtension::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_16, L_17, L_18); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_19))); goto IL_00ac; } IL_00a0: { ValidationEventHandler_t791314227 * L_20 = ___h0; XmlSchemaObject_error_m903554348(__this, L_20, _stringLiteral266961209, /*hidden argument*/NULL); } IL_00ac: { String_t* L_21 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_22 = ___schema1; NullCheck(L_22); Hashtable_t1853889766 * L_23 = XmlSchema_get_IDCollection_m3725452494(L_22, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_24 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_21, __this, L_23, L_24, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_25 = ___schema1; NullCheck(L_25); Guid_t L_26 = ((XmlSchemaObject_t1315720168 *)L_25)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_26); int32_t L_27 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_27; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContent::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContent_Validate_m3998916772 (XmlSchemaSimpleContent_t4264369274 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { int32_t L_4 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaContent_t1040349258 * L_5 = VirtFuncInvoker0< XmlSchemaContent_t1040349258 * >::Invoke(8 /* System.Xml.Schema.XmlSchemaContent System.Xml.Schema.XmlSchemaSimpleContent::get_Content() */, __this); ValidationEventHandler_t791314227 * L_6 = ___h0; XmlSchema_t3742557897 * L_7 = ___schema1; NullCheck(L_5); int32_t L_8 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_5, L_6, L_7); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_8))); XmlSchema_t3742557897 * L_9 = ___schema1; NullCheck(L_9); Guid_t L_10 = ((XmlSchemaObject_t1315720168 *)L_9)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_10); int32_t L_11 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_11; } } // System.Xml.Schema.XmlSchemaSimpleContent System.Xml.Schema.XmlSchemaSimpleContent::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleContent_t4264369274 * XmlSchemaSimpleContent_Read_m1989264058 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContent_Read_m1989264058_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleContent_t4264369274 * V_0 = NULL; int32_t V_1 = 0; XmlSchemaAnnotation_t2553753397 * V_2 = NULL; XmlSchemaSimpleContentRestriction_t2746076865 * V_3 = NULL; XmlSchemaSimpleContentExtension_t1269327470 * V_4 = NULL; { XmlSchemaSimpleContent_t4264369274 * L_0 = (XmlSchemaSimpleContent_t4264369274 *)il2cpp_codegen_object_new(XmlSchemaSimpleContent_t4264369274_il2cpp_TypeInfo_var); XmlSchemaSimpleContent__ctor_m3949411668(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral2185284321, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1679281052, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); XmlSchemaReader_SkipToEnd_m864243635(L_12, /*hidden argument*/NULL); return (XmlSchemaSimpleContent_t4264369274 *)NULL; } IL_0056: { XmlSchemaSimpleContent_t4264369274 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleContent_t4264369274 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleContent_t4264369274 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0107; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaSimpleContent_t4264369274 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_0107; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_30 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_31 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00cf; } } { XmlSchemaReader_t1164558392 * L_32 = ___reader0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_32); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_34 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_33, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_34) { goto IL_00e4; } } IL_00cf: { XmlSchemaReader_t1164558392 * L_35 = ___reader0; NullCheck(L_35); String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_35); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_37 = String_op_Equality_m920492651(NULL /*static, unused*/, L_36, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_37) { goto IL_0100; } } IL_00e4: { ValidationEventHandler_t791314227 * L_38 = ___h1; XmlSchemaReader_t1164558392 * L_39 = ___reader0; NullCheck(L_39); String_t* L_40 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_39); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_41 = String_Concat_m3937257545(NULL /*static, unused*/, L_40, _stringLiteral686815707, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_38, L_41, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0107; } IL_0100: { XmlSchemaReader_t1164558392 * L_42 = ___reader0; XmlSchemaSimpleContent_t4264369274 * L_43 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_42, L_43, /*hidden argument*/NULL); } IL_0107: { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); bool L_45 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_44); if (L_45) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_46 = ___reader0; NullCheck(L_46); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_46); XmlSchemaReader_t1164558392 * L_47 = ___reader0; NullCheck(L_47); bool L_48 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_47); if (!L_48) { goto IL_0126; } } { XmlSchemaSimpleContent_t4264369274 * L_49 = V_0; return L_49; } IL_0126: { V_1 = 1; goto IL_0215; } IL_012d: { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); int32_t L_51 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_50); if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)15))))) { goto IL_016b; } } { XmlSchemaReader_t1164558392 * L_52 = ___reader0; NullCheck(L_52); String_t* L_53 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_52); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_54 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_53, _stringLiteral2185284321, /*hidden argument*/NULL); if (!L_54) { goto IL_0166; } } { ValidationEventHandler_t791314227 * L_55 = ___h1; XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_56); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_58 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3091022275, L_57, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_55, L_58, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_0166: { goto IL_0220; } IL_016b: { int32_t L_59 = V_1; if ((((int32_t)L_59) > ((int32_t)1))) { goto IL_01a3; } } { XmlSchemaReader_t1164558392 * L_60 = ___reader0; NullCheck(L_60); String_t* L_61 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_60); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_62 = String_op_Equality_m920492651(NULL /*static, unused*/, L_61, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_62) { goto IL_01a3; } } { V_1 = 2; XmlSchemaReader_t1164558392 * L_63 = ___reader0; ValidationEventHandler_t791314227 * L_64 = ___h1; XmlSchemaAnnotation_t2553753397 * L_65 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_63, L_64, /*hidden argument*/NULL); V_2 = L_65; XmlSchemaAnnotation_t2553753397 * L_66 = V_2; if (!L_66) { goto IL_019e; } } { XmlSchemaSimpleContent_t4264369274 * L_67 = V_0; XmlSchemaAnnotation_t2553753397 * L_68 = V_2; NullCheck(L_67); XmlSchemaAnnotated_set_Annotation_m3050132480(L_67, L_68, /*hidden argument*/NULL); } IL_019e: { goto IL_0215; } IL_01a3: { int32_t L_69 = V_1; if ((((int32_t)L_69) > ((int32_t)2))) { goto IL_020f; } } { XmlSchemaReader_t1164558392 * L_70 = ___reader0; NullCheck(L_70); String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_70); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_72 = String_op_Equality_m920492651(NULL /*static, unused*/, L_71, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_72) { goto IL_01db; } } { V_1 = 3; XmlSchemaReader_t1164558392 * L_73 = ___reader0; ValidationEventHandler_t791314227 * L_74 = ___h1; XmlSchemaSimpleContentRestriction_t2746076865 * L_75 = XmlSchemaSimpleContentRestriction_Read_m2754874039(NULL /*static, unused*/, L_73, L_74, /*hidden argument*/NULL); V_3 = L_75; XmlSchemaSimpleContentRestriction_t2746076865 * L_76 = V_3; if (!L_76) { goto IL_01d6; } } { XmlSchemaSimpleContent_t4264369274 * L_77 = V_0; XmlSchemaSimpleContentRestriction_t2746076865 * L_78 = V_3; NullCheck(L_77); L_77->set_content_16(L_78); } IL_01d6: { goto IL_0215; } IL_01db: { XmlSchemaReader_t1164558392 * L_79 = ___reader0; NullCheck(L_79); String_t* L_80 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_79); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_81 = String_op_Equality_m920492651(NULL /*static, unused*/, L_80, _stringLiteral1610623306, /*hidden argument*/NULL); if (!L_81) { goto IL_020f; } } { V_1 = 3; XmlSchemaReader_t1164558392 * L_82 = ___reader0; ValidationEventHandler_t791314227 * L_83 = ___h1; XmlSchemaSimpleContentExtension_t1269327470 * L_84 = XmlSchemaSimpleContentExtension_Read_m47318261(NULL /*static, unused*/, L_82, L_83, /*hidden argument*/NULL); V_4 = L_84; XmlSchemaSimpleContentExtension_t1269327470 * L_85 = V_4; if (!L_85) { goto IL_020a; } } { XmlSchemaSimpleContent_t4264369274 * L_86 = V_0; XmlSchemaSimpleContentExtension_t1269327470 * L_87 = V_4; NullCheck(L_86); L_86->set_content_16(L_87); } IL_020a: { goto IL_0215; } IL_020f: { XmlSchemaReader_t1164558392 * L_88 = ___reader0; NullCheck(L_88); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_88, /*hidden argument*/NULL); } IL_0215: { XmlSchemaReader_t1164558392 * L_89 = ___reader0; NullCheck(L_89); bool L_90 = XmlSchemaReader_ReadNextElement_m611223709(L_89, /*hidden argument*/NULL); if (L_90) { goto IL_012d; } } IL_0220: { XmlSchemaSimpleContent_t4264369274 * L_91 = V_0; return L_91; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleContentExtension::.ctor() extern "C" void XmlSchemaSimpleContentExtension__ctor_m1443673690 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentExtension__ctor_m1443673690_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaContent__ctor_m2690093098(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_0 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); __this->set_baseTypeName_19(L_0); XmlSchemaObjectCollection_t1064819932 * L_1 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_1, /*hidden argument*/NULL); __this->set_attributes_18(L_1); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentExtension::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentExtension_get_BaseTypeName_m3374486103 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_baseTypeName_19(); return L_0; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentExtension::get_Attributes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleContentExtension_get_Attributes_m2422945400 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_attributes_18(); return L_0; } } // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentExtension::get_AnyAttribute() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { { XmlSchemaAnyAttribute_t963227996 * L_0 = __this->get_any_17(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleContentExtension::set_AnyAttribute(System.Xml.Schema.XmlSchemaAnyAttribute) extern "C" void XmlSchemaSimpleContentExtension_set_AnyAttribute_m3647294672 (XmlSchemaSimpleContentExtension_t1269327470 * __this, XmlSchemaAnyAttribute_t963227996 * ___value0, const RuntimeMethod* method) { { XmlSchemaAnyAttribute_t963227996 * L_0 = ___value0; __this->set_any_17(L_0); return; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleContentExtension::get_IsExtension() extern "C" bool XmlSchemaSimpleContentExtension_get_IsExtension_m2985785943 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { { return (bool)1; } } // System.Void System.Xml.Schema.XmlSchemaSimpleContentExtension::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleContentExtension_SetParent_m2420538722 (XmlSchemaSimpleContentExtension_t1269327470 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentExtension_SetParent_m2420538722_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaAnyAttribute_t963227996 * L_1 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { XmlSchemaAnyAttribute_t963227996 * L_2 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { XmlSchemaObjectCollection_t1064819932 * L_3 = XmlSchemaSimpleContentExtension_get_Attributes_m2422945400(__this, /*hidden argument*/NULL); NullCheck(L_3); XmlSchemaObjectEnumerator_t503074204 * L_4 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_3, /*hidden argument*/NULL); V_1 = L_4; } IL_002a: try { // begin try (depth: 1) { goto IL_003d; } IL_002f: { XmlSchemaObjectEnumerator_t503074204 * L_5 = V_1; NullCheck(L_5); XmlSchemaObject_t1315720168 * L_6 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_5, /*hidden argument*/NULL); V_0 = L_6; XmlSchemaObject_t1315720168 * L_7 = V_0; NullCheck(L_7); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_7, __this); } IL_003d: { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; NullCheck(L_8); bool L_9 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_002f; } } IL_0048: { IL2CPP_LEAVE(0x5F, FINALLY_004d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_004d; } FINALLY_004d: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_10 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_2; if (L_11) { goto IL_0058; } } IL_0057: { IL2CPP_END_FINALLY(77) } IL_0058: { RuntimeObject* L_12 = V_2; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_12); IL2CPP_END_FINALLY(77) } } // end finally (depth: 1) IL2CPP_CLEANUP(77) { IL2CPP_JUMP_TBL(0x5F, IL_005f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005f: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContentExtension::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContentExtension_Compile_m1060479711 (XmlSchemaSimpleContentExtension_t1269327470 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentExtension_Compile_m1060479711_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; XmlSchemaObject_t1315720168 * V_2 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_3 = NULL; XmlSchemaAttribute_t2797257020 * V_4 = NULL; XmlSchemaAttributeGroupRef_t846390688 * V_5 = NULL; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { bool L_4 = ((XmlSchemaObject_t1315720168 *)__this)->get_isRedefinedComponent_10(); if (!L_4) { goto IL_0095; } } { XmlSchemaAnnotation_t2553753397 * L_5 = XmlSchemaAnnotated_get_Annotation_m3851538793(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_003a; } } { XmlSchemaAnnotation_t2553753397 * L_6 = XmlSchemaAnnotated_get_Annotation_m3851538793(__this, /*hidden argument*/NULL); NullCheck(L_6); ((XmlSchemaObject_t1315720168 *)L_6)->set_isRedefinedComponent_10((bool)1); } IL_003a: { XmlSchemaAnyAttribute_t963227996 * L_7 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); if (!L_7) { goto IL_0051; } } { XmlSchemaAnyAttribute_t963227996 * L_8 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); NullCheck(L_8); ((XmlSchemaObject_t1315720168 *)L_8)->set_isRedefinedComponent_10((bool)1); } IL_0051: { XmlSchemaObjectCollection_t1064819932 * L_9 = XmlSchemaSimpleContentExtension_get_Attributes_m2422945400(__this, /*hidden argument*/NULL); NullCheck(L_9); XmlSchemaObjectEnumerator_t503074204 * L_10 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_9, /*hidden argument*/NULL); V_1 = L_10; } IL_005d: try { // begin try (depth: 1) { goto IL_0070; } IL_0062: { XmlSchemaObjectEnumerator_t503074204 * L_11 = V_1; NullCheck(L_11); XmlSchemaObject_t1315720168 * L_12 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_11, /*hidden argument*/NULL); V_0 = L_12; XmlSchemaObject_t1315720168 * L_13 = V_0; NullCheck(L_13); L_13->set_isRedefinedComponent_10((bool)1); } IL_0070: { XmlSchemaObjectEnumerator_t503074204 * L_14 = V_1; NullCheck(L_14); bool L_15 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_14, /*hidden argument*/NULL); if (L_15) { goto IL_0062; } } IL_007b: { IL2CPP_LEAVE(0x95, FINALLY_0080); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0080; } FINALLY_0080: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_16 = V_1; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_6; if (L_17) { goto IL_008d; } } IL_008c: { IL2CPP_END_FINALLY(128) } IL_008d: { RuntimeObject* L_18 = V_6; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_18); IL2CPP_END_FINALLY(128) } } // end finally (depth: 1) IL2CPP_CLEANUP(128) { IL2CPP_JUMP_TBL(0x95, IL_0095) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0095: { XmlQualifiedName_t2760654312 * L_19 = XmlSchemaSimpleContentExtension_get_BaseTypeName_m3374486103(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_20 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_19, (XmlQualifiedName_t2760654312 *)NULL, /*hidden argument*/NULL); if (L_20) { goto IL_00b6; } } { XmlQualifiedName_t2760654312 * L_21 = XmlSchemaSimpleContentExtension_get_BaseTypeName_m3374486103(__this, /*hidden argument*/NULL); NullCheck(L_21); bool L_22 = XmlQualifiedName_get_IsEmpty_m1430090042(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00c7; } } IL_00b6: { ValidationEventHandler_t791314227 * L_23 = ___h0; XmlSchemaObject_error_m903554348(__this, L_23, _stringLiteral3940459944, /*hidden argument*/NULL); goto IL_00e3; } IL_00c7: { XmlQualifiedName_t2760654312 * L_24 = XmlSchemaSimpleContentExtension_get_BaseTypeName_m3374486103(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_25 = XmlSchemaUtil_CheckQName_m3878061682(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); if (L_25) { goto IL_00e3; } } { ValidationEventHandler_t791314227 * L_26 = ___h0; XmlSchemaObject_error_m903554348(__this, L_26, _stringLiteral4006777570, /*hidden argument*/NULL); } IL_00e3: { XmlSchemaAnyAttribute_t963227996 * L_27 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); if (!L_27) { goto IL_0108; } } { int32_t L_28 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAnyAttribute_t963227996 * L_29 = XmlSchemaSimpleContentExtension_get_AnyAttribute_m1108182419(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_30 = ___h0; XmlSchema_t3742557897 * L_31 = ___schema1; NullCheck(L_29); int32_t L_32 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAnyAttribute::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_29, L_30, L_31); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_32))); } IL_0108: { XmlSchemaObjectCollection_t1064819932 * L_33 = XmlSchemaSimpleContentExtension_get_Attributes_m2422945400(__this, /*hidden argument*/NULL); NullCheck(L_33); XmlSchemaObjectEnumerator_t503074204 * L_34 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_33, /*hidden argument*/NULL); V_3 = L_34; } IL_0114: try { // begin try (depth: 1) { goto IL_0193; } IL_0119: { XmlSchemaObjectEnumerator_t503074204 * L_35 = V_3; NullCheck(L_35); XmlSchemaObject_t1315720168 * L_36 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_35, /*hidden argument*/NULL); V_2 = L_36; XmlSchemaObject_t1315720168 * L_37 = V_2; if (!((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_37, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var))) { goto IL_014e; } } IL_012b: { XmlSchemaObject_t1315720168 * L_38 = V_2; V_4 = ((XmlSchemaAttribute_t2797257020 *)CastclassClass((RuntimeObject*)L_38, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); int32_t L_39 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAttribute_t2797257020 * L_40 = V_4; ValidationEventHandler_t791314227 * L_41 = ___h0; XmlSchema_t3742557897 * L_42 = ___schema1; NullCheck(L_40); int32_t L_43 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAttribute::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_40, L_41, L_42); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)L_43))); goto IL_0193; } IL_014e: { XmlSchemaObject_t1315720168 * L_44 = V_2; if (!((XmlSchemaAttributeGroupRef_t846390688 *)IsInstClass((RuntimeObject*)L_44, XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var))) { goto IL_017c; } } IL_0159: { XmlSchemaObject_t1315720168 * L_45 = V_2; V_5 = ((XmlSchemaAttributeGroupRef_t846390688 *)CastclassClass((RuntimeObject*)L_45, XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var)); int32_t L_46 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAttributeGroupRef_t846390688 * L_47 = V_5; ValidationEventHandler_t791314227 * L_48 = ___h0; XmlSchema_t3742557897 * L_49 = ___schema1; NullCheck(L_47); int32_t L_50 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAttributeGroupRef::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_47, L_48, L_49); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_50))); goto IL_0193; } IL_017c: { ValidationEventHandler_t791314227 * L_51 = ___h0; XmlSchemaObject_t1315720168 * L_52 = V_2; NullCheck(L_52); Type_t * L_53 = Object_GetType_m88164663(L_52, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_54 = String_Concat_m904156431(NULL /*static, unused*/, L_53, _stringLiteral468328884, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_51, L_54, /*hidden argument*/NULL); } IL_0193: { XmlSchemaObjectEnumerator_t503074204 * L_55 = V_3; NullCheck(L_55); bool L_56 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_55, /*hidden argument*/NULL); if (L_56) { goto IL_0119; } } IL_019e: { IL2CPP_LEAVE(0x1B8, FINALLY_01a3); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01a3; } FINALLY_01a3: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_57 = V_3; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_57, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_58 = V_7; if (L_58) { goto IL_01b0; } } IL_01af: { IL2CPP_END_FINALLY(419) } IL_01b0: { RuntimeObject* L_59 = V_7; NullCheck(L_59); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_59); IL2CPP_END_FINALLY(419) } } // end finally (depth: 1) IL2CPP_CLEANUP(419) { IL2CPP_JUMP_TBL(0x1B8, IL_01b8) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01b8: { String_t* L_60 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_61 = ___schema1; NullCheck(L_61); Hashtable_t1853889766 * L_62 = XmlSchema_get_IDCollection_m3725452494(L_61, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_63 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_60, __this, L_62, L_63, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_64 = ___schema1; NullCheck(L_64); Guid_t L_65 = ((XmlSchemaObject_t1315720168 *)L_64)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_65); int32_t L_66 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_66; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentExtension::GetBaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentExtension_GetBaseTypeName_m3081786994 (XmlSchemaSimpleContentExtension_t1269327470 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_baseTypeName_19(); return L_0; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContentExtension::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContentExtension_Validate_m2229865688 (XmlSchemaSimpleContentExtension_t1269327470 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentExtension_Validate_m2229865688_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaType_t2033747345 * V_0 = NULL; XmlSchemaComplexType_t3740801802 * V_1 = NULL; { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { XmlSchema_t3742557897 * L_4 = ___schema1; XmlQualifiedName_t2760654312 * L_5 = __this->get_baseTypeName_19(); NullCheck(L_4); XmlSchemaType_t2033747345 * L_6 = XmlSchema_FindSchemaType_m3920891232(L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; XmlSchemaType_t2033747345 * L_7 = V_0; if (!L_7) { goto IL_0069; } } { XmlSchemaType_t2033747345 * L_8 = V_0; V_1 = ((XmlSchemaComplexType_t3740801802 *)IsInstClass((RuntimeObject*)L_8, XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var)); XmlSchemaComplexType_t3740801802 * L_9 = V_1; if (!L_9) { goto IL_0054; } } { XmlSchemaComplexType_t3740801802 * L_10 = V_1; NullCheck(L_10); XmlSchemaContentModel_t602185179 * L_11 = XmlSchemaComplexType_get_ContentModel_m1078180248(L_10, /*hidden argument*/NULL); if (!((XmlSchemaComplexContent_t3528540772 *)IsInstClass((RuntimeObject*)L_11, XmlSchemaComplexContent_t3528540772_il2cpp_TypeInfo_var))) { goto IL_0054; } } { ValidationEventHandler_t791314227 * L_12 = ___h0; XmlSchemaObject_error_m903554348(__this, L_12, _stringLiteral2576403314, /*hidden argument*/NULL); } IL_0054: { XmlSchemaType_t2033747345 * L_13 = V_0; ValidationEventHandler_t791314227 * L_14 = ___h0; XmlSchema_t3742557897 * L_15 = ___schema1; NullCheck(L_13); VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_13, L_14, L_15); XmlSchemaType_t2033747345 * L_16 = V_0; ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_16); goto IL_00fd; } IL_0069: { XmlQualifiedName_t2760654312 * L_17 = __this->get_baseTypeName_19(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_18 = ((XmlSchemaComplexType_t3740801802_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var))->get_AnyTypeName_43(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_19 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_17, L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_008e; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_20 = XmlSchemaComplexType_get_AnyType_m2038550701(NULL /*static, unused*/, /*hidden argument*/NULL); ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_20); goto IL_00fd; } IL_008e: { XmlQualifiedName_t2760654312 * L_21 = __this->get_baseTypeName_19(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_22 = XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516(NULL /*static, unused*/, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00cb; } } { XmlQualifiedName_t2760654312 * L_23 = __this->get_baseTypeName_19(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_24 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_23, /*hidden argument*/NULL); ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_24); RuntimeObject * L_25 = ((XmlSchemaContent_t1040349258 *)__this)->get_actualBaseSchemaType_16(); if (L_25) { goto IL_00c6; } } { ValidationEventHandler_t791314227 * L_26 = ___h0; XmlSchemaObject_error_m903554348(__this, L_26, _stringLiteral944206075, /*hidden argument*/NULL); } IL_00c6: { goto IL_00fd; } IL_00cb: { XmlSchema_t3742557897 * L_27 = ___schema1; XmlQualifiedName_t2760654312 * L_28 = __this->get_baseTypeName_19(); NullCheck(L_28); String_t* L_29 = XmlQualifiedName_get_Namespace_m3957593392(L_28, /*hidden argument*/NULL); NullCheck(L_27); bool L_30 = XmlSchema_IsNamespaceAbsent_m3899863769(L_27, L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00fd; } } { ValidationEventHandler_t791314227 * L_31 = ___h0; XmlQualifiedName_t2760654312 * L_32 = __this->get_baseTypeName_19(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_33 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral508009477, L_32, _stringLiteral1962955403, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_31, L_33, /*hidden argument*/NULL); } IL_00fd: { XmlSchema_t3742557897 * L_34 = ___schema1; NullCheck(L_34); Guid_t L_35 = ((XmlSchemaObject_t1315720168 *)L_34)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_35); int32_t L_36 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_36; } } // System.Xml.Schema.XmlSchemaSimpleContentExtension System.Xml.Schema.XmlSchemaSimpleContentExtension::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleContentExtension_t1269327470 * XmlSchemaSimpleContentExtension_Read_m47318261 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentExtension_Read_m47318261_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleContentExtension_t1269327470 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; XmlSchemaAttribute_t2797257020 * V_4 = NULL; XmlSchemaAttributeGroupRef_t846390688 * V_5 = NULL; XmlSchemaAnyAttribute_t963227996 * V_6 = NULL; { XmlSchemaSimpleContentExtension_t1269327470 * L_0 = (XmlSchemaSimpleContentExtension_t1269327470 *)il2cpp_codegen_object_new(XmlSchemaSimpleContentExtension_t1269327470_il2cpp_TypeInfo_var); XmlSchemaSimpleContentExtension__ctor_m1443673690(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1610623306, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1513614340, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSimpleContentExtension_t1269327470 *)NULL; } IL_0056: { XmlSchemaSimpleContentExtension_t1269327470 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleContentExtension_t1269327470 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleContentExtension_t1269327470 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_014c; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral2838662761, /*hidden argument*/NULL); if (!L_24) { goto IL_00c4; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_27 = XmlSchemaUtil_ReadQNameAttribute_m567024358(NULL /*static, unused*/, L_26, (&V_1), /*hidden argument*/NULL); NullCheck(L_25); L_25->set_baseTypeName_19(L_27); Exception_t * L_28 = V_1; if (!L_28) { goto IL_00bf; } } { ValidationEventHandler_t791314227 * L_29 = ___h1; XmlSchemaReader_t1164558392 * L_30 = ___reader0; NullCheck(L_30); String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_30); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_32 = String_Concat_m3937257545(NULL /*static, unused*/, L_31, _stringLiteral494350233, /*hidden argument*/NULL); Exception_t * L_33 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_29, L_32, L_33, /*hidden argument*/NULL); } IL_00bf: { goto IL_014c; } IL_00c4: { XmlSchemaReader_t1164558392 * L_34 = ___reader0; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_36 = String_op_Equality_m920492651(NULL /*static, unused*/, L_35, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_36) { goto IL_00ea; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_37 = V_0; XmlSchemaReader_t1164558392 * L_38 = ___reader0; NullCheck(L_38); String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_38); NullCheck(L_37); XmlSchemaAnnotated_set_Id_m1597719336(L_37, L_39, /*hidden argument*/NULL); goto IL_014c; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0114; } } { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_44); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_46 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_45, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_46) { goto IL_0129; } } IL_0114: { XmlSchemaReader_t1164558392 * L_47 = ___reader0; NullCheck(L_47); String_t* L_48 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_47); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_48, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_49) { goto IL_0145; } } IL_0129: { ValidationEventHandler_t791314227 * L_50 = ___h1; XmlSchemaReader_t1164558392 * L_51 = ___reader0; NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m3937257545(NULL /*static, unused*/, L_52, _stringLiteral1832989167, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_50, L_53, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_014c; } IL_0145: { XmlSchemaReader_t1164558392 * L_54 = ___reader0; XmlSchemaSimpleContentExtension_t1269327470 * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); } IL_014c: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); bool L_57 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_56); if (L_57) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_58); XmlSchemaReader_t1164558392 * L_59 = ___reader0; NullCheck(L_59); bool L_60 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_59); if (!L_60) { goto IL_016b; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_61 = V_0; return L_61; } IL_016b: { V_2 = 1; goto IL_02a4; } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_62); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)15))))) { goto IL_01b0; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); String_t* L_65 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_64); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_66 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_65, _stringLiteral1610623306, /*hidden argument*/NULL); if (!L_66) { goto IL_01ab; } } { ValidationEventHandler_t791314227 * L_67 = ___h1; XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_68); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_70 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral871133995, L_69, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_67, L_70, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01ab: { goto IL_02af; } IL_01b0: { int32_t L_71 = V_2; if ((((int32_t)L_71) > ((int32_t)1))) { goto IL_01e8; } } { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_72); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_74 = String_op_Equality_m920492651(NULL /*static, unused*/, L_73, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_74) { goto IL_01e8; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_75 = ___reader0; ValidationEventHandler_t791314227 * L_76 = ___h1; XmlSchemaAnnotation_t2553753397 * L_77 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_75, L_76, /*hidden argument*/NULL); V_3 = L_77; XmlSchemaAnnotation_t2553753397 * L_78 = V_3; if (!L_78) { goto IL_01e3; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_79 = V_0; XmlSchemaAnnotation_t2553753397 * L_80 = V_3; NullCheck(L_79); XmlSchemaAnnotated_set_Annotation_m3050132480(L_79, L_80, /*hidden argument*/NULL); } IL_01e3: { goto IL_02a4; } IL_01e8: { int32_t L_81 = V_2; if ((((int32_t)L_81) > ((int32_t)2))) { goto IL_0263; } } { XmlSchemaReader_t1164558392 * L_82 = ___reader0; NullCheck(L_82); String_t* L_83 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_82); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_84 = String_op_Equality_m920492651(NULL /*static, unused*/, L_83, _stringLiteral4158421234, /*hidden argument*/NULL); if (!L_84) { goto IL_0229; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_85 = ___reader0; ValidationEventHandler_t791314227 * L_86 = ___h1; XmlSchemaAttribute_t2797257020 * L_87 = XmlSchemaAttribute_Read_m3620037629(NULL /*static, unused*/, L_85, L_86, /*hidden argument*/NULL); V_4 = L_87; XmlSchemaAttribute_t2797257020 * L_88 = V_4; if (!L_88) { goto IL_0224; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_89 = V_0; NullCheck(L_89); XmlSchemaObjectCollection_t1064819932 * L_90 = XmlSchemaSimpleContentExtension_get_Attributes_m2422945400(L_89, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_91 = V_4; NullCheck(L_90); XmlSchemaObjectCollection_Add_m1142549045(L_90, L_91, /*hidden argument*/NULL); } IL_0224: { goto IL_02a4; } IL_0229: { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_92); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_94 = String_op_Equality_m920492651(NULL /*static, unused*/, L_93, _stringLiteral400592889, /*hidden argument*/NULL); if (!L_94) { goto IL_0263; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_95 = ___reader0; ValidationEventHandler_t791314227 * L_96 = ___h1; XmlSchemaAttributeGroupRef_t846390688 * L_97 = XmlSchemaAttributeGroupRef_Read_m3714796484(NULL /*static, unused*/, L_95, L_96, /*hidden argument*/NULL); V_5 = L_97; XmlSchemaAttributeGroupRef_t846390688 * L_98 = V_5; if (!L_98) { goto IL_025e; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_99 = V_0; NullCheck(L_99); XmlSchemaObjectCollection_t1064819932 * L_100 = L_99->get_attributes_18(); XmlSchemaAttributeGroupRef_t846390688 * L_101 = V_5; NullCheck(L_100); XmlSchemaObjectCollection_Add_m1142549045(L_100, L_101, /*hidden argument*/NULL); } IL_025e: { goto IL_02a4; } IL_0263: { int32_t L_102 = V_2; if ((((int32_t)L_102) > ((int32_t)3))) { goto IL_029e; } } { XmlSchemaReader_t1164558392 * L_103 = ___reader0; NullCheck(L_103); String_t* L_104 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_103); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_105 = String_op_Equality_m920492651(NULL /*static, unused*/, L_104, _stringLiteral1080123703, /*hidden argument*/NULL); if (!L_105) { goto IL_029e; } } { V_2 = 4; XmlSchemaReader_t1164558392 * L_106 = ___reader0; ValidationEventHandler_t791314227 * L_107 = ___h1; XmlSchemaAnyAttribute_t963227996 * L_108 = XmlSchemaAnyAttribute_Read_m1369098939(NULL /*static, unused*/, L_106, L_107, /*hidden argument*/NULL); V_6 = L_108; XmlSchemaAnyAttribute_t963227996 * L_109 = V_6; if (!L_109) { goto IL_0299; } } { XmlSchemaSimpleContentExtension_t1269327470 * L_110 = V_0; XmlSchemaAnyAttribute_t963227996 * L_111 = V_6; NullCheck(L_110); XmlSchemaSimpleContentExtension_set_AnyAttribute_m3647294672(L_110, L_111, /*hidden argument*/NULL); } IL_0299: { goto IL_02a4; } IL_029e: { XmlSchemaReader_t1164558392 * L_112 = ___reader0; NullCheck(L_112); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_112, /*hidden argument*/NULL); } IL_02a4: { XmlSchemaReader_t1164558392 * L_113 = ___reader0; NullCheck(L_113); bool L_114 = XmlSchemaReader_ReadNextElement_m611223709(L_113, /*hidden argument*/NULL); if (L_114) { goto IL_0172; } } IL_02af: { XmlSchemaSimpleContentExtension_t1269327470 * L_115 = V_0; return L_115; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleContentRestriction::.ctor() extern "C" void XmlSchemaSimpleContentRestriction__ctor_m1686457861 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentRestriction__ctor_m1686457861_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaContent__ctor_m2690093098(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_0 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); __this->set_baseTypeName_20(L_0); XmlSchemaObjectCollection_t1064819932 * L_1 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_1, /*hidden argument*/NULL); __this->set_attributes_18(L_1); XmlSchemaObjectCollection_t1064819932 * L_2 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_2, /*hidden argument*/NULL); __this->set_facets_21(L_2); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentRestriction_get_BaseTypeName_m2313782330 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_baseTypeName_20(); return L_0; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_BaseType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_t2678868104 * L_0 = __this->get_baseType_19(); return L_0; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_Attributes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_attributes_18(); return L_0; } } // System.Xml.Schema.XmlSchemaAnyAttribute System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_AnyAttribute() extern "C" XmlSchemaAnyAttribute_t963227996 * XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { XmlSchemaAnyAttribute_t963227996 * L_0 = __this->get_any_17(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleContentRestriction::set_AnyAttribute(System.Xml.Schema.XmlSchemaAnyAttribute) extern "C" void XmlSchemaSimpleContentRestriction_set_AnyAttribute_m3812462749 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, XmlSchemaAnyAttribute_t963227996 * ___value0, const RuntimeMethod* method) { { XmlSchemaAnyAttribute_t963227996 * L_0 = ___value0; __this->set_any_17(L_0); return; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleContentRestriction::get_IsExtension() extern "C" bool XmlSchemaSimpleContentRestriction_get_IsExtension_m1560414208 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { return (bool)0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleContentRestriction::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleContentRestriction_SetParent_m659227478 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentRestriction_SetParent_m659227478_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_1 = XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { XmlSchemaSimpleType_t2678868104 * L_2 = XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527(__this, /*hidden argument*/NULL); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaSimpleType::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { XmlSchemaAnyAttribute_t963227996 * L_3 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); if (!L_3) { goto IL_0035; } } { XmlSchemaAnyAttribute_t963227996 * L_4 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); NullCheck(L_4); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_4, __this); } IL_0035: { XmlSchemaObjectCollection_t1064819932 * L_5 = XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961(__this, /*hidden argument*/NULL); NullCheck(L_5); XmlSchemaObjectEnumerator_t503074204 * L_6 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_5, /*hidden argument*/NULL); V_1 = L_6; } IL_0041: try { // begin try (depth: 1) { goto IL_0054; } IL_0046: { XmlSchemaObjectEnumerator_t503074204 * L_7 = V_1; NullCheck(L_7); XmlSchemaObject_t1315720168 * L_8 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_7, /*hidden argument*/NULL); V_0 = L_8; XmlSchemaObject_t1315720168 * L_9 = V_0; NullCheck(L_9); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_9, __this); } IL_0054: { XmlSchemaObjectEnumerator_t503074204 * L_10 = V_1; NullCheck(L_10); bool L_11 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_10, /*hidden argument*/NULL); if (L_11) { goto IL_0046; } } IL_005f: { IL2CPP_LEAVE(0x76, FINALLY_0064); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0064; } FINALLY_0064: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_12 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_12, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_13 = V_2; if (L_13) { goto IL_006f; } } IL_006e: { IL2CPP_END_FINALLY(100) } IL_006f: { RuntimeObject* L_14 = V_2; NullCheck(L_14); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_14); IL2CPP_END_FINALLY(100) } } // end finally (depth: 1) IL2CPP_CLEANUP(100) { IL2CPP_JUMP_TBL(0x76, IL_0076) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0076: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContentRestriction::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContentRestriction_Compile_m2649237347 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentRestriction_Compile_m2649237347_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; XmlSchemaObject_t1315720168 * V_2 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_3 = NULL; XmlSchemaAttribute_t2797257020 * V_4 = NULL; XmlSchemaAttributeGroupRef_t846390688 * V_5 = NULL; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { bool L_4 = ((XmlSchemaObject_t1315720168 *)__this)->get_isRedefinedComponent_10(); if (!L_4) { goto IL_0095; } } { XmlSchemaAnnotation_t2553753397 * L_5 = XmlSchemaAnnotated_get_Annotation_m3851538793(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_003a; } } { XmlSchemaAnnotation_t2553753397 * L_6 = XmlSchemaAnnotated_get_Annotation_m3851538793(__this, /*hidden argument*/NULL); NullCheck(L_6); ((XmlSchemaObject_t1315720168 *)L_6)->set_isRedefinedComponent_10((bool)1); } IL_003a: { XmlSchemaAnyAttribute_t963227996 * L_7 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); if (!L_7) { goto IL_0051; } } { XmlSchemaAnyAttribute_t963227996 * L_8 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); NullCheck(L_8); ((XmlSchemaObject_t1315720168 *)L_8)->set_isRedefinedComponent_10((bool)1); } IL_0051: { XmlSchemaObjectCollection_t1064819932 * L_9 = XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961(__this, /*hidden argument*/NULL); NullCheck(L_9); XmlSchemaObjectEnumerator_t503074204 * L_10 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_9, /*hidden argument*/NULL); V_1 = L_10; } IL_005d: try { // begin try (depth: 1) { goto IL_0070; } IL_0062: { XmlSchemaObjectEnumerator_t503074204 * L_11 = V_1; NullCheck(L_11); XmlSchemaObject_t1315720168 * L_12 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_11, /*hidden argument*/NULL); V_0 = L_12; XmlSchemaObject_t1315720168 * L_13 = V_0; NullCheck(L_13); L_13->set_isRedefinedComponent_10((bool)1); } IL_0070: { XmlSchemaObjectEnumerator_t503074204 * L_14 = V_1; NullCheck(L_14); bool L_15 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_14, /*hidden argument*/NULL); if (L_15) { goto IL_0062; } } IL_007b: { IL2CPP_LEAVE(0x95, FINALLY_0080); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0080; } FINALLY_0080: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_16 = V_1; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_17 = V_6; if (L_17) { goto IL_008d; } } IL_008c: { IL2CPP_END_FINALLY(128) } IL_008d: { RuntimeObject* L_18 = V_6; NullCheck(L_18); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_18); IL2CPP_END_FINALLY(128) } } // end finally (depth: 1) IL2CPP_CLEANUP(128) { IL2CPP_JUMP_TBL(0x95, IL_0095) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0095: { XmlQualifiedName_t2760654312 * L_19 = XmlSchemaSimpleContentRestriction_get_BaseTypeName_m2313782330(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_20 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_19, (XmlQualifiedName_t2760654312 *)NULL, /*hidden argument*/NULL); if (L_20) { goto IL_00b6; } } { XmlQualifiedName_t2760654312 * L_21 = XmlSchemaSimpleContentRestriction_get_BaseTypeName_m2313782330(__this, /*hidden argument*/NULL); NullCheck(L_21); bool L_22 = XmlQualifiedName_get_IsEmpty_m1430090042(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00c7; } } IL_00b6: { ValidationEventHandler_t791314227 * L_23 = ___h0; XmlSchemaObject_error_m903554348(__this, L_23, _stringLiteral3940459944, /*hidden argument*/NULL); goto IL_00e3; } IL_00c7: { XmlQualifiedName_t2760654312 * L_24 = XmlSchemaSimpleContentRestriction_get_BaseTypeName_m2313782330(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_25 = XmlSchemaUtil_CheckQName_m3878061682(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); if (L_25) { goto IL_00e3; } } { ValidationEventHandler_t791314227 * L_26 = ___h0; XmlSchemaObject_error_m903554348(__this, L_26, _stringLiteral4006777570, /*hidden argument*/NULL); } IL_00e3: { XmlSchemaSimpleType_t2678868104 * L_27 = XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527(__this, /*hidden argument*/NULL); if (!L_27) { goto IL_0108; } } { int32_t L_28 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_29 = XmlSchemaSimpleContentRestriction_get_BaseType_m3375800527(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_30 = ___h0; XmlSchema_t3742557897 * L_31 = ___schema1; NullCheck(L_29); int32_t L_32 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_29, L_30, L_31); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_32))); } IL_0108: { XmlSchemaAnyAttribute_t963227996 * L_33 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); if (!L_33) { goto IL_012d; } } { int32_t L_34 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAnyAttribute_t963227996 * L_35 = XmlSchemaSimpleContentRestriction_get_AnyAttribute_m426281327(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_36 = ___h0; XmlSchema_t3742557897 * L_37 = ___schema1; NullCheck(L_35); int32_t L_38 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAnyAttribute::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_35, L_36, L_37); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)L_38))); } IL_012d: { XmlSchemaObjectCollection_t1064819932 * L_39 = XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961(__this, /*hidden argument*/NULL); NullCheck(L_39); XmlSchemaObjectEnumerator_t503074204 * L_40 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_39, /*hidden argument*/NULL); V_3 = L_40; } IL_0139: try { // begin try (depth: 1) { goto IL_01b8; } IL_013e: { XmlSchemaObjectEnumerator_t503074204 * L_41 = V_3; NullCheck(L_41); XmlSchemaObject_t1315720168 * L_42 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_41, /*hidden argument*/NULL); V_2 = L_42; XmlSchemaObject_t1315720168 * L_43 = V_2; if (!((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_43, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var))) { goto IL_0173; } } IL_0150: { XmlSchemaObject_t1315720168 * L_44 = V_2; V_4 = ((XmlSchemaAttribute_t2797257020 *)CastclassClass((RuntimeObject*)L_44, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); int32_t L_45 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAttribute_t2797257020 * L_46 = V_4; ValidationEventHandler_t791314227 * L_47 = ___h0; XmlSchema_t3742557897 * L_48 = ___schema1; NullCheck(L_46); int32_t L_49 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAttribute::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_46, L_47, L_48); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_49))); goto IL_01b8; } IL_0173: { XmlSchemaObject_t1315720168 * L_50 = V_2; if (!((XmlSchemaAttributeGroupRef_t846390688 *)IsInstClass((RuntimeObject*)L_50, XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var))) { goto IL_01a1; } } IL_017e: { XmlSchemaObject_t1315720168 * L_51 = V_2; V_5 = ((XmlSchemaAttributeGroupRef_t846390688 *)CastclassClass((RuntimeObject*)L_51, XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var)); int32_t L_52 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaAttributeGroupRef_t846390688 * L_53 = V_5; ValidationEventHandler_t791314227 * L_54 = ___h0; XmlSchema_t3742557897 * L_55 = ___schema1; NullCheck(L_53); int32_t L_56 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaAttributeGroupRef::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_53, L_54, L_55); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_56))); goto IL_01b8; } IL_01a1: { ValidationEventHandler_t791314227 * L_57 = ___h0; XmlSchemaObject_t1315720168 * L_58 = V_2; NullCheck(L_58); Type_t * L_59 = Object_GetType_m88164663(L_58, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_60 = String_Concat_m904156431(NULL /*static, unused*/, L_59, _stringLiteral1667411732, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_57, L_60, /*hidden argument*/NULL); } IL_01b8: { XmlSchemaObjectEnumerator_t503074204 * L_61 = V_3; NullCheck(L_61); bool L_62 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_61, /*hidden argument*/NULL); if (L_62) { goto IL_013e; } } IL_01c3: { IL2CPP_LEAVE(0x1DD, FINALLY_01c8); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_01c8; } FINALLY_01c8: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_63 = V_3; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_63, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_64 = V_7; if (L_64) { goto IL_01d5; } } IL_01d4: { IL2CPP_END_FINALLY(456) } IL_01d5: { RuntimeObject* L_65 = V_7; NullCheck(L_65); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_65); IL2CPP_END_FINALLY(456) } } // end finally (depth: 1) IL2CPP_CLEANUP(456) { IL2CPP_JUMP_TBL(0x1DD, IL_01dd) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_01dd: { String_t* L_66 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_67 = ___schema1; NullCheck(L_67); Hashtable_t1853889766 * L_68 = XmlSchema_get_IDCollection_m3725452494(L_67, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_69 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_66, __this, L_68, L_69, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_70 = ___schema1; NullCheck(L_70); Guid_t L_71 = ((XmlSchemaObject_t1315720168 *)L_70)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_71); int32_t L_72 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_72; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleContentRestriction::GetBaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleContentRestriction_GetBaseTypeName_m2201419933 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_baseTypeName_20(); return L_0; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleContentRestriction::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleContentRestriction_Validate_m4279615195 (XmlSchemaSimpleContentRestriction_t2746076865 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentRestriction_Validate_m4279615195_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaType_t2033747345 * V_0 = NULL; { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { XmlSchemaSimpleType_t2678868104 * L_4 = __this->get_baseType_19(); if (!L_4) { goto IL_0042; } } { XmlSchemaSimpleType_t2678868104 * L_5 = __this->get_baseType_19(); ValidationEventHandler_t791314227 * L_6 = ___h0; XmlSchema_t3742557897 * L_7 = ___schema1; NullCheck(L_5); VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_5, L_6, L_7); XmlSchemaSimpleType_t2678868104 * L_8 = __this->get_baseType_19(); ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_8); goto IL_0113; } IL_0042: { XmlQualifiedName_t2760654312 * L_9 = __this->get_baseTypeName_20(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_10 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); bool L_11 = XmlQualifiedName_op_Inequality_m3449274916(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0113; } } { XmlSchema_t3742557897 * L_12 = ___schema1; XmlQualifiedName_t2760654312 * L_13 = __this->get_baseTypeName_20(); NullCheck(L_12); XmlSchemaType_t2033747345 * L_14 = XmlSchema_FindSchemaType_m3920891232(L_12, L_13, /*hidden argument*/NULL); V_0 = L_14; XmlSchemaType_t2033747345 * L_15 = V_0; if (!L_15) { goto IL_007f; } } { XmlSchemaType_t2033747345 * L_16 = V_0; ValidationEventHandler_t791314227 * L_17 = ___h0; XmlSchema_t3742557897 * L_18 = ___schema1; NullCheck(L_16); VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_16, L_17, L_18); XmlSchemaType_t2033747345 * L_19 = V_0; ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_19); goto IL_0113; } IL_007f: { XmlQualifiedName_t2760654312 * L_20 = __this->get_baseTypeName_20(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_21 = ((XmlSchemaComplexType_t3740801802_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var))->get_AnyTypeName_43(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_22 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_20, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00a4; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_23 = XmlSchemaComplexType_get_AnyType_m2038550701(NULL /*static, unused*/, /*hidden argument*/NULL); ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_23); goto IL_0113; } IL_00a4: { XmlQualifiedName_t2760654312 * L_24 = __this->get_baseTypeName_20(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_25 = XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00e1; } } { XmlQualifiedName_t2760654312 * L_26 = __this->get_baseTypeName_20(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_27 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_26, /*hidden argument*/NULL); ((XmlSchemaContent_t1040349258 *)__this)->set_actualBaseSchemaType_16(L_27); RuntimeObject * L_28 = ((XmlSchemaContent_t1040349258 *)__this)->get_actualBaseSchemaType_16(); if (L_28) { goto IL_00dc; } } { ValidationEventHandler_t791314227 * L_29 = ___h0; XmlSchemaObject_error_m903554348(__this, L_29, _stringLiteral944206075, /*hidden argument*/NULL); } IL_00dc: { goto IL_0113; } IL_00e1: { XmlSchema_t3742557897 * L_30 = ___schema1; XmlQualifiedName_t2760654312 * L_31 = __this->get_baseTypeName_20(); NullCheck(L_31); String_t* L_32 = XmlQualifiedName_get_Namespace_m3957593392(L_31, /*hidden argument*/NULL); NullCheck(L_30); bool L_33 = XmlSchema_IsNamespaceAbsent_m3899863769(L_30, L_32, /*hidden argument*/NULL); if (L_33) { goto IL_0113; } } { ValidationEventHandler_t791314227 * L_34 = ___h0; XmlQualifiedName_t2760654312 * L_35 = __this->get_baseTypeName_20(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_36 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral508009477, L_35, _stringLiteral1962955403, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_34, L_36, /*hidden argument*/NULL); } IL_0113: { XmlSchema_t3742557897 * L_37 = ___schema1; NullCheck(L_37); Guid_t L_38 = ((XmlSchemaObject_t1315720168 *)L_37)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_38); int32_t L_39 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_39; } } // System.Xml.Schema.XmlSchemaSimpleContentRestriction System.Xml.Schema.XmlSchemaSimpleContentRestriction::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleContentRestriction_t2746076865 * XmlSchemaSimpleContentRestriction_Read_m2754874039 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleContentRestriction_Read_m2754874039_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleContentRestriction_t2746076865 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; XmlSchemaSimpleType_t2678868104 * V_4 = NULL; XmlSchemaMinExclusiveFacet_t85871952 * V_5 = NULL; XmlSchemaMinInclusiveFacet_t18629333 * V_6 = NULL; XmlSchemaMaxExclusiveFacet_t786951263 * V_7 = NULL; XmlSchemaMaxInclusiveFacet_t719708644 * V_8 = NULL; XmlSchemaTotalDigitsFacet_t297930215 * V_9 = NULL; XmlSchemaFractionDigitsFacet_t2589598443 * V_10 = NULL; XmlSchemaLengthFacet_t4286280832 * V_11 = NULL; XmlSchemaMinLengthFacet_t686585762 * V_12 = NULL; XmlSchemaMaxLengthFacet_t2192171319 * V_13 = NULL; XmlSchemaEnumerationFacet_t2156689038 * V_14 = NULL; XmlSchemaWhiteSpaceFacet_t4158372164 * V_15 = NULL; XmlSchemaPatternFacet_t3316004401 * V_16 = NULL; XmlSchemaAttribute_t2797257020 * V_17 = NULL; XmlSchemaAttributeGroupRef_t846390688 * V_18 = NULL; XmlSchemaAnyAttribute_t963227996 * V_19 = NULL; { XmlSchemaSimpleContentRestriction_t2746076865 * L_0 = (XmlSchemaSimpleContentRestriction_t2746076865 *)il2cpp_codegen_object_new(XmlSchemaSimpleContentRestriction_t2746076865_il2cpp_TypeInfo_var); XmlSchemaSimpleContentRestriction__ctor_m1686457861(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1885059610, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); XmlSchemaReader_SkipToEnd_m864243635(L_12, /*hidden argument*/NULL); return (XmlSchemaSimpleContentRestriction_t2746076865 *)NULL; } IL_0056: { XmlSchemaSimpleContentRestriction_t2746076865 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleContentRestriction_t2746076865 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleContentRestriction_t2746076865 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_014c; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral2838662761, /*hidden argument*/NULL); if (!L_24) { goto IL_00c4; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_27 = XmlSchemaUtil_ReadQNameAttribute_m567024358(NULL /*static, unused*/, L_26, (&V_1), /*hidden argument*/NULL); NullCheck(L_25); L_25->set_baseTypeName_20(L_27); Exception_t * L_28 = V_1; if (!L_28) { goto IL_00bf; } } { ValidationEventHandler_t791314227 * L_29 = ___h1; XmlSchemaReader_t1164558392 * L_30 = ___reader0; NullCheck(L_30); String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_30); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_32 = String_Concat_m3937257545(NULL /*static, unused*/, L_31, _stringLiteral494350233, /*hidden argument*/NULL); Exception_t * L_33 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_29, L_32, L_33, /*hidden argument*/NULL); } IL_00bf: { goto IL_014c; } IL_00c4: { XmlSchemaReader_t1164558392 * L_34 = ___reader0; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_36 = String_op_Equality_m920492651(NULL /*static, unused*/, L_35, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_36) { goto IL_00ea; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_37 = V_0; XmlSchemaReader_t1164558392 * L_38 = ___reader0; NullCheck(L_38); String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_38); NullCheck(L_37); XmlSchemaAnnotated_set_Id_m1597719336(L_37, L_39, /*hidden argument*/NULL); goto IL_014c; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0114; } } { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_44); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_46 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_45, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_46) { goto IL_0129; } } IL_0114: { XmlSchemaReader_t1164558392 * L_47 = ___reader0; NullCheck(L_47); String_t* L_48 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_47); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_48, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_49) { goto IL_0145; } } IL_0129: { ValidationEventHandler_t791314227 * L_50 = ___h1; XmlSchemaReader_t1164558392 * L_51 = ___reader0; NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m3937257545(NULL /*static, unused*/, L_52, _stringLiteral3376851224, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_50, L_53, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_014c; } IL_0145: { XmlSchemaReader_t1164558392 * L_54 = ___reader0; XmlSchemaSimpleContentRestriction_t2746076865 * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); } IL_014c: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); bool L_57 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_56); if (L_57) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_58); XmlSchemaReader_t1164558392 * L_59 = ___reader0; NullCheck(L_59); bool L_60 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_59); if (!L_60) { goto IL_016b; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_61 = V_0; return L_61; } IL_016b: { V_2 = 1; goto IL_059e; } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_62); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)15))))) { goto IL_01b0; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); String_t* L_65 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_64); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_66 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_65, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_66) { goto IL_01ab; } } { ValidationEventHandler_t791314227 * L_67 = ___h1; XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_68); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_70 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1937547486, L_69, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_67, L_70, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01ab: { goto IL_05a9; } IL_01b0: { int32_t L_71 = V_2; if ((((int32_t)L_71) > ((int32_t)1))) { goto IL_01e8; } } { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_72); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_74 = String_op_Equality_m920492651(NULL /*static, unused*/, L_73, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_74) { goto IL_01e8; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_75 = ___reader0; ValidationEventHandler_t791314227 * L_76 = ___h1; XmlSchemaAnnotation_t2553753397 * L_77 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_75, L_76, /*hidden argument*/NULL); V_3 = L_77; XmlSchemaAnnotation_t2553753397 * L_78 = V_3; if (!L_78) { goto IL_01e3; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_79 = V_0; XmlSchemaAnnotation_t2553753397 * L_80 = V_3; NullCheck(L_79); XmlSchemaAnnotated_set_Annotation_m3050132480(L_79, L_80, /*hidden argument*/NULL); } IL_01e3: { goto IL_059e; } IL_01e8: { int32_t L_81 = V_2; if ((((int32_t)L_81) > ((int32_t)2))) { goto IL_0223; } } { XmlSchemaReader_t1164558392 * L_82 = ___reader0; NullCheck(L_82); String_t* L_83 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_82); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_84 = String_op_Equality_m920492651(NULL /*static, unused*/, L_83, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_84) { goto IL_0223; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_85 = ___reader0; ValidationEventHandler_t791314227 * L_86 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_87 = XmlSchemaSimpleType_Read_m1629189972(NULL /*static, unused*/, L_85, L_86, /*hidden argument*/NULL); V_4 = L_87; XmlSchemaSimpleType_t2678868104 * L_88 = V_4; if (!L_88) { goto IL_021e; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_89 = V_0; XmlSchemaSimpleType_t2678868104 * L_90 = V_4; NullCheck(L_89); L_89->set_baseType_19(L_90); } IL_021e: { goto IL_059e; } IL_0223: { int32_t L_91 = V_2; if ((((int32_t)L_91) > ((int32_t)3))) { goto IL_04e2; } } { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_92); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_94 = String_op_Equality_m920492651(NULL /*static, unused*/, L_93, _stringLiteral3338794825, /*hidden argument*/NULL); if (!L_94) { goto IL_0264; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_95 = ___reader0; ValidationEventHandler_t791314227 * L_96 = ___h1; XmlSchemaMinExclusiveFacet_t85871952 * L_97 = XmlSchemaMinExclusiveFacet_Read_m1334108464(NULL /*static, unused*/, L_95, L_96, /*hidden argument*/NULL); V_5 = L_97; XmlSchemaMinExclusiveFacet_t85871952 * L_98 = V_5; if (!L_98) { goto IL_025f; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_99 = V_0; NullCheck(L_99); XmlSchemaObjectCollection_t1064819932 * L_100 = L_99->get_facets_21(); XmlSchemaMinExclusiveFacet_t85871952 * L_101 = V_5; NullCheck(L_100); XmlSchemaObjectCollection_Add_m1142549045(L_100, L_101, /*hidden argument*/NULL); } IL_025f: { goto IL_059e; } IL_0264: { XmlSchemaReader_t1164558392 * L_102 = ___reader0; NullCheck(L_102); String_t* L_103 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_102); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_104 = String_op_Equality_m920492651(NULL /*static, unused*/, L_103, _stringLiteral739112347, /*hidden argument*/NULL); if (!L_104) { goto IL_029e; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_105 = ___reader0; ValidationEventHandler_t791314227 * L_106 = ___h1; XmlSchemaMinInclusiveFacet_t18629333 * L_107 = XmlSchemaMinInclusiveFacet_Read_m1579298286(NULL /*static, unused*/, L_105, L_106, /*hidden argument*/NULL); V_6 = L_107; XmlSchemaMinInclusiveFacet_t18629333 * L_108 = V_6; if (!L_108) { goto IL_0299; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_109 = V_0; NullCheck(L_109); XmlSchemaObjectCollection_t1064819932 * L_110 = L_109->get_facets_21(); XmlSchemaMinInclusiveFacet_t18629333 * L_111 = V_6; NullCheck(L_110); XmlSchemaObjectCollection_Add_m1142549045(L_110, L_111, /*hidden argument*/NULL); } IL_0299: { goto IL_059e; } IL_029e: { XmlSchemaReader_t1164558392 * L_112 = ___reader0; NullCheck(L_112); String_t* L_113 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_112); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_114 = String_op_Equality_m920492651(NULL /*static, unused*/, L_113, _stringLiteral541665163, /*hidden argument*/NULL); if (!L_114) { goto IL_02d8; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_115 = ___reader0; ValidationEventHandler_t791314227 * L_116 = ___h1; XmlSchemaMaxExclusiveFacet_t786951263 * L_117 = XmlSchemaMaxExclusiveFacet_Read_m3854530505(NULL /*static, unused*/, L_115, L_116, /*hidden argument*/NULL); V_7 = L_117; XmlSchemaMaxExclusiveFacet_t786951263 * L_118 = V_7; if (!L_118) { goto IL_02d3; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_119 = V_0; NullCheck(L_119); XmlSchemaObjectCollection_t1064819932 * L_120 = L_119->get_facets_21(); XmlSchemaMaxExclusiveFacet_t786951263 * L_121 = V_7; NullCheck(L_120); XmlSchemaObjectCollection_Add_m1142549045(L_120, L_121, /*hidden argument*/NULL); } IL_02d3: { goto IL_059e; } IL_02d8: { XmlSchemaReader_t1164558392 * L_122 = ___reader0; NullCheck(L_122); String_t* L_123 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_122); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_124 = String_op_Equality_m920492651(NULL /*static, unused*/, L_123, _stringLiteral2236949981, /*hidden argument*/NULL); if (!L_124) { goto IL_0312; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_125 = ___reader0; ValidationEventHandler_t791314227 * L_126 = ___h1; XmlSchemaMaxInclusiveFacet_t719708644 * L_127 = XmlSchemaMaxInclusiveFacet_Read_m1567297469(NULL /*static, unused*/, L_125, L_126, /*hidden argument*/NULL); V_8 = L_127; XmlSchemaMaxInclusiveFacet_t719708644 * L_128 = V_8; if (!L_128) { goto IL_030d; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_129 = V_0; NullCheck(L_129); XmlSchemaObjectCollection_t1064819932 * L_130 = L_129->get_facets_21(); XmlSchemaMaxInclusiveFacet_t719708644 * L_131 = V_8; NullCheck(L_130); XmlSchemaObjectCollection_Add_m1142549045(L_130, L_131, /*hidden argument*/NULL); } IL_030d: { goto IL_059e; } IL_0312: { XmlSchemaReader_t1164558392 * L_132 = ___reader0; NullCheck(L_132); String_t* L_133 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_132); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_134 = String_op_Equality_m920492651(NULL /*static, unused*/, L_133, _stringLiteral1504613137, /*hidden argument*/NULL); if (!L_134) { goto IL_034c; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_135 = ___reader0; ValidationEventHandler_t791314227 * L_136 = ___h1; XmlSchemaTotalDigitsFacet_t297930215 * L_137 = XmlSchemaTotalDigitsFacet_Read_m2720747555(NULL /*static, unused*/, L_135, L_136, /*hidden argument*/NULL); V_9 = L_137; XmlSchemaTotalDigitsFacet_t297930215 * L_138 = V_9; if (!L_138) { goto IL_0347; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_139 = V_0; NullCheck(L_139); XmlSchemaObjectCollection_t1064819932 * L_140 = L_139->get_facets_21(); XmlSchemaTotalDigitsFacet_t297930215 * L_141 = V_9; NullCheck(L_140); XmlSchemaObjectCollection_Add_m1142549045(L_140, L_141, /*hidden argument*/NULL); } IL_0347: { goto IL_059e; } IL_034c: { XmlSchemaReader_t1164558392 * L_142 = ___reader0; NullCheck(L_142); String_t* L_143 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_142); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_144 = String_op_Equality_m920492651(NULL /*static, unused*/, L_143, _stringLiteral3402114229, /*hidden argument*/NULL); if (!L_144) { goto IL_0386; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_145 = ___reader0; ValidationEventHandler_t791314227 * L_146 = ___h1; XmlSchemaFractionDigitsFacet_t2589598443 * L_147 = XmlSchemaFractionDigitsFacet_Read_m1380148146(NULL /*static, unused*/, L_145, L_146, /*hidden argument*/NULL); V_10 = L_147; XmlSchemaFractionDigitsFacet_t2589598443 * L_148 = V_10; if (!L_148) { goto IL_0381; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_149 = V_0; NullCheck(L_149); XmlSchemaObjectCollection_t1064819932 * L_150 = L_149->get_facets_21(); XmlSchemaFractionDigitsFacet_t2589598443 * L_151 = V_10; NullCheck(L_150); XmlSchemaObjectCollection_Add_m1142549045(L_150, L_151, /*hidden argument*/NULL); } IL_0381: { goto IL_059e; } IL_0386: { XmlSchemaReader_t1164558392 * L_152 = ___reader0; NullCheck(L_152); String_t* L_153 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_152); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_154 = String_op_Equality_m920492651(NULL /*static, unused*/, L_153, _stringLiteral1212500642, /*hidden argument*/NULL); if (!L_154) { goto IL_03c0; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_155 = ___reader0; ValidationEventHandler_t791314227 * L_156 = ___h1; XmlSchemaLengthFacet_t4286280832 * L_157 = XmlSchemaLengthFacet_Read_m46713934(NULL /*static, unused*/, L_155, L_156, /*hidden argument*/NULL); V_11 = L_157; XmlSchemaLengthFacet_t4286280832 * L_158 = V_11; if (!L_158) { goto IL_03bb; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_159 = V_0; NullCheck(L_159); XmlSchemaObjectCollection_t1064819932 * L_160 = L_159->get_facets_21(); XmlSchemaLengthFacet_t4286280832 * L_161 = V_11; NullCheck(L_160); XmlSchemaObjectCollection_Add_m1142549045(L_160, L_161, /*hidden argument*/NULL); } IL_03bb: { goto IL_059e; } IL_03c0: { XmlSchemaReader_t1164558392 * L_162 = ___reader0; NullCheck(L_162); String_t* L_163 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_162); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_164 = String_op_Equality_m920492651(NULL /*static, unused*/, L_163, _stringLiteral3866161938, /*hidden argument*/NULL); if (!L_164) { goto IL_03fa; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_165 = ___reader0; ValidationEventHandler_t791314227 * L_166 = ___h1; XmlSchemaMinLengthFacet_t686585762 * L_167 = XmlSchemaMinLengthFacet_Read_m3215340321(NULL /*static, unused*/, L_165, L_166, /*hidden argument*/NULL); V_12 = L_167; XmlSchemaMinLengthFacet_t686585762 * L_168 = V_12; if (!L_168) { goto IL_03f5; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_169 = V_0; NullCheck(L_169); XmlSchemaObjectCollection_t1064819932 * L_170 = L_169->get_facets_21(); XmlSchemaMinLengthFacet_t686585762 * L_171 = V_12; NullCheck(L_170); XmlSchemaObjectCollection_Add_m1142549045(L_170, L_171, /*hidden argument*/NULL); } IL_03f5: { goto IL_059e; } IL_03fa: { XmlSchemaReader_t1164558392 * L_172 = ___reader0; NullCheck(L_172); String_t* L_173 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_172); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_174 = String_op_Equality_m920492651(NULL /*static, unused*/, L_173, _stringLiteral1329154644, /*hidden argument*/NULL); if (!L_174) { goto IL_0434; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_175 = ___reader0; ValidationEventHandler_t791314227 * L_176 = ___h1; XmlSchemaMaxLengthFacet_t2192171319 * L_177 = XmlSchemaMaxLengthFacet_Read_m4278595782(NULL /*static, unused*/, L_175, L_176, /*hidden argument*/NULL); V_13 = L_177; XmlSchemaMaxLengthFacet_t2192171319 * L_178 = V_13; if (!L_178) { goto IL_042f; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_179 = V_0; NullCheck(L_179); XmlSchemaObjectCollection_t1064819932 * L_180 = L_179->get_facets_21(); XmlSchemaMaxLengthFacet_t2192171319 * L_181 = V_13; NullCheck(L_180); XmlSchemaObjectCollection_Add_m1142549045(L_180, L_181, /*hidden argument*/NULL); } IL_042f: { goto IL_059e; } IL_0434: { XmlSchemaReader_t1164558392 * L_182 = ___reader0; NullCheck(L_182); String_t* L_183 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_182); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_184 = String_op_Equality_m920492651(NULL /*static, unused*/, L_183, _stringLiteral733314043, /*hidden argument*/NULL); if (!L_184) { goto IL_046e; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_185 = ___reader0; ValidationEventHandler_t791314227 * L_186 = ___h1; XmlSchemaEnumerationFacet_t2156689038 * L_187 = XmlSchemaEnumerationFacet_Read_m1625452565(NULL /*static, unused*/, L_185, L_186, /*hidden argument*/NULL); V_14 = L_187; XmlSchemaEnumerationFacet_t2156689038 * L_188 = V_14; if (!L_188) { goto IL_0469; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_189 = V_0; NullCheck(L_189); XmlSchemaObjectCollection_t1064819932 * L_190 = L_189->get_facets_21(); XmlSchemaEnumerationFacet_t2156689038 * L_191 = V_14; NullCheck(L_190); XmlSchemaObjectCollection_Add_m1142549045(L_190, L_191, /*hidden argument*/NULL); } IL_0469: { goto IL_059e; } IL_046e: { XmlSchemaReader_t1164558392 * L_192 = ___reader0; NullCheck(L_192); String_t* L_193 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_192); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_194 = String_op_Equality_m920492651(NULL /*static, unused*/, L_193, _stringLiteral1492323255, /*hidden argument*/NULL); if (!L_194) { goto IL_04a8; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_195 = ___reader0; ValidationEventHandler_t791314227 * L_196 = ___h1; XmlSchemaWhiteSpaceFacet_t4158372164 * L_197 = XmlSchemaWhiteSpaceFacet_Read_m1012238860(NULL /*static, unused*/, L_195, L_196, /*hidden argument*/NULL); V_15 = L_197; XmlSchemaWhiteSpaceFacet_t4158372164 * L_198 = V_15; if (!L_198) { goto IL_04a3; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_199 = V_0; NullCheck(L_199); XmlSchemaObjectCollection_t1064819932 * L_200 = L_199->get_facets_21(); XmlSchemaWhiteSpaceFacet_t4158372164 * L_201 = V_15; NullCheck(L_200); XmlSchemaObjectCollection_Add_m1142549045(L_200, L_201, /*hidden argument*/NULL); } IL_04a3: { goto IL_059e; } IL_04a8: { XmlSchemaReader_t1164558392 * L_202 = ___reader0; NullCheck(L_202); String_t* L_203 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_202); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_204 = String_op_Equality_m920492651(NULL /*static, unused*/, L_203, _stringLiteral2326546891, /*hidden argument*/NULL); if (!L_204) { goto IL_04e2; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_205 = ___reader0; ValidationEventHandler_t791314227 * L_206 = ___h1; XmlSchemaPatternFacet_t3316004401 * L_207 = XmlSchemaPatternFacet_Read_m2669981935(NULL /*static, unused*/, L_205, L_206, /*hidden argument*/NULL); V_16 = L_207; XmlSchemaPatternFacet_t3316004401 * L_208 = V_16; if (!L_208) { goto IL_04dd; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_209 = V_0; NullCheck(L_209); XmlSchemaObjectCollection_t1064819932 * L_210 = L_209->get_facets_21(); XmlSchemaPatternFacet_t3316004401 * L_211 = V_16; NullCheck(L_210); XmlSchemaObjectCollection_Add_m1142549045(L_210, L_211, /*hidden argument*/NULL); } IL_04dd: { goto IL_059e; } IL_04e2: { int32_t L_212 = V_2; if ((((int32_t)L_212) > ((int32_t)4))) { goto IL_055d; } } { XmlSchemaReader_t1164558392 * L_213 = ___reader0; NullCheck(L_213); String_t* L_214 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_213); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_215 = String_op_Equality_m920492651(NULL /*static, unused*/, L_214, _stringLiteral4158421234, /*hidden argument*/NULL); if (!L_215) { goto IL_0523; } } { V_2 = 4; XmlSchemaReader_t1164558392 * L_216 = ___reader0; ValidationEventHandler_t791314227 * L_217 = ___h1; XmlSchemaAttribute_t2797257020 * L_218 = XmlSchemaAttribute_Read_m3620037629(NULL /*static, unused*/, L_216, L_217, /*hidden argument*/NULL); V_17 = L_218; XmlSchemaAttribute_t2797257020 * L_219 = V_17; if (!L_219) { goto IL_051e; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_220 = V_0; NullCheck(L_220); XmlSchemaObjectCollection_t1064819932 * L_221 = XmlSchemaSimpleContentRestriction_get_Attributes_m3978865961(L_220, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_222 = V_17; NullCheck(L_221); XmlSchemaObjectCollection_Add_m1142549045(L_221, L_222, /*hidden argument*/NULL); } IL_051e: { goto IL_059e; } IL_0523: { XmlSchemaReader_t1164558392 * L_223 = ___reader0; NullCheck(L_223); String_t* L_224 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_223); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_225 = String_op_Equality_m920492651(NULL /*static, unused*/, L_224, _stringLiteral400592889, /*hidden argument*/NULL); if (!L_225) { goto IL_055d; } } { V_2 = 4; XmlSchemaReader_t1164558392 * L_226 = ___reader0; ValidationEventHandler_t791314227 * L_227 = ___h1; XmlSchemaAttributeGroupRef_t846390688 * L_228 = XmlSchemaAttributeGroupRef_Read_m3714796484(NULL /*static, unused*/, L_226, L_227, /*hidden argument*/NULL); V_18 = L_228; XmlSchemaAttributeGroupRef_t846390688 * L_229 = V_18; if (!L_229) { goto IL_0558; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_230 = V_0; NullCheck(L_230); XmlSchemaObjectCollection_t1064819932 * L_231 = L_230->get_attributes_18(); XmlSchemaAttributeGroupRef_t846390688 * L_232 = V_18; NullCheck(L_231); XmlSchemaObjectCollection_Add_m1142549045(L_231, L_232, /*hidden argument*/NULL); } IL_0558: { goto IL_059e; } IL_055d: { int32_t L_233 = V_2; if ((((int32_t)L_233) > ((int32_t)5))) { goto IL_0598; } } { XmlSchemaReader_t1164558392 * L_234 = ___reader0; NullCheck(L_234); String_t* L_235 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_234); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_236 = String_op_Equality_m920492651(NULL /*static, unused*/, L_235, _stringLiteral1080123703, /*hidden argument*/NULL); if (!L_236) { goto IL_0598; } } { V_2 = 6; XmlSchemaReader_t1164558392 * L_237 = ___reader0; ValidationEventHandler_t791314227 * L_238 = ___h1; XmlSchemaAnyAttribute_t963227996 * L_239 = XmlSchemaAnyAttribute_Read_m1369098939(NULL /*static, unused*/, L_237, L_238, /*hidden argument*/NULL); V_19 = L_239; XmlSchemaAnyAttribute_t963227996 * L_240 = V_19; if (!L_240) { goto IL_0593; } } { XmlSchemaSimpleContentRestriction_t2746076865 * L_241 = V_0; XmlSchemaAnyAttribute_t963227996 * L_242 = V_19; NullCheck(L_241); XmlSchemaSimpleContentRestriction_set_AnyAttribute_m3812462749(L_241, L_242, /*hidden argument*/NULL); } IL_0593: { goto IL_059e; } IL_0598: { XmlSchemaReader_t1164558392 * L_243 = ___reader0; NullCheck(L_243); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_243, /*hidden argument*/NULL); } IL_059e: { XmlSchemaReader_t1164558392 * L_244 = ___reader0; NullCheck(L_244); bool L_245 = XmlSchemaReader_ReadNextElement_m611223709(L_244, /*hidden argument*/NULL); if (L_245) { goto IL_0172; } } IL_05a9: { XmlSchemaSimpleContentRestriction_t2746076865 * L_246 = V_0; return L_246; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleType::.ctor() extern "C" void XmlSchemaSimpleType__ctor_m2253231569 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) { { __this->set_islocal_30((bool)1); XmlSchemaType__ctor_m3211054051(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleType::.cctor() extern "C" void XmlSchemaSimpleType__cctor_m4166403846 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType__cctor_m4166403846_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_1 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_2 = NULL; { XmlSchemaSimpleType_t2678868104 * L_0 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaSimpleTypeList_t472803608 * L_1 = (XmlSchemaSimpleTypeList_t472803608 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeList__ctor_m468630537(L_1, /*hidden argument*/NULL); V_1 = L_1; XmlSchemaSimpleTypeList_t472803608 * L_2 = V_1; XmlQualifiedName_t2760654312 * L_3 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_3, _stringLiteral723171524, _stringLiteral1569427300, /*hidden argument*/NULL); NullCheck(L_2); XmlSchemaSimpleTypeList_set_ItemTypeName_m1444979039(L_2, L_3, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_4 = V_0; XmlSchemaSimpleTypeList_t472803608 * L_5 = V_1; NullCheck(L_4); XmlSchemaSimpleType_set_Content_m1970396414(L_4, L_5, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_6 = V_0; NullCheck(L_6); ((XmlSchemaType_t2033747345 *)L_6)->set_BaseXmlSchemaTypeInternal_21((XmlSchemaType_t2033747345 *)NULL); XmlSchemaSimpleType_t2678868104 * L_7 = V_0; NullCheck(L_7); L_7->set_variety_32(8); XmlSchemaSimpleType_t2678868104 * L_8 = V_0; ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_schemaLocationType_28(L_8); XmlSchemaSimpleType_t2678868104 * L_9 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3319458126, (String_t*)NULL, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsAnySimpleType_33(L_9); XmlSchemaSimpleType_t2678868104 * L_10 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1236128813, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsString_34(L_10); XmlSchemaSimpleType_t2678868104 * L_11 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral228529742, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsBoolean_35(L_11); XmlSchemaSimpleType_t2678868104 * L_12 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2033559650, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsDecimal_36(L_12); XmlSchemaSimpleType_t2678868104 * L_13 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral807124363, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsFloat_37(L_13); XmlSchemaSimpleType_t2678868104 * L_14 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1235497039, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsDouble_38(L_14); XmlSchemaSimpleType_t2678868104 * L_15 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1501416449, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsDuration_39(L_15); XmlSchemaSimpleType_t2678868104 * L_16 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3798050081, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsDateTime_40(L_16); XmlSchemaSimpleType_t2678868104 * L_17 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral63249541, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsTime_41(L_17); XmlSchemaSimpleType_t2678868104 * L_18 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1272578818, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsDate_42(L_18); XmlSchemaSimpleType_t2678868104 * L_19 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2722193337, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsGYearMonth_43(L_19); XmlSchemaSimpleType_t2678868104 * L_20 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral110852430, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsGYear_44(L_20); XmlSchemaSimpleType_t2678868104 * L_21 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2834935051, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsGMonthDay_45(L_21); XmlSchemaSimpleType_t2678868104 * L_22 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3447975646, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsGDay_46(L_22); XmlSchemaSimpleType_t2678868104 * L_23 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3593584042, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsGMonth_47(L_23); XmlSchemaSimpleType_t2678868104 * L_24 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral841379268, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsHexBinary_48(L_24); XmlSchemaSimpleType_t2678868104 * L_25 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1671489303, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsBase64Binary_49(L_25); XmlSchemaSimpleType_t2678868104 * L_26 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral723171524, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsAnyUri_50(L_26); XmlSchemaSimpleType_t2678868104 * L_27 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2799480295, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsQName_51(L_27); XmlSchemaSimpleType_t2678868104 * L_28 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral215120649, _stringLiteral3319458126, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNotation_52(L_28); XmlSchemaSimpleType_t2678868104 * L_29 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3244750353, _stringLiteral1236128813, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNormalizedString_53(L_29); XmlSchemaSimpleType_t2678868104 * L_30 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2005331395, _stringLiteral3244750353, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsToken_54(L_30); XmlSchemaSimpleType_t2678868104 * L_31 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2143290860, _stringLiteral2005331395, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsLanguage_55(L_31); XmlSchemaSimpleType_t2678868104 * L_32 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral4080338551, _stringLiteral2005331395, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNMToken_56(L_32); XmlSchemaSimpleType_t2678868104 * L_33 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral62725275, _stringLiteral2005331395, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsName_58(L_33); XmlSchemaSimpleType_t2678868104 * L_34 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral996260479, _stringLiteral62725275, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNCName_59(L_34); XmlSchemaSimpleType_t2678868104 * L_35 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3456546791, _stringLiteral996260479, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsID_60(L_35); XmlSchemaSimpleType_t2678868104 * L_36 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3671082123, _stringLiteral996260479, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsIDRef_61(L_36); XmlSchemaSimpleType_t2678868104 * L_37 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2851744811, _stringLiteral996260479, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsEntity_63(L_37); XmlSchemaSimpleType_t2678868104 * L_38 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1572351178, _stringLiteral2033559650, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsInteger_65(L_38); XmlSchemaSimpleType_t2678868104 * L_39 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3820814978, _stringLiteral1572351178, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNonPositiveInteger_66(L_39); XmlSchemaSimpleType_t2678868104 * L_40 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral4120511215, _stringLiteral3820814978, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNegativeInteger_67(L_40); XmlSchemaSimpleType_t2678868104 * L_41 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2409402648, _stringLiteral1572351178, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsLong_68(L_41); XmlSchemaSimpleType_t2678868104 * L_42 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral2553676557, _stringLiteral2409402648, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsInt_69(L_42); XmlSchemaSimpleType_t2678868104 * L_43 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1535819814, _stringLiteral2553676557, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsShort_70(L_43); XmlSchemaSimpleType_t2678868104 * L_44 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1274151684, _stringLiteral1535819814, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsByte_71(L_44); XmlSchemaSimpleType_t2678868104 * L_45 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3835929719, _stringLiteral1572351178, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNonNegativeInteger_72(L_45); XmlSchemaSimpleType_t2678868104 * L_46 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral1873420042, _stringLiteral3835929719, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsUnsignedLong_73(L_46); XmlSchemaSimpleType_t2678868104 * L_47 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3755388189, _stringLiteral1873420042, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsUnsignedInt_74(L_47); XmlSchemaSimpleType_t2678868104 * L_48 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3873205229, _stringLiteral3755388189, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsUnsignedShort_75(L_48); XmlSchemaSimpleType_t2678868104 * L_49 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral3773869350, _stringLiteral3873205229, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsUnsignedByte_76(L_49); XmlSchemaSimpleType_t2678868104 * L_50 = XmlSchemaSimpleType_BuildSchemaType_m3396760451(NULL /*static, unused*/, _stringLiteral425891063, _stringLiteral3835929719, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsPositiveInteger_77(L_50); XmlSchemaSimpleType_t2678868104 * L_51 = XmlSchemaSimpleType_BuildSchemaType_m161812030(NULL /*static, unused*/, _stringLiteral724378170, _stringLiteral3319458126, (bool)1, (bool)0, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XdtAnyAtomicType_79(L_51); XmlSchemaSimpleType_t2678868104 * L_52 = XmlSchemaSimpleType_BuildSchemaType_m161812030(NULL /*static, unused*/, _stringLiteral3716671661, _stringLiteral724378170, (bool)1, (bool)1, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XdtUntypedAtomic_78(L_52); XmlSchemaSimpleType_t2678868104 * L_53 = XmlSchemaSimpleType_BuildSchemaType_m161812030(NULL /*static, unused*/, _stringLiteral622047031, _stringLiteral1501416449, (bool)1, (bool)0, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XdtDayTimeDuration_81(L_53); XmlSchemaSimpleType_t2678868104 * L_54 = XmlSchemaSimpleType_BuildSchemaType_m161812030(NULL /*static, unused*/, _stringLiteral1777380071, _stringLiteral1501416449, (bool)1, (bool)0, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XdtYearMonthDuration_80(L_54); XmlSchemaSimpleType_t2678868104 * L_55 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_55, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsIDRefs_62(L_55); XmlSchemaSimpleTypeList_t472803608 * L_56 = (XmlSchemaSimpleTypeList_t472803608 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeList__ctor_m468630537(L_56, /*hidden argument*/NULL); V_2 = L_56; XmlSchemaSimpleTypeList_t472803608 * L_57 = V_2; XmlSchemaSimpleType_t2678868104 * L_58 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsIDRef_61(); NullCheck(L_57); XmlSchemaSimpleTypeList_set_ItemType_m4093680610(L_57, L_58, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_59 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsIDRefs_62(); XmlSchemaSimpleTypeList_t472803608 * L_60 = V_2; NullCheck(L_59); XmlSchemaSimpleType_set_Content_m1970396414(L_59, L_60, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_61 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_61, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsEntities_64(L_61); XmlSchemaSimpleTypeList_t472803608 * L_62 = (XmlSchemaSimpleTypeList_t472803608 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeList__ctor_m468630537(L_62, /*hidden argument*/NULL); V_2 = L_62; XmlSchemaSimpleTypeList_t472803608 * L_63 = V_2; XmlSchemaSimpleType_t2678868104 * L_64 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsEntity_63(); NullCheck(L_63); XmlSchemaSimpleTypeList_set_ItemType_m4093680610(L_63, L_64, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_65 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsEntities_64(); XmlSchemaSimpleTypeList_t472803608 * L_66 = V_2; NullCheck(L_65); XmlSchemaSimpleType_set_Content_m1970396414(L_65, L_66, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_67 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_67, /*hidden argument*/NULL); ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->set_XsNMTokens_57(L_67); XmlSchemaSimpleTypeList_t472803608 * L_68 = (XmlSchemaSimpleTypeList_t472803608 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeList__ctor_m468630537(L_68, /*hidden argument*/NULL); V_2 = L_68; XmlSchemaSimpleTypeList_t472803608 * L_69 = V_2; XmlSchemaSimpleType_t2678868104 * L_70 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNMToken_56(); NullCheck(L_69); XmlSchemaSimpleTypeList_set_ItemType_m4093680610(L_69, L_70, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_71 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNMTokens_57(); XmlSchemaSimpleTypeList_t472803608 * L_72 = V_2; NullCheck(L_71); XmlSchemaSimpleType_set_Content_m1970396414(L_71, L_72, /*hidden argument*/NULL); return; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_BuildSchemaType_m3396760451 (RuntimeObject * __this /* static, unused */, String_t* ___name0, String_t* ___baseName1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_BuildSchemaType_m3396760451_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; String_t* L_1 = ___baseName1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_2 = XmlSchemaSimpleType_BuildSchemaType_m161812030(NULL /*static, unused*/, L_0, L_1, (bool)0, (bool)0, /*hidden argument*/NULL); return L_2; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::BuildSchemaType(System.String,System.String,System.Boolean,System.Boolean) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_BuildSchemaType_m161812030 (RuntimeObject * __this /* static, unused */, String_t* ___name0, String_t* ___baseName1, bool ___xdt2, bool ___baseXdt3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_BuildSchemaType_m161812030_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; XmlSchemaSimpleType_t2678868104 * V_2 = NULL; String_t* G_B3_0 = NULL; String_t* G_B6_0 = NULL; { bool L_0 = ___xdt2; if (!L_0) { goto IL_0010; } } { G_B3_0 = _stringLiteral91702; goto IL_0015; } IL_0010: { G_B3_0 = _stringLiteral1569427300; } IL_0015: { V_0 = G_B3_0; bool L_1 = ___baseXdt3; if (!L_1) { goto IL_0026; } } { G_B6_0 = _stringLiteral91702; goto IL_002b; } IL_0026: { G_B6_0 = _stringLiteral1569427300; } IL_002b: { V_1 = G_B6_0; XmlSchemaSimpleType_t2678868104 * L_2 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_2, /*hidden argument*/NULL); V_2 = L_2; XmlSchemaSimpleType_t2678868104 * L_3 = V_2; String_t* L_4 = ___name0; String_t* L_5 = V_0; XmlQualifiedName_t2760654312 * L_6 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_6, L_4, L_5, /*hidden argument*/NULL); NullCheck(L_3); ((XmlSchemaType_t2033747345 *)L_3)->set_QNameInternal_25(L_6); String_t* L_7 = ___baseName1; if (!L_7) { goto IL_0057; } } { XmlSchemaSimpleType_t2678868104 * L_8 = V_2; String_t* L_9 = ___baseName1; String_t* L_10 = V_1; XmlQualifiedName_t2760654312 * L_11 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_11, L_9, L_10, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_12 = XmlSchemaType_GetBuiltInSimpleType_m1336857001(NULL /*static, unused*/, L_11, /*hidden argument*/NULL); NullCheck(L_8); ((XmlSchemaType_t2033747345 *)L_8)->set_BaseXmlSchemaTypeInternal_21(L_12); } IL_0057: { XmlSchemaSimpleType_t2678868104 * L_13 = V_2; XmlSchemaSimpleType_t2678868104 * L_14 = V_2; NullCheck(L_14); XmlQualifiedName_t2760654312 * L_15 = XmlSchemaType_get_QualifiedName_m2122094841(L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_16 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); NullCheck(L_13); ((XmlSchemaType_t2033747345 *)L_13)->set_DatatypeInternal_22(L_16); XmlSchemaSimpleType_t2678868104 * L_17 = V_2; return L_17; } } // Mono.Xml.Schema.XsdAnySimpleType System.Xml.Schema.XmlSchemaSimpleType::get_AnySimpleType() extern "C" XsdAnySimpleType_t1257864485 * XmlSchemaSimpleType_get_AnySimpleType_m3105451177 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_get_AnySimpleType_m3105451177_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_0 = XsdAnySimpleType_get_Instance_m525392955(NULL /*static, unused*/, /*hidden argument*/NULL); return L_0; } } // System.Xml.Schema.XmlSchemaSimpleTypeContent System.Xml.Schema.XmlSchemaSimpleType::get_Content() extern "C" XmlSchemaSimpleTypeContent_t599285223 * XmlSchemaSimpleType_get_Content_m2306047784 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) { { XmlSchemaSimpleTypeContent_t599285223 * L_0 = __this->get_content_29(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleType::set_Content(System.Xml.Schema.XmlSchemaSimpleTypeContent) extern "C" void XmlSchemaSimpleType_set_Content_m1970396414 (XmlSchemaSimpleType_t2678868104 * __this, XmlSchemaSimpleTypeContent_t599285223 * ___value0, const RuntimeMethod* method) { { XmlSchemaSimpleTypeContent_t599285223 * L_0 = ___value0; __this->set_content_29(L_0); return; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaSimpleType::get_Variety() extern "C" int32_t XmlSchemaSimpleType_get_Variety_m18134995 (XmlSchemaSimpleType_t2678868104 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_variety_32(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleType::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleType_SetParent_m223662037 (XmlSchemaSimpleType_t2678868104 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaSimpleTypeContent_t599285223 * L_1 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { XmlSchemaSimpleTypeContent_t599285223 * L_2 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleType_Compile_m3035122963 (XmlSchemaSimpleType_t2678868104 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_Compile_m3035122963_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(0); bool L_4 = __this->get_islocal_30(); if (!L_4) { goto IL_0083; } } { String_t* L_5 = XmlSchemaType_get_Name_m599822945(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_0046; } } { ValidationEventHandler_t791314227 * L_6 = ___h0; XmlSchemaObject_error_m903554348(__this, L_6, _stringLiteral1825648505, /*hidden argument*/NULL); goto IL_0062; } IL_0046: { String_t* L_7 = XmlSchemaType_get_Name_m599822945(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_8 = XmlSchemaObject_get_AncestorSchema_m2485268250(__this, /*hidden argument*/NULL); NullCheck(L_8); String_t* L_9 = XmlSchema_get_TargetNamespace_m442842382(L_8, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_10 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_10, L_7, L_9, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_QNameInternal_25(L_10); } IL_0062: { int32_t L_11 = XmlSchemaType_get_Final_m2717235480(__this, /*hidden argument*/NULL); if ((((int32_t)L_11) == ((int32_t)((int32_t)256)))) { goto IL_007e; } } { ValidationEventHandler_t791314227 * L_12 = ___h0; XmlSchemaObject_error_m903554348(__this, L_12, _stringLiteral4263328786, /*hidden argument*/NULL); } IL_007e: { goto IL_019f; } IL_0083: { String_t* L_13 = XmlSchemaType_get_Name_m599822945(__this, /*hidden argument*/NULL); if (L_13) { goto IL_009f; } } { ValidationEventHandler_t791314227 * L_14 = ___h0; XmlSchemaObject_error_m903554348(__this, L_14, _stringLiteral4277788981, /*hidden argument*/NULL); goto IL_00dc; } IL_009f: { String_t* L_15 = XmlSchemaType_get_Name_m599822945(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_16 = XmlSchemaUtil_CheckNCName_m1273109950(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); if (L_16) { goto IL_00c0; } } { ValidationEventHandler_t791314227 * L_17 = ___h0; XmlSchemaObject_error_m903554348(__this, L_17, _stringLiteral2121463973, /*hidden argument*/NULL); goto IL_00dc; } IL_00c0: { String_t* L_18 = XmlSchemaType_get_Name_m599822945(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_19 = XmlSchemaObject_get_AncestorSchema_m2485268250(__this, /*hidden argument*/NULL); NullCheck(L_19); String_t* L_20 = XmlSchema_get_TargetNamespace_m442842382(L_19, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_21 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_21, L_18, L_20, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_QNameInternal_25(L_21); } IL_00dc: { int32_t L_22 = XmlSchemaType_get_Final_m2717235480(__this, /*hidden argument*/NULL); V_1 = L_22; int32_t L_23 = V_1; if ((((int32_t)L_23) == ((int32_t)((int32_t)255)))) { goto IL_0114; } } { int32_t L_24 = V_1; if ((((int32_t)L_24) == ((int32_t)((int32_t)256)))) { goto IL_0146; } } { int32_t L_25 = V_1; if ((((int32_t)L_25) == ((int32_t)4))) { goto IL_0124; } } { int32_t L_26 = V_1; if ((((int32_t)L_26) == ((int32_t)8))) { goto IL_0124; } } { int32_t L_27 = V_1; if ((((int32_t)L_27) == ((int32_t)((int32_t)16)))) { goto IL_0124; } } { goto IL_0135; } IL_0114: { ((XmlSchemaType_t2033747345 *)__this)->set_finalResolved_24(((int32_t)255)); goto IL_019f; } IL_0124: { int32_t L_28 = XmlSchemaType_get_Final_m2717235480(__this, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_finalResolved_24(L_28); goto IL_019f; } IL_0135: { ValidationEventHandler_t791314227 * L_29 = ___h0; XmlSchemaObject_error_m903554348(__this, L_29, _stringLiteral2386987764, /*hidden argument*/NULL); goto IL_0146; } IL_0146: { V_0 = ((int32_t)30); XmlSchema_t3742557897 * L_30 = ___schema1; NullCheck(L_30); int32_t L_31 = XmlSchema_get_FinalDefault_m1839239784(L_30, /*hidden argument*/NULL); V_2 = L_31; int32_t L_32 = V_2; if ((((int32_t)L_32) == ((int32_t)((int32_t)255)))) { goto IL_016b; } } { int32_t L_33 = V_2; if ((((int32_t)L_33) == ((int32_t)((int32_t)256)))) { goto IL_017b; } } { goto IL_0187; } IL_016b: { ((XmlSchemaType_t2033747345 *)__this)->set_finalResolved_24(((int32_t)255)); goto IL_019a; } IL_017b: { ((XmlSchemaType_t2033747345 *)__this)->set_finalResolved_24(0); goto IL_019a; } IL_0187: { XmlSchema_t3742557897 * L_34 = ___schema1; NullCheck(L_34); int32_t L_35 = XmlSchema_get_FinalDefault_m1839239784(L_34, /*hidden argument*/NULL); int32_t L_36 = V_0; ((XmlSchemaType_t2033747345 *)__this)->set_finalResolved_24(((int32_t)((int32_t)L_35&(int32_t)L_36))); goto IL_019a; } IL_019a: { goto IL_019f; } IL_019f: { String_t* L_37 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_38 = ___schema1; NullCheck(L_38); Hashtable_t1853889766 * L_39 = XmlSchema_get_IDCollection_m3725452494(L_38, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_40 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_37, __this, L_39, L_40, /*hidden argument*/NULL); XmlSchemaSimpleTypeContent_t599285223 * L_41 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!L_41) { goto IL_01c9; } } { XmlSchemaSimpleTypeContent_t599285223 * L_42 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); NullCheck(L_42); L_42->set_OwnerType_16(__this); } IL_01c9: { XmlSchemaSimpleTypeContent_t599285223 * L_43 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (L_43) { goto IL_01e5; } } { ValidationEventHandler_t791314227 * L_44 = ___h0; XmlSchemaObject_error_m903554348(__this, L_44, _stringLiteral494358324, /*hidden argument*/NULL); goto IL_0292; } IL_01e5: { XmlSchemaSimpleTypeContent_t599285223 * L_45 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_45, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))) { goto IL_0220; } } { ((XmlSchemaType_t2033747345 *)__this)->set_resolvedDerivedBy_23(4); int32_t L_46 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleTypeContent_t599285223 * L_47 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_48 = ___h0; XmlSchema_t3742557897 * L_49 = ___schema1; NullCheck(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_47, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))); int32_t L_50 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeRestriction::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, ((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_47, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)), L_48, L_49); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_50))); goto IL_0292; } IL_0220: { XmlSchemaSimpleTypeContent_t599285223 * L_51 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_51, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var))) { goto IL_025b; } } { ((XmlSchemaType_t2033747345 *)__this)->set_resolvedDerivedBy_23(8); int32_t L_52 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleTypeContent_t599285223 * L_53 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_54 = ___h0; XmlSchema_t3742557897 * L_55 = ___schema1; NullCheck(((XmlSchemaSimpleTypeList_t472803608 *)CastclassClass((RuntimeObject*)L_53, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var))); int32_t L_56 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeList::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, ((XmlSchemaSimpleTypeList_t472803608 *)CastclassClass((RuntimeObject*)L_53, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var)), L_54, L_55); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_56))); goto IL_0292; } IL_025b: { XmlSchemaSimpleTypeContent_t599285223 * L_57 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleTypeUnion_t4071426880 *)IsInstClass((RuntimeObject*)L_57, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var))) { goto IL_0292; } } { ((XmlSchemaType_t2033747345 *)__this)->set_resolvedDerivedBy_23(((int32_t)16)); int32_t L_58 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleTypeContent_t599285223 * L_59 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_60 = ___h0; XmlSchema_t3742557897 * L_61 = ___schema1; NullCheck(((XmlSchemaSimpleTypeUnion_t4071426880 *)CastclassClass((RuntimeObject*)L_59, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var))); int32_t L_62 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeUnion::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, ((XmlSchemaSimpleTypeUnion_t4071426880 *)CastclassClass((RuntimeObject*)L_59, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var)), L_60, L_61); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)L_62))); } IL_0292: { XmlSchema_t3742557897 * L_63 = ___schema1; NullCheck(L_63); Guid_t L_64 = ((XmlSchemaObject_t1315720168 *)L_63)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_64); int32_t L_65 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_65; } } // System.Void System.Xml.Schema.XmlSchemaSimpleType::CollectBaseType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleType_CollectBaseType_m3045110927 (XmlSchemaSimpleType_t2678868104 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_CollectBaseType_m3045110927_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { XmlSchemaSimpleTypeContent_t599285223 * L_0 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_0, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))) { goto IL_0062; } } { XmlSchemaSimpleTypeContent_t599285223 * L_1 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_2 = ___h0; XmlSchema_t3742557897 * L_3 = ___schema1; NullCheck(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_1, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))); RuntimeObject * L_4 = XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_1, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)), L_2, L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; RuntimeObject * L_5 = V_0; ((XmlSchemaType_t2033747345 *)__this)->set_BaseXmlSchemaTypeInternal_21(((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_5, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))); XmlSchemaType_t2033747345 * L_6 = ((XmlSchemaType_t2033747345 *)__this)->get_BaseXmlSchemaTypeInternal_21(); if (!L_6) { goto IL_0051; } } { XmlSchemaType_t2033747345 * L_7 = ((XmlSchemaType_t2033747345 *)__this)->get_BaseXmlSchemaTypeInternal_21(); NullCheck(L_7); XmlSchemaDatatype_t322714710 * L_8 = XmlSchemaType_get_Datatype_m3072197688(L_7, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_DatatypeInternal_22(L_8); goto IL_005d; } IL_0051: { RuntimeObject * L_9 = V_0; ((XmlSchemaType_t2033747345 *)__this)->set_DatatypeInternal_22(((XmlSchemaDatatype_t322714710 *)IsInstClass((RuntimeObject*)L_9, XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var))); } IL_005d: { goto IL_006d; } IL_0062: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_10 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_DatatypeInternal_22(L_10); } IL_006d: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleType_Validate_m2924628612 (XmlSchemaSimpleType_t2678868104 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_Validate_m2924628612_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaSimpleType_t2678868104 * V_1 = NULL; XmlSchemaSimpleTypeRestriction_t3925451115 * V_2 = NULL; RuntimeObject * V_3 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_4 = NULL; XmlSchemaSimpleType_t2678868104 * V_5 = NULL; XmlSchemaType_t2033747345 * G_B18_0 = NULL; { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { bool L_4 = __this->get_recursed_31(); if (!L_4) { goto IL_0036; } } { ValidationEventHandler_t791314227 * L_5 = ___h0; XmlSchemaObject_error_m903554348(__this, L_5, _stringLiteral3707278166, /*hidden argument*/NULL); int32_t L_6 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_6; } IL_0036: { __this->set_recursed_31((bool)1); ValidationEventHandler_t791314227 * L_7 = ___h0; XmlSchema_t3742557897 * L_8 = ___schema1; XmlSchemaSimpleType_CollectBaseType_m3045110927(__this, L_7, L_8, /*hidden argument*/NULL); XmlSchemaSimpleTypeContent_t599285223 * L_9 = __this->get_content_29(); if (!L_9) { goto IL_006a; } } { int32_t L_10 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleTypeContent_t599285223 * L_11 = __this->get_content_29(); ValidationEventHandler_t791314227 * L_12 = ___h0; XmlSchema_t3742557897 * L_13 = ___schema1; NullCheck(L_11); int32_t L_14 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_11, L_12, L_13); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_14))); } IL_006a: { XmlSchemaType_t2033747345 * L_15 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); V_0 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_15, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_16 = V_0; if (!L_16) { goto IL_0088; } } { XmlSchemaSimpleType_t2678868104 * L_17 = V_0; NullCheck(L_17); XmlSchemaDatatype_t322714710 * L_18 = XmlSchemaType_get_Datatype_m3072197688(L_17, /*hidden argument*/NULL); ((XmlSchemaType_t2033747345 *)__this)->set_DatatypeInternal_22(L_18); } IL_0088: { XmlSchemaType_t2033747345 * L_19 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); V_1 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_19, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_20 = V_1; if (!L_20) { goto IL_00b8; } } { XmlSchemaSimpleType_t2678868104 * L_21 = V_1; NullCheck(L_21); int32_t L_22 = XmlSchemaType_get_FinalResolved_m213206105(L_21, /*hidden argument*/NULL); int32_t L_23 = ((XmlSchemaType_t2033747345 *)__this)->get_resolvedDerivedBy_23(); if (!((int32_t)((int32_t)L_22&(int32_t)L_23))) { goto IL_00b8; } } { ValidationEventHandler_t791314227 * L_24 = ___h0; XmlSchemaObject_error_m903554348(__this, L_24, _stringLiteral1892207345, /*hidden argument*/NULL); } IL_00b8: { int32_t L_25 = ((XmlSchemaType_t2033747345 *)__this)->get_resolvedDerivedBy_23(); if ((!(((uint32_t)L_25) == ((uint32_t)4)))) { goto IL_00db; } } { XmlSchemaSimpleType_t2678868104 * L_26 = V_1; if (!L_26) { goto IL_00db; } } { XmlSchemaSimpleType_t2678868104 * L_27 = V_1; NullCheck(L_27); int32_t L_28 = XmlSchemaSimpleType_get_Variety_m18134995(L_27, /*hidden argument*/NULL); __this->set_variety_32(L_28); goto IL_00e7; } IL_00db: { int32_t L_29 = ((XmlSchemaType_t2033747345 *)__this)->get_resolvedDerivedBy_23(); __this->set_variety_32(L_29); } IL_00e7: { XmlSchemaSimpleTypeContent_t599285223 * L_30 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); V_2 = ((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_30, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)); XmlSchemaType_t2033747345 * L_31 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); if (!L_31) { goto IL_0109; } } { XmlSchemaType_t2033747345 * L_32 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); G_B18_0 = L_32; goto IL_010f; } IL_0109: { XmlSchemaDatatype_t322714710 * L_33 = XmlSchemaType_get_Datatype_m3072197688(__this, /*hidden argument*/NULL); G_B18_0 = ((XmlSchemaType_t2033747345 *)(L_33)); } IL_010f: { V_3 = G_B18_0; XmlSchemaSimpleTypeRestriction_t3925451115 * L_34 = V_2; if (!L_34) { goto IL_0125; } } { RuntimeObject * L_35 = V_3; XmlSchemaSimpleTypeRestriction_t3925451115 * L_36 = V_2; NullCheck(L_36); XmlSchemaObjectCollection_t1064819932 * L_37 = XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046(L_36, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_38 = ___h0; XmlSchema_t3742557897 * L_39 = ___schema1; XmlSchemaSimpleType_ValidateDerivationValid_m431215739(__this, L_35, L_37, L_38, L_39, /*hidden argument*/NULL); } IL_0125: { XmlSchemaSimpleTypeContent_t599285223 * L_40 = XmlSchemaSimpleType_get_Content_m2306047784(__this, /*hidden argument*/NULL); V_4 = ((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_40, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var)); XmlSchemaSimpleTypeList_t472803608 * L_41 = V_4; if (!L_41) { goto IL_016b; } } { XmlSchemaSimpleTypeList_t472803608 * L_42 = V_4; NullCheck(L_42); RuntimeObject * L_43 = XmlSchemaSimpleTypeList_get_ValidatedListItemType_m343969183(L_42, /*hidden argument*/NULL); V_5 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_43, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_44 = V_5; if (!L_44) { goto IL_016b; } } { XmlSchemaSimpleType_t2678868104 * L_45 = V_5; NullCheck(L_45); XmlSchemaSimpleTypeContent_t599285223 * L_46 = XmlSchemaSimpleType_get_Content_m2306047784(L_45, /*hidden argument*/NULL); if (!((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_46, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var))) { goto IL_016b; } } { ValidationEventHandler_t791314227 * L_47 = ___h0; XmlSchemaObject_error_m903554348(__this, L_47, _stringLiteral187116341, /*hidden argument*/NULL); } IL_016b: { __this->set_recursed_31((bool)0); XmlSchema_t3742557897 * L_48 = ___schema1; NullCheck(L_48); Guid_t L_49 = ((XmlSchemaObject_t1315720168 *)L_48)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_49); int32_t L_50 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_50; } } // System.Void System.Xml.Schema.XmlSchemaSimpleType::ValidateDerivationValid(System.Object,System.Xml.Schema.XmlSchemaObjectCollection,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleType_ValidateDerivationValid_m431215739 (XmlSchemaSimpleType_t2678868104 * __this, RuntimeObject * ___baseType0, XmlSchemaObjectCollection_t1064819932 * ___facets1, ValidationEventHandler_t791314227 * ___h2, XmlSchema_t3742557897 * ___schema3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_ValidateDerivationValid_m431215739_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaFacet_t1906017689 * V_1 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_2 = NULL; XmlSchemaFacet_t1906017689 * V_3 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_4 = NULL; int32_t V_5 = 0; RuntimeObject* V_6 = NULL; RuntimeObject* V_7 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { RuntimeObject * L_0 = ___baseType0; V_0 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_0, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); int32_t L_1 = XmlSchemaSimpleType_get_Variety_m18134995(__this, /*hidden argument*/NULL); V_5 = L_1; int32_t L_2 = V_5; if ((((int32_t)L_2) == ((int32_t)4))) { goto IL_002d; } } { int32_t L_3 = V_5; if ((((int32_t)L_3) == ((int32_t)8))) { goto IL_006f; } } { int32_t L_4 = V_5; if ((((int32_t)L_4) == ((int32_t)((int32_t)16)))) { goto IL_00ff; } } { goto IL_0172; } IL_002d: { XmlSchemaSimpleType_t2678868104 * L_5 = V_0; if (!L_5) { goto IL_004b; } } { XmlSchemaSimpleType_t2678868104 * L_6 = V_0; NullCheck(L_6); int32_t L_7 = ((XmlSchemaType_t2033747345 *)L_6)->get_resolvedDerivedBy_23(); if ((((int32_t)L_7) == ((int32_t)4))) { goto IL_004b; } } { ValidationEventHandler_t791314227 * L_8 = ___h2; XmlSchemaObject_error_m903554348(__this, L_8, _stringLiteral1002729513, /*hidden argument*/NULL); } IL_004b: { XmlSchemaSimpleType_t2678868104 * L_9 = V_0; if (!L_9) { goto IL_006a; } } { XmlSchemaSimpleType_t2678868104 * L_10 = V_0; NullCheck(L_10); int32_t L_11 = XmlSchemaType_get_FinalResolved_m213206105(L_10, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_11&(int32_t)4))) { goto IL_006a; } } { ValidationEventHandler_t791314227 * L_12 = ___h2; XmlSchemaObject_error_m903554348(__this, L_12, _stringLiteral1784447688, /*hidden argument*/NULL); } IL_006a: { goto IL_0172; } IL_006f: { XmlSchemaObjectCollection_t1064819932 * L_13 = ___facets1; if (!L_13) { goto IL_00fa; } } { XmlSchemaObjectCollection_t1064819932 * L_14 = ___facets1; NullCheck(L_14); XmlSchemaObjectEnumerator_t503074204 * L_15 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_14, /*hidden argument*/NULL); V_2 = L_15; } IL_007c: try { // begin try (depth: 1) { goto IL_00d5; } IL_0081: { XmlSchemaObjectEnumerator_t503074204 * L_16 = V_2; NullCheck(L_16); XmlSchemaObject_t1315720168 * L_17 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_16, /*hidden argument*/NULL); V_1 = ((XmlSchemaFacet_t1906017689 *)CastclassClass((RuntimeObject*)L_17, XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var)); XmlSchemaFacet_t1906017689 * L_18 = V_1; if (((XmlSchemaLengthFacet_t4286280832 *)IsInstClass((RuntimeObject*)L_18, XmlSchemaLengthFacet_t4286280832_il2cpp_TypeInfo_var))) { goto IL_00c4; } } IL_0098: { XmlSchemaFacet_t1906017689 * L_19 = V_1; if (((XmlSchemaMaxLengthFacet_t2192171319 *)IsInstClass((RuntimeObject*)L_19, XmlSchemaMaxLengthFacet_t2192171319_il2cpp_TypeInfo_var))) { goto IL_00c4; } } IL_00a3: { XmlSchemaFacet_t1906017689 * L_20 = V_1; if (((XmlSchemaMinLengthFacet_t686585762 *)IsInstClass((RuntimeObject*)L_20, XmlSchemaMinLengthFacet_t686585762_il2cpp_TypeInfo_var))) { goto IL_00c4; } } IL_00ae: { XmlSchemaFacet_t1906017689 * L_21 = V_1; if (((XmlSchemaEnumerationFacet_t2156689038 *)IsInstClass((RuntimeObject*)L_21, XmlSchemaEnumerationFacet_t2156689038_il2cpp_TypeInfo_var))) { goto IL_00c4; } } IL_00b9: { XmlSchemaFacet_t1906017689 * L_22 = V_1; if (!((XmlSchemaPatternFacet_t3316004401 *)IsInstClass((RuntimeObject*)L_22, XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var))) { goto IL_00c9; } } IL_00c4: { goto IL_00d5; } IL_00c9: { ValidationEventHandler_t791314227 * L_23 = ___h2; XmlSchemaObject_error_m903554348(__this, L_23, _stringLiteral2929388584, /*hidden argument*/NULL); } IL_00d5: { XmlSchemaObjectEnumerator_t503074204 * L_24 = V_2; NullCheck(L_24); bool L_25 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_24, /*hidden argument*/NULL); if (L_25) { goto IL_0081; } } IL_00e0: { IL2CPP_LEAVE(0xFA, FINALLY_00e5); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00e5; } FINALLY_00e5: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_26 = V_2; V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_26, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_27 = V_6; if (L_27) { goto IL_00f2; } } IL_00f1: { IL2CPP_END_FINALLY(229) } IL_00f2: { RuntimeObject* L_28 = V_6; NullCheck(L_28); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_28); IL2CPP_END_FINALLY(229) } } // end finally (depth: 1) IL2CPP_CLEANUP(229) { IL2CPP_JUMP_TBL(0xFA, IL_00fa) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00fa: { goto IL_0172; } IL_00ff: { XmlSchemaObjectCollection_t1064819932 * L_29 = ___facets1; if (!L_29) { goto IL_016d; } } { XmlSchemaObjectCollection_t1064819932 * L_30 = ___facets1; NullCheck(L_30); XmlSchemaObjectEnumerator_t503074204 * L_31 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_30, /*hidden argument*/NULL); V_4 = L_31; } IL_010d: try { // begin try (depth: 1) { goto IL_0146; } IL_0112: { XmlSchemaObjectEnumerator_t503074204 * L_32 = V_4; NullCheck(L_32); XmlSchemaObject_t1315720168 * L_33 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_32, /*hidden argument*/NULL); V_3 = ((XmlSchemaFacet_t1906017689 *)CastclassClass((RuntimeObject*)L_33, XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var)); XmlSchemaFacet_t1906017689 * L_34 = V_3; if (((XmlSchemaEnumerationFacet_t2156689038 *)IsInstClass((RuntimeObject*)L_34, XmlSchemaEnumerationFacet_t2156689038_il2cpp_TypeInfo_var))) { goto IL_0135; } } IL_012a: { XmlSchemaFacet_t1906017689 * L_35 = V_3; if (!((XmlSchemaPatternFacet_t3316004401 *)IsInstClass((RuntimeObject*)L_35, XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var))) { goto IL_013a; } } IL_0135: { goto IL_0146; } IL_013a: { ValidationEventHandler_t791314227 * L_36 = ___h2; XmlSchemaObject_error_m903554348(__this, L_36, _stringLiteral2929388584, /*hidden argument*/NULL); } IL_0146: { XmlSchemaObjectEnumerator_t503074204 * L_37 = V_4; NullCheck(L_37); bool L_38 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_37, /*hidden argument*/NULL); if (L_38) { goto IL_0112; } } IL_0152: { IL2CPP_LEAVE(0x16D, FINALLY_0157); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0157; } FINALLY_0157: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_39 = V_4; V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_39, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_40 = V_7; if (L_40) { goto IL_0165; } } IL_0164: { IL2CPP_END_FINALLY(343) } IL_0165: { RuntimeObject* L_41 = V_7; NullCheck(L_41); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_41); IL2CPP_END_FINALLY(343) } } // end finally (depth: 1) IL2CPP_CLEANUP(343) { IL2CPP_JUMP_TBL(0x16D, IL_016d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_016d: { goto IL_0172; } IL_0172: { return; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleType::ValidateTypeDerivationOK(System.Object,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" bool XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113 (XmlSchemaSimpleType_t2678868104 * __this, RuntimeObject * ___baseType0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, bool ___raiseError3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaSimpleType_t2678868104 * V_1 = NULL; RuntimeObject * V_2 = NULL; ObjectU5BU5D_t2843939325* V_3 = NULL; int32_t V_4 = 0; int32_t V_5 = 0; { RuntimeObject * L_0 = ___baseType0; if ((((RuntimeObject*)(XmlSchemaSimpleType_t2678868104 *)__this) == ((RuntimeObject*)(RuntimeObject *)L_0))) { goto IL_001d; } } { RuntimeObject * L_1 = ___baseType0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_2 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); if ((((RuntimeObject*)(RuntimeObject *)L_1) == ((RuntimeObject*)(XsdAnySimpleType_t1257864485 *)L_2))) { goto IL_001d; } } { RuntimeObject * L_3 = ___baseType0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_4 = XmlSchemaComplexType_get_AnyType_m2038550701(NULL /*static, unused*/, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(XmlSchemaComplexType_t3740801802 *)L_4)))) { goto IL_001f; } } IL_001d: { return (bool)1; } IL_001f: { RuntimeObject * L_5 = ___baseType0; V_0 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_5, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_6 = V_0; if (!L_6) { goto IL_0053; } } { XmlSchemaSimpleType_t2678868104 * L_7 = V_0; NullCheck(L_7); int32_t L_8 = XmlSchemaType_get_FinalResolved_m213206105(L_7, /*hidden argument*/NULL); int32_t L_9 = ((XmlSchemaType_t2033747345 *)__this)->get_resolvedDerivedBy_23(); if (!((int32_t)((int32_t)L_8&(int32_t)L_9))) { goto IL_0053; } } { bool L_10 = ___raiseError3; if (!L_10) { goto IL_0051; } } { ValidationEventHandler_t791314227 * L_11 = ___h1; XmlSchemaObject_error_m903554348(__this, L_11, _stringLiteral573193253, /*hidden argument*/NULL); } IL_0051: { return (bool)0; } IL_0053: { XmlSchemaType_t2033747345 * L_12 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); RuntimeObject * L_13 = ___baseType0; if ((((RuntimeObject*)(XmlSchemaType_t2033747345 *)L_12) == ((RuntimeObject*)(RuntimeObject *)L_13))) { goto IL_006b; } } { XmlSchemaDatatype_t322714710 * L_14 = XmlSchemaType_get_Datatype_m3072197688(__this, /*hidden argument*/NULL); RuntimeObject * L_15 = ___baseType0; if ((!(((RuntimeObject*)(XmlSchemaDatatype_t322714710 *)L_14) == ((RuntimeObject*)(RuntimeObject *)L_15)))) { goto IL_006d; } } IL_006b: { return (bool)1; } IL_006d: { XmlSchemaType_t2033747345 * L_16 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); V_1 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_16, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_17 = V_1; if (!L_17) { goto IL_0090; } } { XmlSchemaSimpleType_t2678868104 * L_18 = V_1; RuntimeObject * L_19 = ___baseType0; ValidationEventHandler_t791314227 * L_20 = ___h1; XmlSchema_t3742557897 * L_21 = ___schema2; NullCheck(L_18); bool L_22 = XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113(L_18, L_19, L_20, L_21, (bool)0, /*hidden argument*/NULL); if (!L_22) { goto IL_0090; } } { return (bool)1; } IL_0090: { int32_t L_23 = XmlSchemaSimpleType_get_Variety_m18134995(__this, /*hidden argument*/NULL); V_5 = L_23; int32_t L_24 = V_5; if ((((int32_t)L_24) == ((int32_t)8))) { goto IL_00ae; } } { int32_t L_25 = V_5; if ((((int32_t)L_25) == ((int32_t)((int32_t)16)))) { goto IL_00ae; } } { goto IL_00c0; } IL_00ae: { RuntimeObject * L_26 = ___baseType0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_27 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(RuntimeObject *)L_26) == ((RuntimeObject*)(XsdAnySimpleType_t1257864485 *)L_27)))) { goto IL_00bb; } } { return (bool)1; } IL_00bb: { goto IL_00c0; } IL_00c0: { XmlSchemaSimpleType_t2678868104 * L_28 = V_0; if (!L_28) { goto IL_0112; } } { XmlSchemaSimpleType_t2678868104 * L_29 = V_0; NullCheck(L_29); int32_t L_30 = XmlSchemaSimpleType_get_Variety_m18134995(L_29, /*hidden argument*/NULL); if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)16))))) { goto IL_0112; } } { XmlSchemaSimpleType_t2678868104 * L_31 = V_0; NullCheck(L_31); XmlSchemaSimpleTypeContent_t599285223 * L_32 = XmlSchemaSimpleType_get_Content_m2306047784(L_31, /*hidden argument*/NULL); NullCheck(((XmlSchemaSimpleTypeUnion_t4071426880 *)CastclassClass((RuntimeObject*)L_32, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var))); ObjectU5BU5D_t2843939325* L_33 = XmlSchemaSimpleTypeUnion_get_ValidatedTypes_m461184707(((XmlSchemaSimpleTypeUnion_t4071426880 *)CastclassClass((RuntimeObject*)L_32, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_3 = L_33; V_4 = 0; goto IL_0108; } IL_00ec: { ObjectU5BU5D_t2843939325* L_34 = V_3; int32_t L_35 = V_4; NullCheck(L_34); int32_t L_36 = L_35; RuntimeObject * L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36)); V_2 = L_37; RuntimeObject * L_38 = V_2; ValidationEventHandler_t791314227 * L_39 = ___h1; XmlSchema_t3742557897 * L_40 = ___schema2; bool L_41 = XmlSchemaSimpleType_ValidateTypeDerivationOK_m3745618113(__this, L_38, L_39, L_40, (bool)0, /*hidden argument*/NULL); if (!L_41) { goto IL_0102; } } { return (bool)1; } IL_0102: { int32_t L_42 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)); } IL_0108: { int32_t L_43 = V_4; ObjectU5BU5D_t2843939325* L_44 = V_3; NullCheck(L_44); if ((((int32_t)L_43) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_44)->max_length))))))) { goto IL_00ec; } } IL_0112: { bool L_45 = ___raiseError3; if (!L_45) { goto IL_0125; } } { ValidationEventHandler_t791314227 * L_46 = ___h1; XmlSchemaObject_error_m903554348(__this, L_46, _stringLiteral1470549572, /*hidden argument*/NULL); } IL_0125: { return (bool)0; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleType::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleType_Read_m1629189972 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleType_Read_m1629189972_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; XmlSchemaSimpleTypeRestriction_t3925451115 * V_4 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_5 = NULL; XmlSchemaSimpleTypeUnion_t4071426880 * V_6 = NULL; { XmlSchemaSimpleType_t2678868104 * L_0 = (XmlSchemaSimpleType_t2678868104 *)il2cpp_codegen_object_new(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType__ctor_m2253231569(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1307725358, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSimpleType_t2678868104 *)NULL; } IL_0056: { XmlSchemaSimpleType_t2678868104 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0171; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral2379696392, /*hidden argument*/NULL); if (!L_24) { goto IL_00c3; } } { XmlSchemaSimpleType_t2678868104 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_27 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_FinalAllowed_0(); int32_t L_28 = XmlSchemaUtil_ReadDerivationAttribute_m214019534(NULL /*static, unused*/, L_26, (&V_1), _stringLiteral2379696392, L_27, /*hidden argument*/NULL); NullCheck(L_25); XmlSchemaType_set_Final_m383026665(L_25, L_28, /*hidden argument*/NULL); Exception_t * L_29 = V_1; if (!L_29) { goto IL_00be; } } { ValidationEventHandler_t791314227 * L_30 = ___h1; Exception_t * L_31 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_30, _stringLiteral2853295071, L_31, /*hidden argument*/NULL); } IL_00be: { goto IL_0171; } IL_00c3: { XmlSchemaReader_t1164558392 * L_32 = ___reader0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_32); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_34 = String_op_Equality_m920492651(NULL /*static, unused*/, L_33, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_34) { goto IL_00e9; } } { XmlSchemaSimpleType_t2678868104 * L_35 = V_0; XmlSchemaReader_t1164558392 * L_36 = ___reader0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_36); NullCheck(L_35); XmlSchemaAnnotated_set_Id_m1597719336(L_35, L_37, /*hidden argument*/NULL); goto IL_0171; } IL_00e9: { XmlSchemaReader_t1164558392 * L_38 = ___reader0; NullCheck(L_38); String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_38); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_40 = String_op_Equality_m920492651(NULL /*static, unused*/, L_39, _stringLiteral62725243, /*hidden argument*/NULL); if (!L_40) { goto IL_010f; } } { XmlSchemaSimpleType_t2678868104 * L_41 = V_0; XmlSchemaReader_t1164558392 * L_42 = ___reader0; NullCheck(L_42); String_t* L_43 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_42); NullCheck(L_41); XmlSchemaType_set_Name_m786219427(L_41, L_43, /*hidden argument*/NULL); goto IL_0171; } IL_010f: { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_44); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_46 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_47 = String_op_Equality_m920492651(NULL /*static, unused*/, L_45, L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_0139; } } { XmlSchemaReader_t1164558392 * L_48 = ___reader0; NullCheck(L_48); String_t* L_49 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_48); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_50 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_49, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_50) { goto IL_014e; } } IL_0139: { XmlSchemaReader_t1164558392 * L_51 = ___reader0; NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_53 = String_op_Equality_m920492651(NULL /*static, unused*/, L_52, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_53) { goto IL_016a; } } IL_014e: { ValidationEventHandler_t791314227 * L_54 = ___h1; XmlSchemaReader_t1164558392 * L_55 = ___reader0; NullCheck(L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_57 = String_Concat_m3937257545(NULL /*static, unused*/, L_56, _stringLiteral94847583, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_54, L_57, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0171; } IL_016a: { XmlSchemaReader_t1164558392 * L_58 = ___reader0; XmlSchemaSimpleType_t2678868104 * L_59 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_58, L_59, /*hidden argument*/NULL); } IL_0171: { XmlSchemaReader_t1164558392 * L_60 = ___reader0; NullCheck(L_60); bool L_61 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_60); if (L_61) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_62); XmlSchemaReader_t1164558392 * L_63 = ___reader0; NullCheck(L_63); bool L_64 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_63); if (!L_64) { goto IL_0190; } } { XmlSchemaSimpleType_t2678868104 * L_65 = V_0; return L_65; } IL_0190: { V_2 = 1; goto IL_02b6; } IL_0197: { XmlSchemaReader_t1164558392 * L_66 = ___reader0; NullCheck(L_66); int32_t L_67 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_66); if ((!(((uint32_t)L_67) == ((uint32_t)((int32_t)15))))) { goto IL_01d5; } } { XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_68); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_70 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_69, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_70) { goto IL_01d0; } } { ValidationEventHandler_t791314227 * L_71 = ___h1; XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_72); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_74 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2310844148, L_73, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_71, L_74, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01d0: { goto IL_02c1; } IL_01d5: { int32_t L_75 = V_2; if ((((int32_t)L_75) > ((int32_t)1))) { goto IL_020d; } } { XmlSchemaReader_t1164558392 * L_76 = ___reader0; NullCheck(L_76); String_t* L_77 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_76); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_78 = String_op_Equality_m920492651(NULL /*static, unused*/, L_77, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_78) { goto IL_020d; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_79 = ___reader0; ValidationEventHandler_t791314227 * L_80 = ___h1; XmlSchemaAnnotation_t2553753397 * L_81 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_79, L_80, /*hidden argument*/NULL); V_3 = L_81; XmlSchemaAnnotation_t2553753397 * L_82 = V_3; if (!L_82) { goto IL_0208; } } { XmlSchemaSimpleType_t2678868104 * L_83 = V_0; XmlSchemaAnnotation_t2553753397 * L_84 = V_3; NullCheck(L_83); XmlSchemaAnnotated_set_Annotation_m3050132480(L_83, L_84, /*hidden argument*/NULL); } IL_0208: { goto IL_02b6; } IL_020d: { int32_t L_85 = V_2; if ((((int32_t)L_85) > ((int32_t)2))) { goto IL_02b0; } } { XmlSchemaReader_t1164558392 * L_86 = ___reader0; NullCheck(L_86); String_t* L_87 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_86); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_88 = String_op_Equality_m920492651(NULL /*static, unused*/, L_87, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_88) { goto IL_0248; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_89 = ___reader0; ValidationEventHandler_t791314227 * L_90 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeRestriction_t3925451115 * L_91 = XmlSchemaSimpleTypeRestriction_Read_m102524905(NULL /*static, unused*/, L_89, L_90, /*hidden argument*/NULL); V_4 = L_91; XmlSchemaSimpleTypeRestriction_t3925451115 * L_92 = V_4; if (!L_92) { goto IL_0243; } } { XmlSchemaSimpleType_t2678868104 * L_93 = V_0; XmlSchemaSimpleTypeRestriction_t3925451115 * L_94 = V_4; NullCheck(L_93); L_93->set_content_29(L_94); } IL_0243: { goto IL_02b6; } IL_0248: { XmlSchemaReader_t1164558392 * L_95 = ___reader0; NullCheck(L_95); String_t* L_96 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_95); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_97 = String_op_Equality_m920492651(NULL /*static, unused*/, L_96, _stringLiteral3941568111, /*hidden argument*/NULL); if (!L_97) { goto IL_027c; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_98 = ___reader0; ValidationEventHandler_t791314227 * L_99 = ___h1; XmlSchemaSimpleTypeList_t472803608 * L_100 = XmlSchemaSimpleTypeList_Read_m3988772706(NULL /*static, unused*/, L_98, L_99, /*hidden argument*/NULL); V_5 = L_100; XmlSchemaSimpleTypeList_t472803608 * L_101 = V_5; if (!L_101) { goto IL_0277; } } { XmlSchemaSimpleType_t2678868104 * L_102 = V_0; XmlSchemaSimpleTypeList_t472803608 * L_103 = V_5; NullCheck(L_102); L_102->set_content_29(L_103); } IL_0277: { goto IL_02b6; } IL_027c: { XmlSchemaReader_t1164558392 * L_104 = ___reader0; NullCheck(L_104); String_t* L_105 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_104); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_106 = String_op_Equality_m920492651(NULL /*static, unused*/, L_105, _stringLiteral1991705772, /*hidden argument*/NULL); if (!L_106) { goto IL_02b0; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_107 = ___reader0; ValidationEventHandler_t791314227 * L_108 = ___h1; XmlSchemaSimpleTypeUnion_t4071426880 * L_109 = XmlSchemaSimpleTypeUnion_Read_m4121525525(NULL /*static, unused*/, L_107, L_108, /*hidden argument*/NULL); V_6 = L_109; XmlSchemaSimpleTypeUnion_t4071426880 * L_110 = V_6; if (!L_110) { goto IL_02ab; } } { XmlSchemaSimpleType_t2678868104 * L_111 = V_0; XmlSchemaSimpleTypeUnion_t4071426880 * L_112 = V_6; NullCheck(L_111); L_111->set_content_29(L_112); } IL_02ab: { goto IL_02b6; } IL_02b0: { XmlSchemaReader_t1164558392 * L_113 = ___reader0; NullCheck(L_113); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_113, /*hidden argument*/NULL); } IL_02b6: { XmlSchemaReader_t1164558392 * L_114 = ___reader0; NullCheck(L_114); bool L_115 = XmlSchemaReader_ReadNextElement_m611223709(L_114, /*hidden argument*/NULL); if (L_115) { goto IL_0197; } } IL_02c1: { XmlSchemaSimpleType_t2678868104 * L_116 = V_0; return L_116; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleTypeContent::.ctor() extern "C" void XmlSchemaSimpleTypeContent__ctor_m2939213844 (XmlSchemaSimpleTypeContent_t599285223 * __this, const RuntimeMethod* method) { { XmlSchemaAnnotated__ctor_m2738129066(__this, /*hidden argument*/NULL); return; } } // System.Object System.Xml.Schema.XmlSchemaSimpleTypeContent::get_ActualBaseSchemaType() extern "C" RuntimeObject * XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945 (XmlSchemaSimpleTypeContent_t599285223 * __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_t2678868104 * L_0 = __this->get_OwnerType_16(); NullCheck(L_0); RuntimeObject * L_1 = XmlSchemaType_get_BaseSchemaType_m3936227521(L_0, /*hidden argument*/NULL); return 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.Void System.Xml.Schema.XmlSchemaSimpleTypeList::.ctor() extern "C" void XmlSchemaSimpleTypeList__ctor_m468630537 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeList__ctor_m468630537_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaSimpleTypeContent__ctor_m2939213844(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_0 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); XmlSchemaSimpleTypeList_set_ItemTypeName_m1444979039(__this, L_0, /*hidden argument*/NULL); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeList::get_ItemTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleTypeList_get_ItemTypeName_m1793827519 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_itemTypeName_18(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemTypeName(System.Xml.XmlQualifiedName) extern "C" void XmlSchemaSimpleTypeList_set_ItemTypeName_m1444979039 (XmlSchemaSimpleTypeList_t472803608 * __this, XmlQualifiedName_t2760654312 * ___value0, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = ___value0; __this->set_itemTypeName_18(L_0); return; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeList::get_ItemType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleTypeList_get_ItemType_m4258023120 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_t2678868104 * L_0 = __this->get_itemType_17(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::set_ItemType(System.Xml.Schema.XmlSchemaSimpleType) extern "C" void XmlSchemaSimpleTypeList_set_ItemType_m4093680610 (XmlSchemaSimpleTypeList_t472803608 * __this, XmlSchemaSimpleType_t2678868104 * ___value0, const RuntimeMethod* method) { { XmlSchemaSimpleType_t2678868104 * L_0 = ___value0; __this->set_itemType_17(L_0); return; } } // System.Object System.Xml.Schema.XmlSchemaSimpleTypeList::get_ValidatedListItemType() extern "C" RuntimeObject * XmlSchemaSimpleTypeList_get_ValidatedListItemType_m343969183 (XmlSchemaSimpleTypeList_t472803608 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_validatedListItemType_19(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeList::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleTypeList_SetParent_m3653621498 (XmlSchemaSimpleTypeList_t472803608 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_1 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { XmlSchemaSimpleType_t2678868104 * L_2 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaSimpleType::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeList::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeList_Compile_m2478526433 (XmlSchemaSimpleTypeList_t472803608 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeList_Compile_m2478526433_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(0); XmlSchemaSimpleType_t2678868104 * L_4 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_0046; } } { XmlQualifiedName_t2760654312 * L_5 = XmlSchemaSimpleTypeList_get_ItemTypeName_m1793827519(__this, /*hidden argument*/NULL); NullCheck(L_5); bool L_6 = XmlQualifiedName_get_IsEmpty_m1430090042(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0046; } } { ValidationEventHandler_t791314227 * L_7 = ___h0; XmlSchemaObject_error_m903554348(__this, L_7, _stringLiteral520028258, /*hidden argument*/NULL); } IL_0046: { XmlSchemaSimpleType_t2678868104 * L_8 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); if (L_8) { goto IL_006d; } } { XmlQualifiedName_t2760654312 * L_9 = XmlSchemaSimpleTypeList_get_ItemTypeName_m1793827519(__this, /*hidden argument*/NULL); NullCheck(L_9); bool L_10 = XmlQualifiedName_get_IsEmpty_m1430090042(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_006d; } } { ValidationEventHandler_t791314227 * L_11 = ___h0; XmlSchemaObject_error_m903554348(__this, L_11, _stringLiteral3015152753, /*hidden argument*/NULL); } IL_006d: { XmlSchemaSimpleType_t2678868104 * L_12 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); if (!L_12) { goto IL_0092; } } { int32_t L_13 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_14 = XmlSchemaSimpleTypeList_get_ItemType_m4258023120(__this, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_15 = ___h0; XmlSchema_t3742557897 * L_16 = ___schema1; NullCheck(L_14); int32_t L_17 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_14, L_15, L_16); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_17))); } IL_0092: { XmlQualifiedName_t2760654312 * L_18 = XmlSchemaSimpleTypeList_get_ItemTypeName_m1793827519(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_19 = XmlSchemaUtil_CheckQName_m3878061682(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00ae; } } { ValidationEventHandler_t791314227 * L_20 = ___h0; XmlSchemaObject_error_m903554348(__this, L_20, _stringLiteral343863411, /*hidden argument*/NULL); } IL_00ae: { String_t* L_21 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_22 = ___schema1; NullCheck(L_22); Hashtable_t1853889766 * L_23 = XmlSchema_get_IDCollection_m3725452494(L_22, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_24 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_21, __this, L_23, L_24, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_25 = ___schema1; NullCheck(L_25); Guid_t L_26 = ((XmlSchemaObject_t1315720168 *)L_25)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_26); int32_t L_27 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_27; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeList::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeList_Validate_m3630859097 (XmlSchemaSimpleTypeList_t472803608 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeList_Validate_m3630859097_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaSimpleType_t2678868104 * V_1 = NULL; { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { XmlSchemaSimpleType_t2678868104 * L_4 = __this->get_itemType_17(); V_0 = L_4; XmlSchemaSimpleType_t2678868104 * L_5 = V_0; if (L_5) { goto IL_0037; } } { XmlSchema_t3742557897 * L_6 = ___schema1; XmlQualifiedName_t2760654312 * L_7 = __this->get_itemTypeName_18(); NullCheck(L_6); XmlSchemaType_t2033747345 * L_8 = XmlSchema_FindSchemaType_m3920891232(L_6, L_7, /*hidden argument*/NULL); V_0 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_8, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); } IL_0037: { XmlSchemaSimpleType_t2678868104 * L_9 = V_0; if (!L_9) { goto IL_005e; } } { int32_t L_10 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_11 = V_0; ValidationEventHandler_t791314227 * L_12 = ___h0; XmlSchema_t3742557897 * L_13 = ___schema1; NullCheck(L_11); int32_t L_14 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_11, L_12, L_13); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_14))); XmlSchemaSimpleType_t2678868104 * L_15 = V_0; __this->set_validatedListItemType_19(L_15); goto IL_00fd; } IL_005e: { XmlQualifiedName_t2760654312 * L_16 = __this->get_itemTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_17 = ((XmlSchemaComplexType_t3740801802_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var))->get_AnyTypeName_43(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_18 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0083; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_19 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); __this->set_validatedListItemType_19(L_19); goto IL_00fd; } IL_0083: { XmlQualifiedName_t2760654312 * L_20 = __this->get_itemTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_21 = XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516(NULL /*static, unused*/, L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00cb; } } { XmlQualifiedName_t2760654312 * L_22 = __this->get_itemTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_23 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_22, /*hidden argument*/NULL); __this->set_validatedListItemType_19(L_23); RuntimeObject * L_24 = __this->get_validatedListItemType_19(); if (L_24) { goto IL_00c6; } } { ValidationEventHandler_t791314227 * L_25 = ___h0; XmlQualifiedName_t2760654312 * L_26 = __this->get_itemTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_27 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral3470389865, L_26, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_25, L_27, /*hidden argument*/NULL); } IL_00c6: { goto IL_00fd; } IL_00cb: { XmlSchema_t3742557897 * L_28 = ___schema1; XmlQualifiedName_t2760654312 * L_29 = __this->get_itemTypeName_18(); NullCheck(L_29); String_t* L_30 = XmlQualifiedName_get_Namespace_m3957593392(L_29, /*hidden argument*/NULL); NullCheck(L_28); bool L_31 = XmlSchema_IsNamespaceAbsent_m3899863769(L_28, L_30, /*hidden argument*/NULL); if (L_31) { goto IL_00fd; } } { ValidationEventHandler_t791314227 * L_32 = ___h0; XmlQualifiedName_t2760654312 * L_33 = __this->get_itemTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_34 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral1256501891, L_33, _stringLiteral2086747346, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_32, L_34, /*hidden argument*/NULL); } IL_00fd: { RuntimeObject * L_35 = __this->get_validatedListItemType_19(); V_1 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_35, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_36 = V_1; if (L_36) { goto IL_0130; } } { RuntimeObject * L_37 = __this->get_validatedListItemType_19(); if (!L_37) { goto IL_0130; } } { RuntimeObject * L_38 = __this->get_validatedListItemType_19(); NullCheck(((XmlSchemaDatatype_t322714710 *)CastclassClass((RuntimeObject*)L_38, XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var))); int32_t L_39 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, ((XmlSchemaDatatype_t322714710 *)CastclassClass((RuntimeObject*)L_38, XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var))); XmlSchemaSimpleType_t2678868104 * L_40 = XmlSchemaType_GetBuiltInSimpleType_m1138863932(NULL /*static, unused*/, L_39, /*hidden argument*/NULL); V_1 = L_40; } IL_0130: { XmlSchemaSimpleType_t2678868104 * L_41 = V_1; __this->set_validatedListItemSchemaType_20(L_41); XmlSchema_t3742557897 * L_42 = ___schema1; NullCheck(L_42); Guid_t L_43 = ((XmlSchemaObject_t1315720168 *)L_42)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_43); int32_t L_44 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_44; } } // System.Xml.Schema.XmlSchemaSimpleTypeList System.Xml.Schema.XmlSchemaSimpleTypeList::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeList_t472803608 * XmlSchemaSimpleTypeList_Read_m3988772706 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeList_Read_m3988772706_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleTypeList_t472803608 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; XmlSchemaSimpleType_t2678868104 * V_4 = NULL; { XmlSchemaSimpleTypeList_t472803608 * L_0 = (XmlSchemaSimpleTypeList_t472803608 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeList__ctor_m468630537(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral3941568111, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2600357199, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSimpleTypeList_t472803608 *)NULL; } IL_0056: { XmlSchemaSimpleTypeList_t472803608 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleTypeList_t472803608 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleTypeList_t472803608 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_014c; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaSimpleTypeList_t472803608 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_014c; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral2355854968, /*hidden argument*/NULL); if (!L_30) { goto IL_00ea; } } { XmlSchemaSimpleTypeList_t472803608 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_33 = XmlSchemaUtil_ReadQNameAttribute_m567024358(NULL /*static, unused*/, L_32, (&V_1), /*hidden argument*/NULL); NullCheck(L_31); XmlSchemaSimpleTypeList_set_ItemTypeName_m1444979039(L_31, L_33, /*hidden argument*/NULL); Exception_t * L_34 = V_1; if (!L_34) { goto IL_00e5; } } { ValidationEventHandler_t791314227 * L_35 = ___h1; XmlSchemaReader_t1164558392 * L_36 = ___reader0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_36); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_38 = String_Concat_m3937257545(NULL /*static, unused*/, L_37, _stringLiteral2281214833, /*hidden argument*/NULL); Exception_t * L_39 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_35, L_38, L_39, /*hidden argument*/NULL); } IL_00e5: { goto IL_014c; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0114; } } { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_44); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_46 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_45, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_46) { goto IL_0129; } } IL_0114: { XmlSchemaReader_t1164558392 * L_47 = ___reader0; NullCheck(L_47); String_t* L_48 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_47); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_48, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_49) { goto IL_0145; } } IL_0129: { ValidationEventHandler_t791314227 * L_50 = ___h1; XmlSchemaReader_t1164558392 * L_51 = ___reader0; NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m3937257545(NULL /*static, unused*/, L_52, _stringLiteral569633848, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_50, L_53, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_014c; } IL_0145: { XmlSchemaReader_t1164558392 * L_54 = ___reader0; XmlSchemaSimpleTypeList_t472803608 * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); } IL_014c: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); bool L_57 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_56); if (L_57) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_58); XmlSchemaReader_t1164558392 * L_59 = ___reader0; NullCheck(L_59); bool L_60 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_59); if (!L_60) { goto IL_016b; } } { XmlSchemaSimpleTypeList_t472803608 * L_61 = V_0; return L_61; } IL_016b: { V_2 = 1; goto IL_0229; } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_62); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)15))))) { goto IL_01b0; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); String_t* L_65 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_64); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_66 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_65, _stringLiteral3941568111, /*hidden argument*/NULL); if (!L_66) { goto IL_01ab; } } { ValidationEventHandler_t791314227 * L_67 = ___h1; XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_68); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_70 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3585894194, L_69, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_67, L_70, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01ab: { goto IL_0234; } IL_01b0: { int32_t L_71 = V_2; if ((((int32_t)L_71) > ((int32_t)1))) { goto IL_01e8; } } { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_72); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_74 = String_op_Equality_m920492651(NULL /*static, unused*/, L_73, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_74) { goto IL_01e8; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_75 = ___reader0; ValidationEventHandler_t791314227 * L_76 = ___h1; XmlSchemaAnnotation_t2553753397 * L_77 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_75, L_76, /*hidden argument*/NULL); V_3 = L_77; XmlSchemaAnnotation_t2553753397 * L_78 = V_3; if (!L_78) { goto IL_01e3; } } { XmlSchemaSimpleTypeList_t472803608 * L_79 = V_0; XmlSchemaAnnotation_t2553753397 * L_80 = V_3; NullCheck(L_79); XmlSchemaAnnotated_set_Annotation_m3050132480(L_79, L_80, /*hidden argument*/NULL); } IL_01e3: { goto IL_0229; } IL_01e8: { int32_t L_81 = V_2; if ((((int32_t)L_81) > ((int32_t)2))) { goto IL_0223; } } { XmlSchemaReader_t1164558392 * L_82 = ___reader0; NullCheck(L_82); String_t* L_83 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_82); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_84 = String_op_Equality_m920492651(NULL /*static, unused*/, L_83, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_84) { goto IL_0223; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_85 = ___reader0; ValidationEventHandler_t791314227 * L_86 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_87 = XmlSchemaSimpleType_Read_m1629189972(NULL /*static, unused*/, L_85, L_86, /*hidden argument*/NULL); V_4 = L_87; XmlSchemaSimpleType_t2678868104 * L_88 = V_4; if (!L_88) { goto IL_021e; } } { XmlSchemaSimpleTypeList_t472803608 * L_89 = V_0; XmlSchemaSimpleType_t2678868104 * L_90 = V_4; NullCheck(L_89); L_89->set_itemType_17(L_90); } IL_021e: { goto IL_0229; } IL_0223: { XmlSchemaReader_t1164558392 * L_91 = ___reader0; NullCheck(L_91); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_91, /*hidden argument*/NULL); } IL_0229: { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); bool L_93 = XmlSchemaReader_ReadNextElement_m611223709(L_92, /*hidden argument*/NULL); if (L_93) { goto IL_0172; } } IL_0234: { XmlSchemaSimpleTypeList_t472803608 * L_94 = V_0; return L_94; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::.ctor() extern "C" void XmlSchemaSimpleTypeRestriction__ctor_m666597917 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction__ctor_m666597917_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaSimpleTypeContent__ctor_m2939213844(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_0 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); __this->set_baseTypeName_18(L_0); XmlSchemaObjectCollection_t1064819932 * L_1 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_1, /*hidden argument*/NULL); __this->set_facets_19(L_1); return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::.cctor() extern "C" void XmlSchemaSimpleTypeRestriction__cctor_m3766107797 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction__cctor_m3766107797_MetadataUsageId); s_Il2CppMethodInitialized = true; } { ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->set_lengthStyle_33(7); ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->set_listFacets_34(((int32_t)63)); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_BaseTypeName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaSimpleTypeRestriction_get_BaseTypeName_m3242510882 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_baseTypeName_18(); return L_0; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_BaseType() extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaSimpleTypeRestriction_get_BaseType_m3965294117 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) { { XmlSchemaSimpleType_t2678868104 * L_0 = __this->get_baseType_17(); return L_0; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeRestriction::get_Facets() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_facets_19(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleTypeRestriction_SetParent_m1234062005 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_SetParent_m1234062005_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaSimpleType_t2678868104 * L_1 = XmlSchemaSimpleTypeRestriction_get_BaseType_m3965294117(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { XmlSchemaSimpleType_t2678868104 * L_2 = XmlSchemaSimpleTypeRestriction_get_BaseType_m3965294117(__this, /*hidden argument*/NULL); NullCheck(L_2); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaSimpleType::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_2, __this); } IL_001e: { XmlSchemaObjectCollection_t1064819932 * L_3 = XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046(__this, /*hidden argument*/NULL); NullCheck(L_3); XmlSchemaObjectEnumerator_t503074204 * L_4 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_3, /*hidden argument*/NULL); V_1 = L_4; } IL_002a: try { // begin try (depth: 1) { goto IL_003d; } IL_002f: { XmlSchemaObjectEnumerator_t503074204 * L_5 = V_1; NullCheck(L_5); XmlSchemaObject_t1315720168 * L_6 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_5, /*hidden argument*/NULL); V_0 = L_6; XmlSchemaObject_t1315720168 * L_7 = V_0; NullCheck(L_7); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_7, __this); } IL_003d: { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; NullCheck(L_8); bool L_9 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_8, /*hidden argument*/NULL); if (L_9) { goto IL_002f; } } IL_0048: { IL2CPP_LEAVE(0x5F, FINALLY_004d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_004d; } FINALLY_004d: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_10 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_11 = V_2; if (L_11) { goto IL_0058; } } IL_0057: { IL2CPP_END_FINALLY(77) } IL_0058: { RuntimeObject* L_12 = V_2; NullCheck(L_12); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_12); IL2CPP_END_FINALLY(77) } } // end finally (depth: 1) IL2CPP_CLEANUP(77) { IL2CPP_JUMP_TBL(0x5F, IL_005f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_005f: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeRestriction::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeRestriction_Compile_m1536568546 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_Compile_m1536568546_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(0); XmlSchemaSimpleType_t2678868104 * L_4 = __this->get_baseType_17(); if (!L_4) { goto IL_0046; } } { XmlQualifiedName_t2760654312 * L_5 = XmlSchemaSimpleTypeRestriction_get_BaseTypeName_m3242510882(__this, /*hidden argument*/NULL); NullCheck(L_5); bool L_6 = XmlQualifiedName_get_IsEmpty_m1430090042(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0046; } } { ValidationEventHandler_t791314227 * L_7 = ___h0; XmlSchemaObject_error_m903554348(__this, L_7, _stringLiteral2934311481, /*hidden argument*/NULL); } IL_0046: { XmlSchemaSimpleType_t2678868104 * L_8 = __this->get_baseType_17(); if (L_8) { goto IL_006d; } } { XmlQualifiedName_t2760654312 * L_9 = XmlSchemaSimpleTypeRestriction_get_BaseTypeName_m3242510882(__this, /*hidden argument*/NULL); NullCheck(L_9); bool L_10 = XmlQualifiedName_get_IsEmpty_m1430090042(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_006d; } } { ValidationEventHandler_t791314227 * L_11 = ___h0; XmlSchemaObject_error_m903554348(__this, L_11, _stringLiteral934947509, /*hidden argument*/NULL); } IL_006d: { XmlSchemaSimpleType_t2678868104 * L_12 = __this->get_baseType_17(); if (!L_12) { goto IL_0092; } } { int32_t L_13 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_14 = __this->get_baseType_17(); ValidationEventHandler_t791314227 * L_15 = ___h0; XmlSchema_t3742557897 * L_16 = ___schema1; NullCheck(L_14); int32_t L_17 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_14, L_15, L_16); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_17))); } IL_0092: { XmlQualifiedName_t2760654312 * L_18 = XmlSchemaSimpleTypeRestriction_get_BaseTypeName_m3242510882(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_19 = XmlSchemaUtil_CheckQName_m3878061682(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); if (L_19) { goto IL_00ae; } } { ValidationEventHandler_t791314227 * L_20 = ___h0; XmlSchemaObject_error_m903554348(__this, L_20, _stringLiteral343863411, /*hidden argument*/NULL); } IL_00ae: { String_t* L_21 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_22 = ___schema1; NullCheck(L_22); Hashtable_t1853889766 * L_23 = XmlSchema_get_IDCollection_m3725452494(L_22, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_24 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_21, __this, L_23, L_24, /*hidden argument*/NULL); V_0 = 0; goto IL_00ee; } IL_00c8: { XmlSchemaObjectCollection_t1064819932 * L_25 = XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046(__this, /*hidden argument*/NULL); int32_t L_26 = V_0; NullCheck(L_25); XmlSchemaObject_t1315720168 * L_27 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_25, L_26); if (((XmlSchemaFacet_t1906017689 *)IsInstClass((RuntimeObject*)L_27, XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var))) { goto IL_00ea; } } { ValidationEventHandler_t791314227 * L_28 = ___h0; XmlSchemaObject_error_m903554348(__this, L_28, _stringLiteral2154803466, /*hidden argument*/NULL); } IL_00ea: { int32_t L_29 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_00ee: { int32_t L_30 = V_0; XmlSchemaObjectCollection_t1064819932 * L_31 = XmlSchemaSimpleTypeRestriction_get_Facets_m3958612046(__this, /*hidden argument*/NULL); NullCheck(L_31); int32_t L_32 = CollectionBase_get_Count_m1708965601(L_31, /*hidden argument*/NULL); if ((((int32_t)L_30) < ((int32_t)L_32))) { goto IL_00c8; } } { XmlSchema_t3742557897 * L_33 = ___schema1; NullCheck(L_33); Guid_t L_34 = ((XmlSchemaObject_t1315720168 *)L_33)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_34); int32_t L_35 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_35; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::IsAllowedFacet(System.Xml.Schema.XmlSchemaFacet) extern "C" bool XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFacet_t1906017689 * ___xsf0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703_MetadataUsageId); s_Il2CppMethodInitialized = true; } XsdAnySimpleType_t1257864485 * V_0 = NULL; XmlSchemaSimpleTypeContent_t599285223 * V_1 = NULL; XmlSchemaSimpleTypeRestriction_t3925451115 * V_2 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_3 = NULL; XmlSchemaSimpleTypeUnion_t4071426880 * V_4 = NULL; int32_t G_B12_0 = 0; { RuntimeObject * L_0 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); V_0 = ((XsdAnySimpleType_t1257864485 *)IsInstClass((RuntimeObject*)L_0, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var)); XsdAnySimpleType_t1257864485 * L_1 = V_0; if (!L_1) { goto IL_001a; } } { XsdAnySimpleType_t1257864485 * L_2 = V_0; XmlSchemaFacet_t1906017689 * L_3 = ___xsf0; NullCheck(L_2); bool L_4 = XsdAnySimpleType_AllowsFacet_m3295817030(L_2, L_3, /*hidden argument*/NULL); return L_4; } IL_001a: { RuntimeObject * L_5 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); NullCheck(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_5, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))); XmlSchemaSimpleTypeContent_t599285223 * L_6 = XmlSchemaSimpleType_get_Content_m2306047784(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_5, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_6; XmlSchemaSimpleTypeContent_t599285223 * L_7 = V_1; if (!L_7) { goto IL_0099; } } { XmlSchemaSimpleTypeContent_t599285223 * L_8 = V_1; V_2 = ((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_8, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)); XmlSchemaSimpleTypeRestriction_t3925451115 * L_9 = V_2; if (!L_9) { goto IL_004d; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_10 = V_2; if ((((RuntimeObject*)(XmlSchemaSimpleTypeRestriction_t3925451115 *)L_10) == ((RuntimeObject*)(XmlSchemaSimpleTypeRestriction_t3925451115 *)__this))) { goto IL_004d; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_11 = V_2; XmlSchemaFacet_t1906017689 * L_12 = ___xsf0; NullCheck(L_11); bool L_13 = XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703(L_11, L_12, /*hidden argument*/NULL); return L_13; } IL_004d: { XmlSchemaSimpleTypeContent_t599285223 * L_14 = V_1; V_3 = ((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_14, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var)); XmlSchemaSimpleTypeList_t472803608 * L_15 = V_3; if (!L_15) { goto IL_006d; } } { XmlSchemaFacet_t1906017689 * L_16 = ___xsf0; NullCheck(L_16); int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_16); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_18 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_listFacets_34(); return (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_17&(int32_t)L_18))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_006d: { XmlSchemaSimpleTypeContent_t599285223 * L_19 = V_1; V_4 = ((XmlSchemaSimpleTypeUnion_t4071426880 *)IsInstClass((RuntimeObject*)L_19, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var)); XmlSchemaSimpleTypeUnion_t4071426880 * L_20 = V_4; if (!L_20) { goto IL_0094; } } { XmlSchemaFacet_t1906017689 * L_21 = ___xsf0; if (((XmlSchemaPatternFacet_t3316004401 *)IsInstClass((RuntimeObject*)L_21, XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var))) { goto IL_0092; } } { XmlSchemaFacet_t1906017689 * L_22 = ___xsf0; G_B12_0 = ((!(((RuntimeObject*)(XmlSchemaEnumerationFacet_t2156689038 *)((XmlSchemaEnumerationFacet_t2156689038 *)IsInstClass((RuntimeObject*)L_22, XmlSchemaEnumerationFacet_t2156689038_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); goto IL_0093; } IL_0092: { G_B12_0 = 1; } IL_0093: { return (bool)G_B12_0; } IL_0094: { goto IL_0099; } IL_0099: { return (bool)0; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeRestriction::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeRestriction_Validate_m2375296915 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_Validate_m2375296915_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleTypeRestriction_t3925451115 * V_0 = NULL; XmlSchemaSimpleTypeContent_t599285223 * V_1 = NULL; int32_t V_2 = 0; ArrayList_t2718874744 * V_3 = NULL; ArrayList_t2718874744 * V_4 = NULL; int32_t V_5 = 0; XmlSchemaFacet_t1906017689 * V_6 = NULL; XmlSchemaEnumerationFacet_t2156689038 * V_7 = NULL; XmlSchemaPatternFacet_t3316004401 * V_8 = NULL; int32_t V_9 = 0; String_t* V_10 = NULL; StringBuilder_t * V_11 = NULL; int32_t V_12 = 0; int32_t V_13 = 0; String_t* V_14 = NULL; Regex_t3657309853 * V_15 = NULL; Exception_t * V_16 = NULL; Decimal_t2948259380 V_17; memset(&V_17, 0, sizeof(V_17)); StringU5BU5D_t1281789340* V_18 = NULL; Il2CppChar V_19 = 0x0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { ValidationEventHandler_t791314227 * L_4 = ___h0; XmlSchema_t3742557897 * L_5 = ___schema1; XmlSchemaSimpleTypeRestriction_ValidateActualType_m3602917459(__this, L_4, L_5, /*hidden argument*/NULL); Decimal_t2948259380 L_6; memset(&L_6, 0, sizeof(L_6)); Decimal__ctor_m1256289983((&L_6), (-1), /*hidden argument*/NULL); Decimal_t2948259380 L_7 = L_6; V_17 = L_7; __this->set_totalDigitsFacet_27(L_7); Decimal_t2948259380 L_8 = V_17; Decimal_t2948259380 L_9 = L_8; V_17 = L_9; __this->set_fractionDigitsFacet_26(L_9); Decimal_t2948259380 L_10 = V_17; Decimal_t2948259380 L_11 = L_10; V_17 = L_11; __this->set_minLengthFacet_25(L_11); Decimal_t2948259380 L_12 = V_17; Decimal_t2948259380 L_13 = L_12; V_17 = L_13; __this->set_maxLengthFacet_24(L_13); Decimal_t2948259380 L_14 = V_17; __this->set_lengthFacet_23(L_14); V_0 = (XmlSchemaSimpleTypeRestriction_t3925451115 *)NULL; RuntimeObject * L_15 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_15, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))) { goto IL_0082; } } { RuntimeObject * L_16 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); NullCheck(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_16, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))); XmlSchemaSimpleTypeContent_t599285223 * L_17 = XmlSchemaSimpleType_get_Content_m2306047784(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_16, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_17; XmlSchemaSimpleTypeContent_t599285223 * L_18 = V_1; V_0 = ((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_18, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)); } IL_0082: { XmlSchemaSimpleTypeRestriction_t3925451115 * L_19 = V_0; if (!L_19) { goto IL_0100; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_20 = V_0; NullCheck(L_20); int32_t L_21 = L_20->get_fixedFacets_32(); __this->set_fixedFacets_32(L_21); XmlSchemaSimpleTypeRestriction_t3925451115 * L_22 = V_0; NullCheck(L_22); Decimal_t2948259380 L_23 = L_22->get_lengthFacet_23(); __this->set_lengthFacet_23(L_23); XmlSchemaSimpleTypeRestriction_t3925451115 * L_24 = V_0; NullCheck(L_24); Decimal_t2948259380 L_25 = L_24->get_maxLengthFacet_24(); __this->set_maxLengthFacet_24(L_25); XmlSchemaSimpleTypeRestriction_t3925451115 * L_26 = V_0; NullCheck(L_26); Decimal_t2948259380 L_27 = L_26->get_minLengthFacet_25(); __this->set_minLengthFacet_25(L_27); XmlSchemaSimpleTypeRestriction_t3925451115 * L_28 = V_0; NullCheck(L_28); Decimal_t2948259380 L_29 = L_28->get_fractionDigitsFacet_26(); __this->set_fractionDigitsFacet_26(L_29); XmlSchemaSimpleTypeRestriction_t3925451115 * L_30 = V_0; NullCheck(L_30); Decimal_t2948259380 L_31 = L_30->get_totalDigitsFacet_27(); __this->set_totalDigitsFacet_27(L_31); XmlSchemaSimpleTypeRestriction_t3925451115 * L_32 = V_0; NullCheck(L_32); RuntimeObject * L_33 = L_32->get_maxInclusiveFacet_28(); __this->set_maxInclusiveFacet_28(L_33); XmlSchemaSimpleTypeRestriction_t3925451115 * L_34 = V_0; NullCheck(L_34); RuntimeObject * L_35 = L_34->get_maxExclusiveFacet_29(); __this->set_maxExclusiveFacet_29(L_35); XmlSchemaSimpleTypeRestriction_t3925451115 * L_36 = V_0; NullCheck(L_36); RuntimeObject * L_37 = L_36->get_minInclusiveFacet_30(); __this->set_minInclusiveFacet_30(L_37); XmlSchemaSimpleTypeRestriction_t3925451115 * L_38 = V_0; NullCheck(L_38); RuntimeObject * L_39 = L_38->get_minExclusiveFacet_31(); __this->set_minExclusiveFacet_31(L_39); } IL_0100: { V_18 = (StringU5BU5D_t1281789340*)NULL; __this->set_patternFacetValues_21((StringU5BU5D_t1281789340*)NULL); StringU5BU5D_t1281789340* L_40 = V_18; __this->set_enumarationFacetValues_20(L_40); __this->set_rexPatterns_22((RegexU5BU5D_t1561692752*)NULL); V_2 = 0; V_3 = (ArrayList_t2718874744 *)NULL; V_4 = (ArrayList_t2718874744 *)NULL; V_5 = 0; goto IL_0387; } IL_0128: { XmlSchemaObjectCollection_t1064819932 * L_41 = __this->get_facets_19(); int32_t L_42 = V_5; NullCheck(L_41); XmlSchemaObject_t1315720168 * L_43 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_41, L_42); V_6 = ((XmlSchemaFacet_t1906017689 *)IsInstClass((RuntimeObject*)L_43, XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var)); XmlSchemaFacet_t1906017689 * L_44 = V_6; if (!L_44) { goto IL_0178; } } { XmlSchemaFacet_t1906017689 * L_45 = V_6; bool L_46 = XmlSchemaSimpleTypeRestriction_IsAllowedFacet_m1070718703(__this, L_45, /*hidden argument*/NULL); if (L_46) { goto IL_0173; } } { XmlSchemaFacet_t1906017689 * L_47 = V_6; ValidationEventHandler_t791314227 * L_48 = ___h0; XmlSchemaFacet_t1906017689 * L_49 = V_6; NullCheck(L_49); int32_t L_50 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_49); int32_t L_51 = L_50; RuntimeObject * L_52 = Box(Facet_t1501039206_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m904156431(NULL /*static, unused*/, L_52, _stringLiteral2180999159, /*hidden argument*/NULL); NullCheck(L_47); XmlSchemaObject_error_m903554348(L_47, L_48, L_53, /*hidden argument*/NULL); goto IL_0381; } IL_0173: { goto IL_017d; } IL_0178: { goto IL_0381; } IL_017d: { XmlSchemaObjectCollection_t1064819932 * L_54 = __this->get_facets_19(); int32_t L_55 = V_5; NullCheck(L_54); XmlSchemaObject_t1315720168 * L_56 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_54, L_55); V_7 = ((XmlSchemaEnumerationFacet_t2156689038 *)IsInstClass((RuntimeObject*)L_56, XmlSchemaEnumerationFacet_t2156689038_il2cpp_TypeInfo_var)); XmlSchemaEnumerationFacet_t2156689038 * L_57 = V_7; if (!L_57) { goto IL_01b7; } } { ArrayList_t2718874744 * L_58 = V_3; if (L_58) { goto IL_01a4; } } { ArrayList_t2718874744 * L_59 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_59, /*hidden argument*/NULL); V_3 = L_59; } IL_01a4: { ArrayList_t2718874744 * L_60 = V_3; XmlSchemaEnumerationFacet_t2156689038 * L_61 = V_7; NullCheck(L_61); String_t* L_62 = XmlSchemaFacet_get_Value_m199684217(L_61, /*hidden argument*/NULL); NullCheck(L_60); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_60, L_62); goto IL_0381; } IL_01b7: { XmlSchemaObjectCollection_t1064819932 * L_63 = __this->get_facets_19(); int32_t L_64 = V_5; NullCheck(L_63); XmlSchemaObject_t1315720168 * L_65 = VirtFuncInvoker1< XmlSchemaObject_t1315720168 *, int32_t >::Invoke(29 /* System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaObjectCollection::get_Item(System.Int32) */, L_63, L_64); V_8 = ((XmlSchemaPatternFacet_t3316004401 *)IsInstClass((RuntimeObject*)L_65, XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var)); XmlSchemaPatternFacet_t3316004401 * L_66 = V_8; if (!L_66) { goto IL_01f4; } } { ArrayList_t2718874744 * L_67 = V_4; if (L_67) { goto IL_01e0; } } { ArrayList_t2718874744 * L_68 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_68, /*hidden argument*/NULL); V_4 = L_68; } IL_01e0: { ArrayList_t2718874744 * L_69 = V_4; XmlSchemaPatternFacet_t3316004401 * L_70 = V_8; NullCheck(L_70); String_t* L_71 = XmlSchemaFacet_get_Value_m199684217(L_70, /*hidden argument*/NULL); NullCheck(L_69); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_69, L_71); goto IL_0381; } IL_01f4: { int32_t L_72 = V_2; XmlSchemaFacet_t1906017689 * L_73 = V_6; NullCheck(L_73); int32_t L_74 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_73); if (!((int32_t)((int32_t)L_72&(int32_t)L_74))) { goto IL_022a; } } { XmlSchemaFacet_t1906017689 * L_75 = V_6; ValidationEventHandler_t791314227 * L_76 = ___h0; XmlSchemaFacet_t1906017689 * L_77 = V_6; NullCheck(L_77); int32_t L_78 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_77); int32_t L_79 = L_78; RuntimeObject * L_80 = Box(Facet_t1501039206_il2cpp_TypeInfo_var, &L_79); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_81 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral1123395259, L_80, _stringLiteral1718953828, /*hidden argument*/NULL); NullCheck(L_75); XmlSchemaObject_error_m903554348(L_75, L_76, L_81, /*hidden argument*/NULL); goto IL_0381; } IL_022a: { int32_t L_82 = V_2; XmlSchemaFacet_t1906017689 * L_83 = V_6; NullCheck(L_83); int32_t L_84 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_83); V_2 = ((int32_t)((int32_t)L_82|(int32_t)L_84)); XmlSchemaFacet_t1906017689 * L_85 = V_6; if (!((XmlSchemaLengthFacet_t4286280832 *)IsInstClass((RuntimeObject*)L_85, XmlSchemaLengthFacet_t4286280832_il2cpp_TypeInfo_var))) { goto IL_0254; } } { XmlSchemaFacet_t1906017689 * L_86 = V_6; int32_t L_87 = V_2; ValidationEventHandler_t791314227 * L_88 = ___h0; XmlSchemaSimpleTypeRestriction_checkLengthFacet_m552154258(__this, ((XmlSchemaLengthFacet_t4286280832 *)CastclassClass((RuntimeObject*)L_86, XmlSchemaLengthFacet_t4286280832_il2cpp_TypeInfo_var)), L_87, L_88, /*hidden argument*/NULL); goto IL_0361; } IL_0254: { XmlSchemaFacet_t1906017689 * L_89 = V_6; if (!((XmlSchemaMaxLengthFacet_t2192171319 *)IsInstClass((RuntimeObject*)L_89, XmlSchemaMaxLengthFacet_t2192171319_il2cpp_TypeInfo_var))) { goto IL_0274; } } { XmlSchemaFacet_t1906017689 * L_90 = V_6; int32_t L_91 = V_2; ValidationEventHandler_t791314227 * L_92 = ___h0; XmlSchemaSimpleTypeRestriction_checkMaxLengthFacet_m1519094515(__this, ((XmlSchemaMaxLengthFacet_t2192171319 *)CastclassClass((RuntimeObject*)L_90, XmlSchemaMaxLengthFacet_t2192171319_il2cpp_TypeInfo_var)), L_91, L_92, /*hidden argument*/NULL); goto IL_0361; } IL_0274: { XmlSchemaFacet_t1906017689 * L_93 = V_6; if (!((XmlSchemaMinLengthFacet_t686585762 *)IsInstClass((RuntimeObject*)L_93, XmlSchemaMinLengthFacet_t686585762_il2cpp_TypeInfo_var))) { goto IL_0294; } } { XmlSchemaFacet_t1906017689 * L_94 = V_6; int32_t L_95 = V_2; ValidationEventHandler_t791314227 * L_96 = ___h0; XmlSchemaSimpleTypeRestriction_checkMinLengthFacet_m3798454509(__this, ((XmlSchemaMinLengthFacet_t686585762 *)CastclassClass((RuntimeObject*)L_94, XmlSchemaMinLengthFacet_t686585762_il2cpp_TypeInfo_var)), L_95, L_96, /*hidden argument*/NULL); goto IL_0361; } IL_0294: { XmlSchemaFacet_t1906017689 * L_97 = V_6; if (!((XmlSchemaMinInclusiveFacet_t18629333 *)IsInstClass((RuntimeObject*)L_97, XmlSchemaMinInclusiveFacet_t18629333_il2cpp_TypeInfo_var))) { goto IL_02b9; } } { XmlSchemaFacet_t1906017689 * L_98 = V_6; RuntimeObject ** L_99 = __this->get_address_of_minInclusiveFacet_30(); ValidationEventHandler_t791314227 * L_100 = ___h0; XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245(__this, ((XmlSchemaMinInclusiveFacet_t18629333 *)CastclassClass((RuntimeObject*)L_98, XmlSchemaMinInclusiveFacet_t18629333_il2cpp_TypeInfo_var)), L_99, L_100, /*hidden argument*/NULL); goto IL_0361; } IL_02b9: { XmlSchemaFacet_t1906017689 * L_101 = V_6; if (!((XmlSchemaMaxInclusiveFacet_t719708644 *)IsInstClass((RuntimeObject*)L_101, XmlSchemaMaxInclusiveFacet_t719708644_il2cpp_TypeInfo_var))) { goto IL_02de; } } { XmlSchemaFacet_t1906017689 * L_102 = V_6; RuntimeObject ** L_103 = __this->get_address_of_maxInclusiveFacet_28(); ValidationEventHandler_t791314227 * L_104 = ___h0; XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245(__this, ((XmlSchemaMaxInclusiveFacet_t719708644 *)CastclassClass((RuntimeObject*)L_102, XmlSchemaMaxInclusiveFacet_t719708644_il2cpp_TypeInfo_var)), L_103, L_104, /*hidden argument*/NULL); goto IL_0361; } IL_02de: { XmlSchemaFacet_t1906017689 * L_105 = V_6; if (!((XmlSchemaMinExclusiveFacet_t85871952 *)IsInstClass((RuntimeObject*)L_105, XmlSchemaMinExclusiveFacet_t85871952_il2cpp_TypeInfo_var))) { goto IL_0303; } } { XmlSchemaFacet_t1906017689 * L_106 = V_6; RuntimeObject ** L_107 = __this->get_address_of_minExclusiveFacet_31(); ValidationEventHandler_t791314227 * L_108 = ___h0; XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245(__this, ((XmlSchemaMinExclusiveFacet_t85871952 *)CastclassClass((RuntimeObject*)L_106, XmlSchemaMinExclusiveFacet_t85871952_il2cpp_TypeInfo_var)), L_107, L_108, /*hidden argument*/NULL); goto IL_0361; } IL_0303: { XmlSchemaFacet_t1906017689 * L_109 = V_6; if (!((XmlSchemaMaxExclusiveFacet_t786951263 *)IsInstClass((RuntimeObject*)L_109, XmlSchemaMaxExclusiveFacet_t786951263_il2cpp_TypeInfo_var))) { goto IL_0328; } } { XmlSchemaFacet_t1906017689 * L_110 = V_6; RuntimeObject ** L_111 = __this->get_address_of_maxExclusiveFacet_29(); ValidationEventHandler_t791314227 * L_112 = ___h0; XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245(__this, ((XmlSchemaMaxExclusiveFacet_t786951263 *)CastclassClass((RuntimeObject*)L_110, XmlSchemaMaxExclusiveFacet_t786951263_il2cpp_TypeInfo_var)), L_111, L_112, /*hidden argument*/NULL); goto IL_0361; } IL_0328: { XmlSchemaFacet_t1906017689 * L_113 = V_6; if (!((XmlSchemaFractionDigitsFacet_t2589598443 *)IsInstClass((RuntimeObject*)L_113, XmlSchemaFractionDigitsFacet_t2589598443_il2cpp_TypeInfo_var))) { goto IL_0347; } } { XmlSchemaFacet_t1906017689 * L_114 = V_6; ValidationEventHandler_t791314227 * L_115 = ___h0; XmlSchemaSimpleTypeRestriction_checkFractionDigitsFacet_m4137464669(__this, ((XmlSchemaFractionDigitsFacet_t2589598443 *)CastclassClass((RuntimeObject*)L_114, XmlSchemaFractionDigitsFacet_t2589598443_il2cpp_TypeInfo_var)), L_115, /*hidden argument*/NULL); goto IL_0361; } IL_0347: { XmlSchemaFacet_t1906017689 * L_116 = V_6; if (!((XmlSchemaTotalDigitsFacet_t297930215 *)IsInstClass((RuntimeObject*)L_116, XmlSchemaTotalDigitsFacet_t297930215_il2cpp_TypeInfo_var))) { goto IL_0361; } } { XmlSchemaFacet_t1906017689 * L_117 = V_6; ValidationEventHandler_t791314227 * L_118 = ___h0; XmlSchemaSimpleTypeRestriction_checkTotalDigitsFacet_m1136086706(__this, ((XmlSchemaTotalDigitsFacet_t297930215 *)CastclassClass((RuntimeObject*)L_117, XmlSchemaTotalDigitsFacet_t297930215_il2cpp_TypeInfo_var)), L_118, /*hidden argument*/NULL); } IL_0361: { XmlSchemaFacet_t1906017689 * L_119 = V_6; NullCheck(L_119); bool L_120 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.Xml.Schema.XmlSchemaFacet::get_IsFixed() */, L_119); if (!L_120) { goto IL_0381; } } { int32_t L_121 = __this->get_fixedFacets_32(); XmlSchemaFacet_t1906017689 * L_122 = V_6; NullCheck(L_122); int32_t L_123 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_122); __this->set_fixedFacets_32(((int32_t)((int32_t)L_121|(int32_t)L_123))); } IL_0381: { int32_t L_124 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_124, (int32_t)1)); } IL_0387: { int32_t L_125 = V_5; XmlSchemaObjectCollection_t1064819932 * L_126 = __this->get_facets_19(); NullCheck(L_126); int32_t L_127 = CollectionBase_get_Count_m1708965601(L_126, /*hidden argument*/NULL); if ((((int32_t)L_125) < ((int32_t)L_127))) { goto IL_0128; } } { ArrayList_t2718874744 * L_128 = V_3; if (!L_128) { goto IL_03ba; } } { ArrayList_t2718874744 * L_129 = V_3; RuntimeTypeHandle_t3027515415 L_130 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_131 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_130, /*hidden argument*/NULL); NullCheck(L_129); RuntimeArray * L_132 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_129, L_131); __this->set_enumarationFacetValues_20(((StringU5BU5D_t1281789340*)IsInst((RuntimeObject*)L_132, StringU5BU5D_t1281789340_il2cpp_TypeInfo_var))); } IL_03ba: { ArrayList_t2718874744 * L_133 = V_4; if (!L_133) { goto IL_055a; } } { ArrayList_t2718874744 * L_134 = V_4; RuntimeTypeHandle_t3027515415 L_135 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_136 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_135, /*hidden argument*/NULL); NullCheck(L_134); RuntimeArray * L_137 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_134, L_136); __this->set_patternFacetValues_21(((StringU5BU5D_t1281789340*)IsInst((RuntimeObject*)L_137, StringU5BU5D_t1281789340_il2cpp_TypeInfo_var))); ArrayList_t2718874744 * L_138 = V_4; NullCheck(L_138); int32_t L_139 = VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_138); __this->set_rexPatterns_22(((RegexU5BU5D_t1561692752*)SZArrayNew(RegexU5BU5D_t1561692752_il2cpp_TypeInfo_var, (uint32_t)L_139))); V_9 = 0; goto IL_054b; } IL_03f7: try { // begin try (depth: 1) { StringU5BU5D_t1281789340* L_140 = __this->get_patternFacetValues_21(); int32_t L_141 = V_9; NullCheck(L_140); int32_t L_142 = L_141; String_t* L_143 = (L_140)->GetAt(static_cast<il2cpp_array_size_t>(L_142)); V_10 = L_143; V_11 = (StringBuilder_t *)NULL; V_12 = 0; V_13 = 0; goto IL_04d5; } IL_0410: { String_t* L_144 = V_10; int32_t L_145 = V_13; NullCheck(L_144); Il2CppChar L_146 = String_get_Chars_m2986988803(L_144, L_145, /*hidden argument*/NULL); if ((!(((uint32_t)L_146) == ((uint32_t)((int32_t)92))))) { goto IL_04cf; } } IL_0420: { String_t* L_147 = V_10; NullCheck(L_147); int32_t L_148 = String_get_Length_m3847582255(L_147, /*hidden argument*/NULL); int32_t L_149 = V_9; if ((((int32_t)L_148) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_149, (int32_t)1))))) { goto IL_04cf; } } IL_0430: { V_14 = (String_t*)NULL; String_t* L_150 = V_10; int32_t L_151 = V_13; NullCheck(L_150); Il2CppChar L_152 = String_get_Chars_m2986988803(L_150, ((int32_t)il2cpp_codegen_add((int32_t)L_151, (int32_t)1)), /*hidden argument*/NULL); V_19 = L_152; Il2CppChar L_153 = V_19; if ((((int32_t)L_153) == ((int32_t)((int32_t)67)))) { goto IL_048d; } } IL_0449: { Il2CppChar L_154 = V_19; if ((((int32_t)L_154) == ((int32_t)((int32_t)73)))) { goto IL_0475; } } IL_0452: { Il2CppChar L_155 = V_19; if ((((int32_t)L_155) == ((int32_t)((int32_t)99)))) { goto IL_0481; } } IL_045b: { Il2CppChar L_156 = V_19; if ((((int32_t)L_156) == ((int32_t)((int32_t)105)))) { goto IL_0469; } } IL_0464: { goto IL_0499; } IL_0469: { V_14 = _stringLiteral283470520; goto IL_0499; } IL_0475: { V_14 = _stringLiteral3425514694; goto IL_0499; } IL_0481: { V_14 = _stringLiteral2884745856; goto IL_0499; } IL_048d: { V_14 = _stringLiteral2746146912; goto IL_0499; } IL_0499: { String_t* L_157 = V_14; if (!L_157) { goto IL_04cf; } } IL_04a0: { StringBuilder_t * L_158 = V_11; if (L_158) { goto IL_04ae; } } IL_04a7: { StringBuilder_t * L_159 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m3121283359(L_159, /*hidden argument*/NULL); V_11 = L_159; } IL_04ae: { StringBuilder_t * L_160 = V_11; String_t* L_161 = V_10; int32_t L_162 = V_12; int32_t L_163 = V_13; int32_t L_164 = V_12; NullCheck(L_160); StringBuilder_Append_m3214161208(L_160, L_161, L_162, ((int32_t)il2cpp_codegen_subtract((int32_t)L_163, (int32_t)L_164)), /*hidden argument*/NULL); StringBuilder_t * L_165 = V_11; String_t* L_166 = V_14; NullCheck(L_165); StringBuilder_Append_m1965104174(L_165, L_166, /*hidden argument*/NULL); int32_t L_167 = V_13; V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_167, (int32_t)2)); } IL_04cf: { int32_t L_168 = V_13; V_13 = ((int32_t)il2cpp_codegen_add((int32_t)L_168, (int32_t)1)); } IL_04d5: { int32_t L_169 = V_13; String_t* L_170 = V_10; NullCheck(L_170); int32_t L_171 = String_get_Length_m3847582255(L_170, /*hidden argument*/NULL); if ((((int32_t)L_169) < ((int32_t)L_171))) { goto IL_0410; } } IL_04e3: { StringBuilder_t * L_172 = V_11; if (!L_172) { goto IL_0509; } } IL_04ea: { StringBuilder_t * L_173 = V_11; String_t* L_174 = V_10; int32_t L_175 = V_12; String_t* L_176 = V_10; NullCheck(L_176); int32_t L_177 = String_get_Length_m3847582255(L_176, /*hidden argument*/NULL); int32_t L_178 = V_12; NullCheck(L_173); StringBuilder_Append_m3214161208(L_173, L_174, L_175, ((int32_t)il2cpp_codegen_subtract((int32_t)L_177, (int32_t)L_178)), /*hidden argument*/NULL); StringBuilder_t * L_179 = V_11; NullCheck(L_179); String_t* L_180 = StringBuilder_ToString_m3317489284(L_179, /*hidden argument*/NULL); V_10 = L_180; } IL_0509: { String_t* L_181 = V_10; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_182 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral3452614642, L_181, _stringLiteral3452614524, /*hidden argument*/NULL); Regex_t3657309853 * L_183 = (Regex_t3657309853 *)il2cpp_codegen_object_new(Regex_t3657309853_il2cpp_TypeInfo_var); Regex__ctor_m3948448025(L_183, L_182, /*hidden argument*/NULL); V_15 = L_183; RegexU5BU5D_t1561692752* L_184 = __this->get_rexPatterns_22(); int32_t L_185 = V_9; Regex_t3657309853 * L_186 = V_15; NullCheck(L_184); ArrayElementTypeCheck (L_184, L_186); (L_184)->SetAt(static_cast<il2cpp_array_size_t>(L_185), (Regex_t3657309853 *)L_186); goto IL_0545; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0531; throw e; } CATCH_0531: { // begin catch(System.Exception) V_16 = ((Exception_t *)__exception_local); ValidationEventHandler_t791314227 * L_187 = ___h0; Exception_t * L_188 = V_16; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_187, _stringLiteral1028670485, L_188, /*hidden argument*/NULL); goto IL_0545; } // end catch (depth: 1) IL_0545: { int32_t L_189 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_189, (int32_t)1)); } IL_054b: { int32_t L_190 = V_9; StringU5BU5D_t1281789340* L_191 = __this->get_patternFacetValues_21(); NullCheck(L_191); if ((((int32_t)L_190) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_191)->max_length))))))) { goto IL_03f7; } } IL_055a: { XmlSchema_t3742557897 * L_192 = ___schema1; NullCheck(L_192); Guid_t L_193 = ((XmlSchemaObject_t1315720168 *)L_192)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_193); int32_t L_194 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_194; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateActualType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaSimpleTypeRestriction_ValidateActualType_m3602917459 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { { ValidationEventHandler_t791314227 * L_0 = ___h0; XmlSchema_t3742557897 * L_1 = ___schema1; XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265(__this, L_0, L_1, (bool)1, /*hidden argument*/NULL); return; } } // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::GetActualType(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Boolean) extern "C" RuntimeObject * XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, bool ___validate2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_GetActualType_m1745053265_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; XmlSchemaSimpleType_t2678868104 * V_1 = NULL; { V_0 = NULL; XmlSchemaSimpleType_t2678868104 * L_0 = __this->get_baseType_17(); V_1 = L_0; XmlSchemaSimpleType_t2678868104 * L_1 = V_1; if (L_1) { goto IL_0021; } } { XmlSchema_t3742557897 * L_2 = ___schema1; XmlQualifiedName_t2760654312 * L_3 = __this->get_baseTypeName_18(); NullCheck(L_2); XmlSchemaType_t2033747345 * L_4 = XmlSchema_FindSchemaType_m3920891232(L_2, L_3, /*hidden argument*/NULL); V_1 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_4, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); } IL_0021: { XmlSchemaSimpleType_t2678868104 * L_5 = V_1; if (!L_5) { goto IL_0049; } } { bool L_6 = ___validate2; if (!L_6) { goto IL_0042; } } { int32_t L_7 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_8 = V_1; ValidationEventHandler_t791314227 * L_9 = ___h0; XmlSchema_t3742557897 * L_10 = ___schema1; NullCheck(L_8); int32_t L_11 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_8, L_9, L_10); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_11))); } IL_0042: { XmlSchemaSimpleType_t2678868104 * L_12 = V_1; V_0 = L_12; goto IL_0109; } IL_0049: { XmlQualifiedName_t2760654312 * L_13 = __this->get_baseTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_14 = ((XmlSchemaComplexType_t3740801802_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var))->get_AnyTypeName_43(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_15 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0069; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_16 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); V_0 = L_16; goto IL_0109; } IL_0069: { XmlQualifiedName_t2760654312 * L_17 = __this->get_baseTypeName_18(); NullCheck(L_17); String_t* L_18 = XmlQualifiedName_get_Namespace_m3957593392(L_17, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_19 = String_op_Equality_m920492651(NULL /*static, unused*/, L_18, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_19) { goto IL_009d; } } { XmlQualifiedName_t2760654312 * L_20 = __this->get_baseTypeName_18(); NullCheck(L_20); String_t* L_21 = XmlQualifiedName_get_Namespace_m3957593392(L_20, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_22 = String_op_Equality_m920492651(NULL /*static, unused*/, L_21, _stringLiteral91702, /*hidden argument*/NULL); if (!L_22) { goto IL_00d1; } } IL_009d: { XmlQualifiedName_t2760654312 * L_23 = __this->get_baseTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_24 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_23, /*hidden argument*/NULL); V_0 = L_24; RuntimeObject * L_25 = V_0; if (L_25) { goto IL_00cc; } } { bool L_26 = ___validate2; if (!L_26) { goto IL_00cc; } } { ValidationEventHandler_t791314227 * L_27 = ___h0; XmlQualifiedName_t2760654312 * L_28 = __this->get_baseTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral3470389865, L_28, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_27, L_29, /*hidden argument*/NULL); } IL_00cc: { goto IL_0109; } IL_00d1: { XmlSchema_t3742557897 * L_30 = ___schema1; XmlQualifiedName_t2760654312 * L_31 = __this->get_baseTypeName_18(); NullCheck(L_31); String_t* L_32 = XmlQualifiedName_get_Namespace_m3957593392(L_31, /*hidden argument*/NULL); NullCheck(L_30); bool L_33 = XmlSchema_IsNamespaceAbsent_m3899863769(L_30, L_32, /*hidden argument*/NULL); if (L_33) { goto IL_0109; } } { bool L_34 = ___validate2; if (!L_34) { goto IL_0109; } } { ValidationEventHandler_t791314227 * L_35 = ___h0; XmlQualifiedName_t2760654312 * L_36 = __this->get_baseTypeName_18(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_37 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral508009477, L_36, _stringLiteral1962955403, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_35, L_37, /*hidden argument*/NULL); } IL_0109: { RuntimeObject * L_38 = V_0; return L_38; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkTotalDigitsFacet(System.Xml.Schema.XmlSchemaTotalDigitsFacet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkTotalDigitsFacet_m1136086706 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaTotalDigitsFacet_t297930215 * ___totf0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkTotalDigitsFacet_m1136086706_MetadataUsageId); s_Il2CppMethodInitialized = true; } Decimal_t2948259380 V_0; memset(&V_0, 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaTotalDigitsFacet_t297930215 * L_0 = ___totf0; if (!L_0) { goto IL_00df; } } IL_0006: try { // begin try (depth: 1) { XmlSchemaTotalDigitsFacet_t297930215 * L_1 = ___totf0; NullCheck(L_1); String_t* L_2 = XmlSchemaFacet_get_Value_m199684217(L_1, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = String_Trim_m923598732(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_4 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_lengthStyle_33(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_5 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_6 = Decimal_Parse_m942471224(NULL /*static, unused*/, L_3, L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; Decimal_t2948259380 L_7 = V_0; Decimal_t2948259380 L_8; memset(&L_8, 0, sizeof(L_8)); Decimal__ctor_m1256289983((&L_8), 0, /*hidden argument*/NULL); bool L_9 = Decimal_op_LessThanOrEqual_m3936545906(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0057; } } IL_0032: { XmlSchemaTotalDigitsFacet_t297930215 * L_10 = ___totf0; ValidationEventHandler_t791314227 * L_11 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_12 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_13 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)); Decimal_t2948259380 L_14 = V_0; Decimal_t2948259380 L_15 = L_14; RuntimeObject * L_16 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_15); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_16); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_17 = String_Format_m1881875187(NULL /*static, unused*/, L_12, _stringLiteral2590212315, L_13, /*hidden argument*/NULL); NullCheck(L_10); XmlSchemaObject_error_m903554348(L_10, L_11, L_17, /*hidden argument*/NULL); } IL_0057: { Decimal_t2948259380 L_18 = __this->get_totalDigitsFacet_27(); Decimal_t2948259380 L_19; memset(&L_19, 0, sizeof(L_19)); Decimal__ctor_m1256289983((&L_19), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_20 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_18, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_00b1; } } IL_006d: { Decimal_t2948259380 L_21 = V_0; Decimal_t2948259380 L_22 = __this->get_totalDigitsFacet_27(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_23 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00b1; } } IL_007e: { XmlSchemaTotalDigitsFacet_t297930215 * L_24 = ___totf0; ValidationEventHandler_t791314227 * L_25 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_26 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_27 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); Decimal_t2948259380 L_28 = V_0; Decimal_t2948259380 L_29 = L_28; RuntimeObject * L_30 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_29); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_30); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_30); ObjectU5BU5D_t2843939325* L_31 = L_27; Decimal_t2948259380 L_32 = __this->get_totalDigitsFacet_27(); Decimal_t2948259380 L_33 = L_32; RuntimeObject * L_34 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_33); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_34); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_35 = String_Format_m1881875187(NULL /*static, unused*/, L_26, _stringLiteral1172177825, L_31, /*hidden argument*/NULL); NullCheck(L_24); XmlSchemaObject_error_m903554348(L_24, L_25, L_35, /*hidden argument*/NULL); } IL_00b1: { Decimal_t2948259380 L_36 = V_0; __this->set_totalDigitsFacet_27(L_36); goto IL_00df; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00bd; throw e; } CATCH_00bd: { // begin catch(System.FormatException) XmlSchemaTotalDigitsFacet_t297930215 * L_37 = ___totf0; ValidationEventHandler_t791314227 * L_38 = ___h1; XmlSchemaTotalDigitsFacet_t297930215 * L_39 = ___totf0; NullCheck(L_39); String_t* L_40 = XmlSchemaFacet_get_Value_m199684217(L_39, /*hidden argument*/NULL); NullCheck(L_40); String_t* L_41 = String_Trim_m923598732(L_40, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral2192880968, L_41, /*hidden argument*/NULL); NullCheck(L_37); XmlSchemaObject_error_m903554348(L_37, L_38, L_42, /*hidden argument*/NULL); goto IL_00df; } // end catch (depth: 1) IL_00df: { return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkFractionDigitsFacet(System.Xml.Schema.XmlSchemaFractionDigitsFacet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkFractionDigitsFacet_m4137464669 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFractionDigitsFacet_t2589598443 * ___fracf0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkFractionDigitsFacet_m4137464669_MetadataUsageId); s_Il2CppMethodInitialized = true; } Decimal_t2948259380 V_0; memset(&V_0, 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaFractionDigitsFacet_t2589598443 * L_0 = ___fracf0; if (!L_0) { goto IL_00df; } } IL_0006: try { // begin try (depth: 1) { XmlSchemaFractionDigitsFacet_t2589598443 * L_1 = ___fracf0; NullCheck(L_1); String_t* L_2 = XmlSchemaFacet_get_Value_m199684217(L_1, /*hidden argument*/NULL); NullCheck(L_2); String_t* L_3 = String_Trim_m923598732(L_2, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_4 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_lengthStyle_33(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_5 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_6 = Decimal_Parse_m942471224(NULL /*static, unused*/, L_3, L_4, L_5, /*hidden argument*/NULL); V_0 = L_6; Decimal_t2948259380 L_7 = V_0; Decimal_t2948259380 L_8; memset(&L_8, 0, sizeof(L_8)); Decimal__ctor_m1256289983((&L_8), 0, /*hidden argument*/NULL); bool L_9 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_7, L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_0057; } } IL_0032: { XmlSchemaFractionDigitsFacet_t2589598443 * L_10 = ___fracf0; ValidationEventHandler_t791314227 * L_11 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_12 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_13 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)); Decimal_t2948259380 L_14 = V_0; Decimal_t2948259380 L_15 = L_14; RuntimeObject * L_16 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_15); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_16); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_17 = String_Format_m1881875187(NULL /*static, unused*/, L_12, _stringLiteral1726927879, L_13, /*hidden argument*/NULL); NullCheck(L_10); XmlSchemaObject_error_m903554348(L_10, L_11, L_17, /*hidden argument*/NULL); } IL_0057: { Decimal_t2948259380 L_18 = __this->get_fractionDigitsFacet_26(); Decimal_t2948259380 L_19; memset(&L_19, 0, sizeof(L_19)); Decimal__ctor_m1256289983((&L_19), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_20 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_18, L_19, /*hidden argument*/NULL); if (!L_20) { goto IL_00b1; } } IL_006d: { Decimal_t2948259380 L_21 = V_0; Decimal_t2948259380 L_22 = __this->get_fractionDigitsFacet_26(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_23 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00b1; } } IL_007e: { XmlSchemaFractionDigitsFacet_t2589598443 * L_24 = ___fracf0; ValidationEventHandler_t791314227 * L_25 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_26 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_27 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); Decimal_t2948259380 L_28 = V_0; Decimal_t2948259380 L_29 = L_28; RuntimeObject * L_30 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_29); NullCheck(L_27); ArrayElementTypeCheck (L_27, L_30); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_30); ObjectU5BU5D_t2843939325* L_31 = L_27; Decimal_t2948259380 L_32 = __this->get_fractionDigitsFacet_26(); Decimal_t2948259380 L_33 = L_32; RuntimeObject * L_34 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_33); NullCheck(L_31); ArrayElementTypeCheck (L_31, L_34); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_35 = String_Format_m1881875187(NULL /*static, unused*/, L_26, _stringLiteral753924833, L_31, /*hidden argument*/NULL); NullCheck(L_24); XmlSchemaObject_error_m903554348(L_24, L_25, L_35, /*hidden argument*/NULL); } IL_00b1: { Decimal_t2948259380 L_36 = V_0; __this->set_fractionDigitsFacet_26(L_36); goto IL_00df; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00bd; throw e; } CATCH_00bd: { // begin catch(System.FormatException) XmlSchemaFractionDigitsFacet_t2589598443 * L_37 = ___fracf0; ValidationEventHandler_t791314227 * L_38 = ___h1; XmlSchemaFractionDigitsFacet_t2589598443 * L_39 = ___fracf0; NullCheck(L_39); String_t* L_40 = XmlSchemaFacet_get_Value_m199684217(L_39, /*hidden argument*/NULL); NullCheck(L_40); String_t* L_41 = String_Trim_m923598732(L_40, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral1240579558, L_41, /*hidden argument*/NULL); NullCheck(L_37); XmlSchemaObject_error_m903554348(L_37, L_38, L_42, /*hidden argument*/NULL); goto IL_00df; } // end catch (depth: 1) IL_00df: { return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMinMaxFacet(System.Xml.Schema.XmlSchemaFacet,System.Object&,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaFacet_t1906017689 * ___facet0, RuntimeObject ** ___baseFacet1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkMinMaxFacet_m1724233245_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; XsdAnySimpleType_t1257864485 * V_1 = NULL; { XmlSchemaFacet_t1906017689 * L_0 = ___facet0; NullCheck(L_0); String_t* L_1 = XmlSchemaFacet_get_Value_m199684217(L_0, /*hidden argument*/NULL); RuntimeObject * L_2 = XmlSchemaSimpleTypeRestriction_ValidateValueWithDatatype_m3322151548(__this, L_1, /*hidden argument*/NULL); V_0 = L_2; RuntimeObject * L_3 = V_0; if (!L_3) { goto IL_007c; } } { int32_t L_4 = __this->get_fixedFacets_32(); XmlSchemaFacet_t1906017689 * L_5 = ___facet0; NullCheck(L_5); int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_5); if (!((int32_t)((int32_t)L_4&(int32_t)L_6))) { goto IL_0074; } } { RuntimeObject ** L_7 = ___baseFacet1; if (!(*((RuntimeObject **)L_7))) { goto IL_0074; } } { XsdAnySimpleType_t1257864485 * L_8 = XmlSchemaSimpleTypeRestriction_getDatatype_m687103007(__this, /*hidden argument*/NULL); V_1 = L_8; XsdAnySimpleType_t1257864485 * L_9 = V_1; RuntimeObject * L_10 = V_0; RuntimeObject ** L_11 = ___baseFacet1; NullCheck(L_9); int32_t L_12 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(10 /* Mono.Xml.Schema.XsdOrdering Mono.Xml.Schema.XsdAnySimpleType::Compare(System.Object,System.Object) */, L_9, L_10, (*((RuntimeObject **)L_11))); if (!L_12) { goto IL_0074; } } { XmlSchemaFacet_t1906017689 * L_13 = ___facet0; ValidationEventHandler_t791314227 * L_14 = ___h2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_15 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_16 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); XmlSchemaFacet_t1906017689 * L_17 = ___facet0; NullCheck(L_17); String_t* L_18 = XmlSchemaFacet_get_Value_m199684217(L_17, /*hidden argument*/NULL); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_18); ObjectU5BU5D_t2843939325* L_19 = L_16; XmlSchemaFacet_t1906017689 * L_20 = ___facet0; NullCheck(L_20); int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaFacet::get_ThisFacet() */, L_20); int32_t L_22 = L_21; RuntimeObject * L_23 = Box(Facet_t1501039206_il2cpp_TypeInfo_var, &L_22); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_23); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_23); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_24 = String_Format_m1881875187(NULL /*static, unused*/, L_15, _stringLiteral2549327768, L_19, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_error_m903554348(L_13, L_14, L_24, /*hidden argument*/NULL); } IL_0074: { RuntimeObject ** L_25 = ___baseFacet1; RuntimeObject * L_26 = V_0; *((RuntimeObject **)(L_25)) = (RuntimeObject *)L_26; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_25), (RuntimeObject *)L_26); goto IL_0093; } IL_007c: { XmlSchemaFacet_t1906017689 * L_27 = ___facet0; ValidationEventHandler_t791314227 * L_28 = ___h2; XmlSchemaFacet_t1906017689 * L_29 = ___facet0; NullCheck(L_29); String_t* L_30 = XmlSchemaFacet_get_Value_m199684217(L_29, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_31 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral3585617076, L_30, /*hidden argument*/NULL); NullCheck(L_27); XmlSchemaObject_error_m903554348(L_27, L_28, L_31, /*hidden argument*/NULL); } IL_0093: { return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkLengthFacet(System.Xml.Schema.XmlSchemaLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkLengthFacet_m552154258 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaLengthFacet_t4286280832 * ___lf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkLengthFacet_m552154258_MetadataUsageId); s_Il2CppMethodInitialized = true; } Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaLengthFacet_t4286280832 * L_0 = ___lf0; if (!L_0) { goto IL_009d; } } IL_0006: try { // begin try (depth: 1) { int32_t L_1 = ___facetsDefined1; if (!((int32_t)((int32_t)L_1&(int32_t)6))) { goto IL_001f; } } IL_000e: { XmlSchemaLengthFacet_t4286280832 * L_2 = ___lf0; ValidationEventHandler_t791314227 * L_3 = ___h2; NullCheck(L_2); XmlSchemaObject_error_m903554348(L_2, L_3, _stringLiteral4170909774, /*hidden argument*/NULL); goto IL_0076; } IL_001f: { XmlSchemaLengthFacet_t4286280832 * L_4 = ___lf0; NullCheck(L_4); String_t* L_5 = XmlSchemaFacet_get_Value_m199684217(L_4, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_6 = String_Trim_m923598732(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_7 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_lengthStyle_33(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_8 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_9 = Decimal_Parse_m942471224(NULL /*static, unused*/, L_6, L_7, L_8, /*hidden argument*/NULL); __this->set_lengthFacet_23(L_9); Decimal_t2948259380 L_10 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_11; memset(&L_11, 0, sizeof(L_11)); Decimal__ctor_m1256289983((&L_11), 0, /*hidden argument*/NULL); bool L_12 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_10, L_11, /*hidden argument*/NULL); if (!L_12) { goto IL_0076; } } IL_0055: { XmlSchemaLengthFacet_t4286280832 * L_13 = ___lf0; ValidationEventHandler_t791314227 * L_14 = ___h2; Decimal_t2948259380 L_15 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_16 = L_15; RuntimeObject * L_17 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_16); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_18 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral1229679628, L_17, _stringLiteral1775556457, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_error_m903554348(L_13, L_14, L_18, /*hidden argument*/NULL); } IL_0076: { goto IL_009d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_007b; throw e; } CATCH_007b: { // begin catch(System.FormatException) XmlSchemaLengthFacet_t4286280832 * L_19 = ___lf0; ValidationEventHandler_t791314227 * L_20 = ___h2; XmlSchemaLengthFacet_t4286280832 * L_21 = ___lf0; NullCheck(L_21); String_t* L_22 = XmlSchemaFacet_get_Value_m199684217(L_21, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_23 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral1229679628, L_22, _stringLiteral2442382986, /*hidden argument*/NULL); NullCheck(L_19); XmlSchemaObject_error_m903554348(L_19, L_20, L_23, /*hidden argument*/NULL); goto IL_009d; } // end catch (depth: 1) IL_009d: { return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMaxLengthFacet(System.Xml.Schema.XmlSchemaMaxLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMaxLengthFacet_m1519094515 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaMaxLengthFacet_t2192171319 * ___maxlf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkMaxLengthFacet_m1519094515_MetadataUsageId); s_Il2CppMethodInitialized = true; } Decimal_t2948259380 V_0; memset(&V_0, 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaMaxLengthFacet_t2192171319 * L_0 = ___maxlf0; if (!L_0) { goto IL_0191; } } IL_0006: try { // begin try (depth: 1) { int32_t L_1 = ___facetsDefined1; if (!((int32_t)((int32_t)L_1&(int32_t)1))) { goto IL_001f; } } IL_000e: { XmlSchemaMaxLengthFacet_t2192171319 * L_2 = ___maxlf0; ValidationEventHandler_t791314227 * L_3 = ___h2; NullCheck(L_2); XmlSchemaObject_error_m903554348(L_2, L_3, _stringLiteral4170909774, /*hidden argument*/NULL); goto IL_016a; } IL_001f: { XmlSchemaMaxLengthFacet_t2192171319 * L_4 = ___maxlf0; NullCheck(L_4); String_t* L_5 = XmlSchemaFacet_get_Value_m199684217(L_4, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_6 = String_Trim_m923598732(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_7 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_lengthStyle_33(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_8 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_9 = Decimal_Parse_m942471224(NULL /*static, unused*/, L_6, L_7, L_8, /*hidden argument*/NULL); V_0 = L_9; int32_t L_10 = __this->get_fixedFacets_32(); if (!((int32_t)((int32_t)L_10&(int32_t)4))) { goto IL_0090; } } IL_0047: { Decimal_t2948259380 L_11 = V_0; Decimal_t2948259380 L_12 = __this->get_maxLengthFacet_24(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_13 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0090; } } IL_0058: { XmlSchemaMaxLengthFacet_t2192171319 * L_14 = ___maxlf0; ValidationEventHandler_t791314227 * L_15 = ___h2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_16 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_17 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); XmlSchemaMaxLengthFacet_t2192171319 * L_18 = ___maxlf0; NullCheck(L_18); String_t* L_19 = XmlSchemaFacet_get_Value_m199684217(L_18, /*hidden argument*/NULL); NullCheck(L_19); String_t* L_20 = String_Trim_m923598732(L_19, /*hidden argument*/NULL); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_20); ObjectU5BU5D_t2843939325* L_21 = L_17; Decimal_t2948259380 L_22 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_23 = L_22; RuntimeObject * L_24 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_23); NullCheck(L_21); ArrayElementTypeCheck (L_21, L_24); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_24); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_25 = String_Format_m1881875187(NULL /*static, unused*/, L_16, _stringLiteral294320515, L_21, /*hidden argument*/NULL); NullCheck(L_14); XmlSchemaObject_error_m903554348(L_14, L_15, L_25, /*hidden argument*/NULL); } IL_0090: { Decimal_t2948259380 L_26 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_27; memset(&L_27, 0, sizeof(L_27)); Decimal__ctor_m1256289983((&L_27), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_28 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_26, L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_00f4; } } IL_00a6: { Decimal_t2948259380 L_29 = V_0; Decimal_t2948259380 L_30 = __this->get_maxLengthFacet_24(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_31 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_29, L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_00f4; } } IL_00b7: { XmlSchemaMaxLengthFacet_t2192171319 * L_32 = ___maxlf0; ValidationEventHandler_t791314227 * L_33 = ___h2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_34 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_35 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); XmlSchemaMaxLengthFacet_t2192171319 * L_36 = ___maxlf0; NullCheck(L_36); String_t* L_37 = XmlSchemaFacet_get_Value_m199684217(L_36, /*hidden argument*/NULL); NullCheck(L_37); String_t* L_38 = String_Trim_m923598732(L_37, /*hidden argument*/NULL); NullCheck(L_35); ArrayElementTypeCheck (L_35, L_38); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_38); ObjectU5BU5D_t2843939325* L_39 = L_35; Decimal_t2948259380 L_40 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_41 = L_40; RuntimeObject * L_42 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_41); NullCheck(L_39); ArrayElementTypeCheck (L_39, L_42); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_42); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_43 = String_Format_m1881875187(NULL /*static, unused*/, L_34, _stringLiteral540084440, L_39, /*hidden argument*/NULL); NullCheck(L_32); XmlSchemaObject_error_m903554348(L_32, L_33, L_43, /*hidden argument*/NULL); goto IL_00fb; } IL_00f4: { Decimal_t2948259380 L_44 = V_0; __this->set_maxLengthFacet_24(L_44); } IL_00fb: { Decimal_t2948259380 L_45 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_46; memset(&L_46, 0, sizeof(L_46)); Decimal__ctor_m1256289983((&L_46), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_47 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_45, L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_0132; } } IL_0111: { XmlSchemaMaxLengthFacet_t2192171319 * L_48 = ___maxlf0; ValidationEventHandler_t791314227 * L_49 = ___h2; Decimal_t2948259380 L_50 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_51 = L_50; RuntimeObject * L_52 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral1229679628, L_52, _stringLiteral2871821241, /*hidden argument*/NULL); NullCheck(L_48); XmlSchemaObject_error_m903554348(L_48, L_49, L_53, /*hidden argument*/NULL); } IL_0132: { Decimal_t2948259380 L_54 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_55; memset(&L_55, 0, sizeof(L_55)); Decimal__ctor_m1256289983((&L_55), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_56 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_016a; } } IL_0148: { Decimal_t2948259380 L_57 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_58 = __this->get_maxLengthFacet_24(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_59 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_57, L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_016a; } } IL_015e: { XmlSchemaMaxLengthFacet_t2192171319 * L_60 = ___maxlf0; ValidationEventHandler_t791314227 * L_61 = ___h2; NullCheck(L_60); XmlSchemaObject_error_m903554348(L_60, L_61, _stringLiteral2963537204, /*hidden argument*/NULL); } IL_016a: { goto IL_0191; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_016f; throw e; } CATCH_016f: { // begin catch(System.FormatException) XmlSchemaMaxLengthFacet_t2192171319 * L_62 = ___maxlf0; ValidationEventHandler_t791314227 * L_63 = ___h2; XmlSchemaMaxLengthFacet_t2192171319 * L_64 = ___maxlf0; NullCheck(L_64); String_t* L_65 = XmlSchemaFacet_get_Value_m199684217(L_64, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_66 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral1229679628, L_65, _stringLiteral4220897066, /*hidden argument*/NULL); NullCheck(L_62); XmlSchemaObject_error_m903554348(L_62, L_63, L_66, /*hidden argument*/NULL); goto IL_0191; } // end catch (depth: 1) IL_0191: { return; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeRestriction::checkMinLengthFacet(System.Xml.Schema.XmlSchemaMinLengthFacet,System.Xml.Schema.XmlSchemaFacet/Facet,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaSimpleTypeRestriction_checkMinLengthFacet_m3798454509 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, XmlSchemaMinLengthFacet_t686585762 * ___minlf0, int32_t ___facetsDefined1, ValidationEventHandler_t791314227 * ___h2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_checkMinLengthFacet_m3798454509_MetadataUsageId); s_Il2CppMethodInitialized = true; } Decimal_t2948259380 V_0; memset(&V_0, 0, sizeof(V_0)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaMinLengthFacet_t686585762 * L_0 = ___minlf0; if (!L_0) { goto IL_0189; } } IL_0006: try { // begin try (depth: 1) { Decimal_t2948259380 L_1 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_2; memset(&L_2, 0, sizeof(L_2)); Decimal__ctor_m1256289983((&L_2), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_3 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002d; } } IL_001c: { XmlSchemaMinLengthFacet_t686585762 * L_4 = ___minlf0; ValidationEventHandler_t791314227 * L_5 = ___h2; NullCheck(L_4); XmlSchemaObject_error_m903554348(L_4, L_5, _stringLiteral4170909774, /*hidden argument*/NULL); goto IL_0162; } IL_002d: { XmlSchemaMinLengthFacet_t686585762 * L_6 = ___minlf0; NullCheck(L_6); String_t* L_7 = XmlSchemaFacet_get_Value_m199684217(L_6, /*hidden argument*/NULL); NullCheck(L_7); String_t* L_8 = String_Trim_m923598732(L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); int32_t L_9 = ((XmlSchemaSimpleTypeRestriction_t3925451115_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))->get_lengthStyle_33(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_10 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_11 = Decimal_Parse_m942471224(NULL /*static, unused*/, L_8, L_9, L_10, /*hidden argument*/NULL); V_0 = L_11; int32_t L_12 = __this->get_fixedFacets_32(); if (!((int32_t)((int32_t)L_12&(int32_t)2))) { goto IL_009e; } } IL_0055: { Decimal_t2948259380 L_13 = V_0; Decimal_t2948259380 L_14 = __this->get_minLengthFacet_25(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_15 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_009e; } } IL_0066: { XmlSchemaMinLengthFacet_t686585762 * L_16 = ___minlf0; ValidationEventHandler_t791314227 * L_17 = ___h2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_18 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_19 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); XmlSchemaMinLengthFacet_t686585762 * L_20 = ___minlf0; NullCheck(L_20); String_t* L_21 = XmlSchemaFacet_get_Value_m199684217(L_20, /*hidden argument*/NULL); NullCheck(L_21); String_t* L_22 = String_Trim_m923598732(L_21, /*hidden argument*/NULL); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_22); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22); ObjectU5BU5D_t2843939325* L_23 = L_19; Decimal_t2948259380 L_24 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_25 = L_24; RuntimeObject * L_26 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_25); NullCheck(L_23); ArrayElementTypeCheck (L_23, L_26); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_26); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_27 = String_Format_m1881875187(NULL /*static, unused*/, L_18, _stringLiteral294320515, L_23, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_error_m903554348(L_16, L_17, L_27, /*hidden argument*/NULL); } IL_009e: { Decimal_t2948259380 L_28 = V_0; Decimal_t2948259380 L_29 = __this->get_minLengthFacet_25(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_30 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_28, L_29, /*hidden argument*/NULL); if (!L_30) { goto IL_00ec; } } IL_00af: { XmlSchemaMinLengthFacet_t686585762 * L_31 = ___minlf0; ValidationEventHandler_t791314227 * L_32 = ___h2; IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_33 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_34 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)2)); XmlSchemaMinLengthFacet_t686585762 * L_35 = ___minlf0; NullCheck(L_35); String_t* L_36 = XmlSchemaFacet_get_Value_m199684217(L_35, /*hidden argument*/NULL); NullCheck(L_36); String_t* L_37 = String_Trim_m923598732(L_36, /*hidden argument*/NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_37); ObjectU5BU5D_t2843939325* L_38 = L_34; Decimal_t2948259380 L_39 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_40 = L_39; RuntimeObject * L_41 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_40); NullCheck(L_38); ArrayElementTypeCheck (L_38, L_41); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_41); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = String_Format_m1881875187(NULL /*static, unused*/, L_33, _stringLiteral2664361801, L_38, /*hidden argument*/NULL); NullCheck(L_31); XmlSchemaObject_error_m903554348(L_31, L_32, L_42, /*hidden argument*/NULL); goto IL_00f3; } IL_00ec: { Decimal_t2948259380 L_43 = V_0; __this->set_minLengthFacet_25(L_43); } IL_00f3: { Decimal_t2948259380 L_44 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_45; memset(&L_45, 0, sizeof(L_45)); Decimal__ctor_m1256289983((&L_45), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_46 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_44, L_45, /*hidden argument*/NULL); if (!L_46) { goto IL_012a; } } IL_0109: { XmlSchemaMinLengthFacet_t686585762 * L_47 = ___minlf0; ValidationEventHandler_t791314227 * L_48 = ___h2; Decimal_t2948259380 L_49 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_50 = L_49; RuntimeObject * L_51 = Box(Decimal_t2948259380_il2cpp_TypeInfo_var, &L_50); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_52 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral1229679628, L_51, _stringLiteral2599391607, /*hidden argument*/NULL); NullCheck(L_47); XmlSchemaObject_error_m903554348(L_47, L_48, L_52, /*hidden argument*/NULL); } IL_012a: { Decimal_t2948259380 L_53 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_54; memset(&L_54, 0, sizeof(L_54)); Decimal__ctor_m1256289983((&L_54), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_55 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_53, L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_0162; } } IL_0140: { Decimal_t2948259380 L_56 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_57 = __this->get_maxLengthFacet_24(); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_58 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_56, L_57, /*hidden argument*/NULL); if (!L_58) { goto IL_0162; } } IL_0156: { XmlSchemaMinLengthFacet_t686585762 * L_59 = ___minlf0; ValidationEventHandler_t791314227 * L_60 = ___h2; NullCheck(L_59); XmlSchemaObject_error_m903554348(L_59, L_60, _stringLiteral2963537204, /*hidden argument*/NULL); } IL_0162: { goto IL_0189; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0167; throw e; } CATCH_0167: { // begin catch(System.FormatException) XmlSchemaMinLengthFacet_t686585762 * L_61 = ___minlf0; ValidationEventHandler_t791314227 * L_62 = ___h2; XmlSchemaMinLengthFacet_t686585762 * L_63 = ___minlf0; NullCheck(L_63); String_t* L_64 = XmlSchemaFacet_get_Value_m199684217(L_63, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_65 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral1229679628, L_64, _stringLiteral3360720419, /*hidden argument*/NULL); NullCheck(L_61); XmlSchemaObject_error_m903554348(L_61, L_62, L_65, /*hidden argument*/NULL); goto IL_0189; } // end catch (depth: 1) IL_0189: { return; } } // Mono.Xml.Schema.XsdAnySimpleType System.Xml.Schema.XmlSchemaSimpleTypeRestriction::getDatatype() extern "C" XsdAnySimpleType_t1257864485 * XmlSchemaSimpleTypeRestriction_getDatatype_m687103007 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_getDatatype_m687103007_MetadataUsageId); s_Il2CppMethodInitialized = true; } XsdAnySimpleType_t1257864485 * V_0 = NULL; XmlSchemaSimpleTypeContent_t599285223 * V_1 = NULL; { RuntimeObject * L_0 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); V_0 = ((XsdAnySimpleType_t1257864485 *)IsInstClass((RuntimeObject*)L_0, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var)); XsdAnySimpleType_t1257864485 * L_1 = V_0; if (!L_1) { goto IL_0014; } } { XsdAnySimpleType_t1257864485 * L_2 = V_0; return L_2; } IL_0014: { RuntimeObject * L_3 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); NullCheck(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_3, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))); XmlSchemaSimpleTypeContent_t599285223 * L_4 = XmlSchemaSimpleType_get_Content_m2306047784(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_3, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_1 = L_4; XmlSchemaSimpleTypeContent_t599285223 * L_5 = V_1; if (!((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_5, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))) { goto IL_003c; } } { XmlSchemaSimpleTypeContent_t599285223 * L_6 = V_1; NullCheck(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_6, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))); XsdAnySimpleType_t1257864485 * L_7 = XmlSchemaSimpleTypeRestriction_getDatatype_m687103007(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_6, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); return L_7; } IL_003c: { XmlSchemaSimpleTypeContent_t599285223 * L_8 = V_1; if (((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_8, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var))) { goto IL_0052; } } { XmlSchemaSimpleTypeContent_t599285223 * L_9 = V_1; if (!((XmlSchemaSimpleTypeUnion_t4071426880 *)IsInstClass((RuntimeObject*)L_9, XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var))) { goto IL_0054; } } IL_0052: { return (XsdAnySimpleType_t1257864485 *)NULL; } IL_0054: { return (XsdAnySimpleType_t1257864485 *)NULL; } } // System.Object System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateValueWithDatatype(System.String) extern "C" RuntimeObject * XmlSchemaSimpleTypeRestriction_ValidateValueWithDatatype_m3322151548 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateValueWithDatatype_m3322151548_MetadataUsageId); s_Il2CppMethodInitialized = true; } XsdAnySimpleType_t1257864485 * V_0 = NULL; RuntimeObject * V_1 = NULL; XmlSchemaSimpleTypeContent_t599285223 * V_2 = NULL; RuntimeObject * V_3 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XsdAnySimpleType_t1257864485 * L_0 = XmlSchemaSimpleTypeRestriction_getDatatype_m687103007(__this, /*hidden argument*/NULL); V_0 = L_0; V_1 = NULL; XsdAnySimpleType_t1257864485 * L_1 = V_0; if (!L_1) { goto IL_0078; } } IL_000f: try { // begin try (depth: 1) { XsdAnySimpleType_t1257864485 * L_2 = V_0; String_t* L_3 = ___value0; NullCheck(L_2); RuntimeObject * L_4 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_2, L_3, (XmlNameTable_t71772148 *)NULL, (RuntimeObject*)NULL); V_1 = L_4; RuntimeObject * L_5 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); if (!((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_5, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))) { goto IL_0066; } } IL_0029: { RuntimeObject * L_6 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); NullCheck(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_6, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))); XmlSchemaSimpleTypeContent_t599285223 * L_7 = XmlSchemaSimpleType_get_Content_m2306047784(((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_6, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); V_2 = L_7; XmlSchemaSimpleTypeContent_t599285223 * L_8 = V_2; if (!((XmlSchemaSimpleTypeRestriction_t3925451115 *)IsInstClass((RuntimeObject*)L_8, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))) { goto IL_0066; } } IL_0045: { XmlSchemaSimpleTypeContent_t599285223 * L_9 = V_2; String_t* L_10 = ___value0; NullCheck(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_9, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var))); bool L_11 = XmlSchemaSimpleTypeRestriction_ValidateValueWithFacets_m2411738315(((XmlSchemaSimpleTypeRestriction_t3925451115 *)CastclassClass((RuntimeObject*)L_9, XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var)), L_10, (XmlNameTable_t71772148 *)NULL, (RuntimeObject*)NULL, /*hidden argument*/NULL); if (!L_11) { goto IL_005f; } } IL_0058: { RuntimeObject * L_12 = V_1; V_3 = L_12; goto IL_007a; } IL_005f: { V_3 = NULL; goto IL_007a; } IL_0066: { goto IL_0078; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_006b; throw e; } CATCH_006b: { // begin catch(System.Exception) { V_3 = NULL; goto IL_007a; } IL_0073: { ; // IL_0073: leave IL_0078 } } // end catch (depth: 1) IL_0078: { RuntimeObject * L_13 = V_1; return L_13; } IL_007a: { RuntimeObject * L_14 = V_3; return L_14; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateValueWithFacets_m2411738315 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateValueWithFacets_m2411738315_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleType_t2678868104 * V_0 = NULL; XmlSchemaSimpleTypeList_t472803608 * V_1 = NULL; XmlSchemaSimpleTypeList_t472803608 * G_B3_0 = NULL; { RuntimeObject * L_0 = XmlSchemaSimpleTypeContent_get_ActualBaseSchemaType_m3291379945(__this, /*hidden argument*/NULL); V_0 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_0, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_1 = V_0; if (!L_1) { goto IL_0022; } } { XmlSchemaSimpleType_t2678868104 * L_2 = V_0; NullCheck(L_2); XmlSchemaSimpleTypeContent_t599285223 * L_3 = XmlSchemaSimpleType_get_Content_m2306047784(L_2, /*hidden argument*/NULL); G_B3_0 = ((XmlSchemaSimpleTypeList_t472803608 *)IsInstClass((RuntimeObject*)L_3, XmlSchemaSimpleTypeList_t472803608_il2cpp_TypeInfo_var)); goto IL_0023; } IL_0022: { G_B3_0 = ((XmlSchemaSimpleTypeList_t472803608 *)(NULL)); } IL_0023: { V_1 = G_B3_0; XmlSchemaSimpleTypeList_t472803608 * L_4 = V_1; if (!L_4) { goto IL_0034; } } { String_t* L_5 = ___value0; XmlNameTable_t71772148 * L_6 = ___nt1; RuntimeObject* L_7 = ___nsmgr2; bool L_8 = XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacets_m932200076(__this, L_5, L_6, L_7, /*hidden argument*/NULL); return L_8; } IL_0034: { String_t* L_9 = ___value0; XmlNameTable_t71772148 * L_10 = ___nt1; RuntimeObject* L_11 = ___nsmgr2; bool L_12 = XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacets_m3279012679(__this, L_9, L_10, L_11, /*hidden argument*/NULL); return L_12; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateListValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacets_m932200076 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacets_m932200076_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___value0; XmlNameTable_t71772148 * L_1 = ___nt1; RuntimeObject* L_2 = ___nsmgr2; bool L_3 = XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacetsCore_m714256667(__this, L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_0021; } IL_000f: { ; // IL_000f: leave IL_0021 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0014; throw e; } CATCH_0014: { // begin catch(System.Exception) { V_0 = (bool)0; goto IL_0021; } IL_001c: { ; // IL_001c: leave IL_0021 } } // end catch (depth: 1) IL_0021: { bool L_4 = V_0; return L_4; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateListValueWithFacetsCore(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacetsCore_m714256667 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateListValueWithFacetsCore_m714256667_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t1281789340* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; bool V_3 = false; int32_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; XsdAnySimpleType_t1257864485 * V_7 = NULL; RuntimeObject * V_8 = NULL; int32_t V_9 = 0; { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_0 = XmlSchemaDatatype_FromName_m2299183149(NULL /*static, unused*/, _stringLiteral3319458126, _stringLiteral1569427300, /*hidden argument*/NULL); String_t* L_1 = ___value0; XmlNameTable_t71772148 * L_2 = ___nt1; NullCheck(((XsdAnySimpleType_t1257864485 *)CastclassClass((RuntimeObject*)L_0, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var))); StringU5BU5D_t1281789340* L_3 = XsdAnySimpleType_ParseListValue_m2696966159(((XsdAnySimpleType_t1257864485 *)CastclassClass((RuntimeObject*)L_0, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var)), L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; StringU5BU5D_t1281789340* L_4 = __this->get_patternFacetValues_21(); if (!L_4) { goto IL_0078; } } { V_1 = 0; goto IL_006f; } IL_002e: { V_2 = 0; goto IL_005d; } IL_0035: { RegexU5BU5D_t1561692752* L_5 = __this->get_rexPatterns_22(); int32_t L_6 = V_2; NullCheck(L_5); int32_t L_7 = L_6; Regex_t3657309853 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); if (!L_8) { goto IL_0059; } } { RegexU5BU5D_t1561692752* L_9 = __this->get_rexPatterns_22(); int32_t L_10 = V_2; NullCheck(L_9); int32_t L_11 = L_10; Regex_t3657309853 * L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); StringU5BU5D_t1281789340* L_13 = V_0; int32_t L_14 = V_1; NullCheck(L_13); int32_t L_15 = L_14; String_t* L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); NullCheck(L_12); bool L_17 = Regex_IsMatch_m4067478295(L_12, L_16, /*hidden argument*/NULL); if (L_17) { goto IL_0059; } } { return (bool)0; } IL_0059: { int32_t L_18 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_005d: { int32_t L_19 = V_2; StringU5BU5D_t1281789340* L_20 = __this->get_patternFacetValues_21(); NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_20)->max_length))))))) { goto IL_0035; } } { int32_t L_21 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)); } IL_006f: { int32_t L_22 = V_1; StringU5BU5D_t1281789340* L_23 = V_0; NullCheck(L_23); if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_23)->max_length))))))) { goto IL_002e; } } IL_0078: { V_3 = (bool)0; StringU5BU5D_t1281789340* L_24 = __this->get_enumarationFacetValues_20(); if (!L_24) { goto IL_00d8; } } { V_4 = 0; goto IL_00ce; } IL_008d: { V_5 = 0; goto IL_00b9; } IL_0095: { StringU5BU5D_t1281789340* L_25 = V_0; int32_t L_26 = V_4; NullCheck(L_25); int32_t L_27 = L_26; String_t* L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); StringU5BU5D_t1281789340* L_29 = __this->get_enumarationFacetValues_20(); int32_t L_30 = V_5; NullCheck(L_29); int32_t L_31 = L_30; String_t* L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_33 = String_op_Equality_m920492651(NULL /*static, unused*/, L_28, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00b3; } } { V_3 = (bool)1; goto IL_00c8; } IL_00b3: { int32_t L_34 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1)); } IL_00b9: { int32_t L_35 = V_5; StringU5BU5D_t1281789340* L_36 = __this->get_enumarationFacetValues_20(); NullCheck(L_36); if ((((int32_t)L_35) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_36)->max_length))))))) { goto IL_0095; } } IL_00c8: { int32_t L_37 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); } IL_00ce: { int32_t L_38 = V_4; StringU5BU5D_t1281789340* L_39 = V_0; NullCheck(L_39); if ((((int32_t)L_38) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_39)->max_length))))))) { goto IL_008d; } } IL_00d8: { bool L_40 = V_3; if (L_40) { goto IL_0183; } } { StringU5BU5D_t1281789340* L_41 = __this->get_enumarationFacetValues_20(); if (!L_41) { goto IL_0183; } } { V_6 = 0; goto IL_0179; } IL_00f1: { XsdAnySimpleType_t1257864485 * L_42 = XmlSchemaSimpleTypeRestriction_getDatatype_m687103007(__this, /*hidden argument*/NULL); V_7 = L_42; XsdAnySimpleType_t1257864485 * L_43 = V_7; if (L_43) { goto IL_0116; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_44 = XmlSchemaDatatype_FromName_m2299183149(NULL /*static, unused*/, _stringLiteral3319458126, _stringLiteral1569427300, /*hidden argument*/NULL); V_7 = ((XsdAnySimpleType_t1257864485 *)CastclassClass((RuntimeObject*)L_44, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var)); } IL_0116: { XsdAnySimpleType_t1257864485 * L_45 = V_7; StringU5BU5D_t1281789340* L_46 = V_0; int32_t L_47 = V_6; NullCheck(L_46); int32_t L_48 = L_47; String_t* L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48)); XmlNameTable_t71772148 * L_50 = ___nt1; RuntimeObject* L_51 = ___nsmgr2; NullCheck(L_45); RuntimeObject * L_52 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_45, L_49, L_50, L_51); V_8 = L_52; V_9 = 0; goto IL_015c; } IL_012d: { XsdAnySimpleType_t1257864485 * L_53 = V_7; RuntimeObject * L_54 = V_8; XsdAnySimpleType_t1257864485 * L_55 = V_7; XsdAnySimpleType_t1257864485 * L_56 = V_7; StringU5BU5D_t1281789340* L_57 = __this->get_enumarationFacetValues_20(); int32_t L_58 = V_9; NullCheck(L_57); int32_t L_59 = L_58; String_t* L_60 = (L_57)->GetAt(static_cast<il2cpp_array_size_t>(L_59)); XmlNameTable_t71772148 * L_61 = ___nt1; RuntimeObject* L_62 = ___nsmgr2; NullCheck(L_56); RuntimeObject * L_63 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_56, L_60, L_61, L_62); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_64 = XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075(NULL /*static, unused*/, L_53, L_54, L_55, L_63, /*hidden argument*/NULL); if (!L_64) { goto IL_0156; } } { V_3 = (bool)1; goto IL_016b; } IL_0156: { int32_t L_65 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1)); } IL_015c: { int32_t L_66 = V_9; StringU5BU5D_t1281789340* L_67 = __this->get_enumarationFacetValues_20(); NullCheck(L_67); if ((((int32_t)L_66) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_67)->max_length))))))) { goto IL_012d; } } IL_016b: { bool L_68 = V_3; if (L_68) { goto IL_0173; } } { return (bool)0; } IL_0173: { int32_t L_69 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)); } IL_0179: { int32_t L_70 = V_6; StringU5BU5D_t1281789340* L_71 = V_0; NullCheck(L_71); if ((((int32_t)L_70) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_71)->max_length))))))) { goto IL_00f1; } } IL_0183: { Decimal_t2948259380 L_72 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_73; memset(&L_73, 0, sizeof(L_73)); Decimal__ctor_m1256289983((&L_73), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_74 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_72, L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_01b3; } } { StringU5BU5D_t1281789340* L_75 = V_0; NullCheck(L_75); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_76 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, (((int32_t)((int32_t)(((RuntimeArray *)L_75)->max_length)))), /*hidden argument*/NULL); Decimal_t2948259380 L_77 = __this->get_lengthFacet_23(); bool L_78 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_76, L_77, /*hidden argument*/NULL); if (!L_78) { goto IL_01b3; } } { return (bool)0; } IL_01b3: { Decimal_t2948259380 L_79 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_80; memset(&L_80, 0, sizeof(L_80)); Decimal__ctor_m1256289983((&L_80), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_81 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_79, L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_01e3; } } { StringU5BU5D_t1281789340* L_82 = V_0; NullCheck(L_82); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_83 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, (((int32_t)((int32_t)(((RuntimeArray *)L_82)->max_length)))), /*hidden argument*/NULL); Decimal_t2948259380 L_84 = __this->get_maxLengthFacet_24(); bool L_85 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_83, L_84, /*hidden argument*/NULL); if (!L_85) { goto IL_01e3; } } { return (bool)0; } IL_01e3: { Decimal_t2948259380 L_86 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_87; memset(&L_87, 0, sizeof(L_87)); Decimal__ctor_m1256289983((&L_87), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_88 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_86, L_87, /*hidden argument*/NULL); if (!L_88) { goto IL_0213; } } { StringU5BU5D_t1281789340* L_89 = V_0; NullCheck(L_89); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_90 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, (((int32_t)((int32_t)(((RuntimeArray *)L_89)->max_length)))), /*hidden argument*/NULL); Decimal_t2948259380 L_91 = __this->get_minLengthFacet_25(); bool L_92 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_90, L_91, /*hidden argument*/NULL); if (!L_92) { goto IL_0213; } } { return (bool)0; } IL_0213: { return (bool)1; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateNonListValueWithFacets(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacets_m3279012679 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacets_m3279012679_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); IL_0000: try { // begin try (depth: 1) { String_t* L_0 = ___value0; XmlNameTable_t71772148 * L_1 = ___nt1; RuntimeObject* L_2 = ___nsmgr2; bool L_3 = XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacetsCore_m1733844805(__this, L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_0021; } IL_000f: { ; // IL_000f: leave IL_0021 } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0014; throw e; } CATCH_0014: { // begin catch(System.Exception) { V_0 = (bool)0; goto IL_0021; } IL_001c: { ; // IL_001c: leave IL_0021 } } // end catch (depth: 1) IL_0021: { bool L_4 = V_0; return L_4; } } // System.Boolean System.Xml.Schema.XmlSchemaSimpleTypeRestriction::ValidateNonListValueWithFacetsCore(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) extern "C" bool XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacetsCore_m1733844805 (XmlSchemaSimpleTypeRestriction_t3925451115 * __this, String_t* ___value0, XmlNameTable_t71772148 * ___nt1, RuntimeObject* ___nsmgr2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_ValidateNonListValueWithFacetsCore_m1733844805_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; XsdAnySimpleType_t1257864485 * V_2 = NULL; bool V_3 = false; int32_t V_4 = 0; XsdAnySimpleType_t1257864485 * V_5 = NULL; RuntimeObject * V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; String_t* V_9 = NULL; int32_t V_10 = 0; int32_t V_11 = 0; int32_t V_12 = 0; RuntimeObject * V_13 = NULL; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; int32_t V_17 = 0; bool V_18 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { StringU5BU5D_t1281789340* L_0 = __this->get_patternFacetValues_21(); if (!L_0) { goto IL_0055; } } { V_0 = (bool)0; V_1 = 0; goto IL_003f; } IL_0014: { RegexU5BU5D_t1561692752* L_1 = __this->get_rexPatterns_22(); int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; Regex_t3657309853 * L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); if (!L_4) { goto IL_003b; } } { RegexU5BU5D_t1561692752* L_5 = __this->get_rexPatterns_22(); int32_t L_6 = V_1; NullCheck(L_5); int32_t L_7 = L_6; Regex_t3657309853 * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7)); String_t* L_9 = ___value0; NullCheck(L_8); bool L_10 = Regex_IsMatch_m4067478295(L_8, L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_003b; } } { V_0 = (bool)1; goto IL_004d; } IL_003b: { int32_t L_11 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)); } IL_003f: { int32_t L_12 = V_1; StringU5BU5D_t1281789340* L_13 = __this->get_patternFacetValues_21(); NullCheck(L_13); if ((((int32_t)L_12) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_13)->max_length))))))) { goto IL_0014; } } IL_004d: { bool L_14 = V_0; if (L_14) { goto IL_0055; } } { return (bool)0; } IL_0055: { XsdAnySimpleType_t1257864485 * L_15 = XmlSchemaSimpleTypeRestriction_getDatatype_m687103007(__this, /*hidden argument*/NULL); V_2 = L_15; V_3 = (bool)0; StringU5BU5D_t1281789340* L_16 = __this->get_enumarationFacetValues_20(); if (!L_16) { goto IL_00a1; } } { V_4 = 0; goto IL_0092; } IL_0071: { String_t* L_17 = ___value0; StringU5BU5D_t1281789340* L_18 = __this->get_enumarationFacetValues_20(); int32_t L_19 = V_4; NullCheck(L_18); int32_t L_20 = L_19; String_t* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_22 = String_op_Equality_m920492651(NULL /*static, unused*/, L_17, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_008c; } } { V_3 = (bool)1; goto IL_00a1; } IL_008c: { int32_t L_23 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0092: { int32_t L_24 = V_4; StringU5BU5D_t1281789340* L_25 = __this->get_enumarationFacetValues_20(); NullCheck(L_25); if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length))))))) { goto IL_0071; } } IL_00a1: { bool L_26 = V_3; if (L_26) { goto IL_012c; } } { StringU5BU5D_t1281789340* L_27 = __this->get_enumarationFacetValues_20(); if (!L_27) { goto IL_012c; } } { XsdAnySimpleType_t1257864485 * L_28 = V_2; V_5 = L_28; XsdAnySimpleType_t1257864485 * L_29 = V_5; if (L_29) { goto IL_00d2; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_30 = XmlSchemaDatatype_FromName_m2299183149(NULL /*static, unused*/, _stringLiteral3319458126, _stringLiteral1569427300, /*hidden argument*/NULL); V_5 = ((XsdAnySimpleType_t1257864485 *)CastclassClass((RuntimeObject*)L_30, XsdAnySimpleType_t1257864485_il2cpp_TypeInfo_var)); } IL_00d2: { XsdAnySimpleType_t1257864485 * L_31 = V_5; String_t* L_32 = ___value0; XmlNameTable_t71772148 * L_33 = ___nt1; RuntimeObject* L_34 = ___nsmgr2; NullCheck(L_31); RuntimeObject * L_35 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_31, L_32, L_33, L_34); V_6 = L_35; V_7 = 0; goto IL_0115; } IL_00e6: { XsdAnySimpleType_t1257864485 * L_36 = V_5; RuntimeObject * L_37 = V_6; XsdAnySimpleType_t1257864485 * L_38 = V_5; XsdAnySimpleType_t1257864485 * L_39 = V_5; StringU5BU5D_t1281789340* L_40 = __this->get_enumarationFacetValues_20(); int32_t L_41 = V_7; NullCheck(L_40); int32_t L_42 = L_41; String_t* L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42)); XmlNameTable_t71772148 * L_44 = ___nt1; RuntimeObject* L_45 = ___nsmgr2; NullCheck(L_39); RuntimeObject * L_46 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_39, L_43, L_44, L_45); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_47 = XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075(NULL /*static, unused*/, L_36, L_37, L_38, L_46, /*hidden argument*/NULL); if (!L_47) { goto IL_010f; } } { V_3 = (bool)1; goto IL_0124; } IL_010f: { int32_t L_48 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1)); } IL_0115: { int32_t L_49 = V_7; StringU5BU5D_t1281789340* L_50 = __this->get_enumarationFacetValues_20(); NullCheck(L_50); if ((((int32_t)L_49) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_50)->max_length))))))) { goto IL_00e6; } } IL_0124: { bool L_51 = V_3; if (L_51) { goto IL_012c; } } { return (bool)0; } IL_012c: { XsdAnySimpleType_t1257864485 * L_52 = V_2; if (((XsdQName_t2385631467 *)IsInstClass((RuntimeObject*)L_52, XsdQName_t2385631467_il2cpp_TypeInfo_var))) { goto IL_021a; } } { XsdAnySimpleType_t1257864485 * L_53 = V_2; if (((XsdNotation_t2827634056 *)IsInstClass((RuntimeObject*)L_53, XsdNotation_t2827634056_il2cpp_TypeInfo_var))) { goto IL_021a; } } { Decimal_t2948259380 L_54 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_55; memset(&L_55, 0, sizeof(L_55)); Decimal__ctor_m1256289983((&L_55), (-1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_56 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); if (!L_56) { goto IL_0184; } } { Decimal_t2948259380 L_57 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_58; memset(&L_58, 0, sizeof(L_58)); Decimal__ctor_m1256289983((&L_58), (-1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_59 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_57, L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_0184; } } { Decimal_t2948259380 L_60 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_61; memset(&L_61, 0, sizeof(L_61)); Decimal__ctor_m1256289983((&L_61), (-1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_62 = Decimal_op_Equality_m77262825(NULL /*static, unused*/, L_60, L_61, /*hidden argument*/NULL); if (L_62) { goto IL_021a; } } IL_0184: { XsdAnySimpleType_t1257864485 * L_63 = V_2; String_t* L_64 = ___value0; NullCheck(L_63); int32_t L_65 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(11 /* System.Int32 Mono.Xml.Schema.XsdAnySimpleType::Length(System.String) */, L_63, L_64); V_8 = L_65; Decimal_t2948259380 L_66 = __this->get_lengthFacet_23(); Decimal_t2948259380 L_67; memset(&L_67, 0, sizeof(L_67)); Decimal__ctor_m1256289983((&L_67), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_68 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_66, L_67, /*hidden argument*/NULL); if (!L_68) { goto IL_01bc; } } { int32_t L_69 = V_8; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_70 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_69, /*hidden argument*/NULL); Decimal_t2948259380 L_71 = __this->get_lengthFacet_23(); bool L_72 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_70, L_71, /*hidden argument*/NULL); if (!L_72) { goto IL_01bc; } } { return (bool)0; } IL_01bc: { Decimal_t2948259380 L_73 = __this->get_maxLengthFacet_24(); Decimal_t2948259380 L_74; memset(&L_74, 0, sizeof(L_74)); Decimal__ctor_m1256289983((&L_74), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_75 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_73, L_74, /*hidden argument*/NULL); if (!L_75) { goto IL_01eb; } } { int32_t L_76 = V_8; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_77 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_76, /*hidden argument*/NULL); Decimal_t2948259380 L_78 = __this->get_maxLengthFacet_24(); bool L_79 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_77, L_78, /*hidden argument*/NULL); if (!L_79) { goto IL_01eb; } } { return (bool)0; } IL_01eb: { Decimal_t2948259380 L_80 = __this->get_minLengthFacet_25(); Decimal_t2948259380 L_81; memset(&L_81, 0, sizeof(L_81)); Decimal__ctor_m1256289983((&L_81), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_82 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_80, L_81, /*hidden argument*/NULL); if (!L_82) { goto IL_021a; } } { int32_t L_83 = V_8; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_84 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_83, /*hidden argument*/NULL); Decimal_t2948259380 L_85 = __this->get_minLengthFacet_25(); bool L_86 = Decimal_op_LessThan_m1273833514(NULL /*static, unused*/, L_84, L_85, /*hidden argument*/NULL); if (!L_86) { goto IL_021a; } } { return (bool)0; } IL_021a: { Decimal_t2948259380 L_87 = __this->get_totalDigitsFacet_27(); Decimal_t2948259380 L_88; memset(&L_88, 0, sizeof(L_88)); Decimal__ctor_m1256289983((&L_88), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_89 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_87, L_88, /*hidden argument*/NULL); if (L_89) { goto IL_0246; } } { Decimal_t2948259380 L_90 = __this->get_fractionDigitsFacet_26(); Decimal_t2948259380 L_91; memset(&L_91, 0, sizeof(L_91)); Decimal__ctor_m1256289983((&L_91), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_92 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_90, L_91, /*hidden argument*/NULL); if (!L_92) { goto IL_02f3; } } IL_0246: { String_t* L_93 = ___value0; CharU5BU5D_t3528271667* L_94 = ((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)4)); RuntimeFieldHandle_t1871169219 L_95 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t3057255363____U24U24fieldU2D44_7_FieldInfo_var) }; RuntimeHelpers_InitializeArray_m3117905507(NULL /*static, unused*/, (RuntimeArray *)(RuntimeArray *)L_94, L_95, /*hidden argument*/NULL); NullCheck(L_93); String_t* L_96 = String_Trim_m3384720403(L_93, L_94, /*hidden argument*/NULL); V_9 = L_96; V_10 = 0; String_t* L_97 = V_9; NullCheck(L_97); int32_t L_98 = String_get_Length_m3847582255(L_97, /*hidden argument*/NULL); V_11 = L_98; String_t* L_99 = V_9; NullCheck(L_99); int32_t L_100 = String_IndexOf_m1977622757(L_99, _stringLiteral3452614530, /*hidden argument*/NULL); V_12 = L_100; int32_t L_101 = V_12; if ((((int32_t)L_101) == ((int32_t)(-1)))) { goto IL_0295; } } { int32_t L_102 = V_11; V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_102, (int32_t)1)); String_t* L_103 = V_9; NullCheck(L_103); int32_t L_104 = String_get_Length_m3847582255(L_103, /*hidden argument*/NULL); int32_t L_105 = V_12; V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_104, (int32_t)L_105)), (int32_t)1)); } IL_0295: { Decimal_t2948259380 L_106 = __this->get_totalDigitsFacet_27(); Decimal_t2948259380 L_107; memset(&L_107, 0, sizeof(L_107)); Decimal__ctor_m1256289983((&L_107), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_108 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_106, L_107, /*hidden argument*/NULL); if (!L_108) { goto IL_02c4; } } { int32_t L_109 = V_11; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_110 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_109, /*hidden argument*/NULL); Decimal_t2948259380 L_111 = __this->get_totalDigitsFacet_27(); bool L_112 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_110, L_111, /*hidden argument*/NULL); if (!L_112) { goto IL_02c4; } } { return (bool)0; } IL_02c4: { Decimal_t2948259380 L_113 = __this->get_fractionDigitsFacet_26(); Decimal_t2948259380 L_114; memset(&L_114, 0, sizeof(L_114)); Decimal__ctor_m1256289983((&L_114), 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_115 = Decimal_op_GreaterThanOrEqual_m1217153501(NULL /*static, unused*/, L_113, L_114, /*hidden argument*/NULL); if (!L_115) { goto IL_02f3; } } { int32_t L_116 = V_10; IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); Decimal_t2948259380 L_117 = Decimal_op_Implicit_m1328901562(NULL /*static, unused*/, L_116, /*hidden argument*/NULL); Decimal_t2948259380 L_118 = __this->get_fractionDigitsFacet_26(); bool L_119 = Decimal_op_GreaterThan_m627311519(NULL /*static, unused*/, L_117, L_118, /*hidden argument*/NULL); if (!L_119) { goto IL_02f3; } } { return (bool)0; } IL_02f3: { RuntimeObject * L_120 = __this->get_maxInclusiveFacet_28(); if (L_120) { goto IL_031f; } } { RuntimeObject * L_121 = __this->get_maxExclusiveFacet_29(); if (L_121) { goto IL_031f; } } { RuntimeObject * L_122 = __this->get_minInclusiveFacet_30(); if (L_122) { goto IL_031f; } } { RuntimeObject * L_123 = __this->get_minExclusiveFacet_31(); if (!L_123) { goto IL_03f3; } } IL_031f: { XsdAnySimpleType_t1257864485 * L_124 = V_2; if (!L_124) { goto IL_03f3; } } IL_0325: try { // begin try (depth: 1) XsdAnySimpleType_t1257864485 * L_125 = V_2; String_t* L_126 = ___value0; XmlNameTable_t71772148 * L_127 = ___nt1; NullCheck(L_125); RuntimeObject * L_128 = VirtFuncInvoker3< RuntimeObject *, String_t*, XmlNameTable_t71772148 *, RuntimeObject* >::Invoke(8 /* System.Object Mono.Xml.Schema.XsdAnySimpleType::ParseValue(System.String,System.Xml.XmlNameTable,System.Xml.IXmlNamespaceResolver) */, L_125, L_126, L_127, (RuntimeObject*)NULL); V_13 = L_128; goto IL_0351; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (OverflowException_t2020128637_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0335; if(il2cpp_codegen_class_is_assignable_from (FormatException_t154580423_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_0343; throw e; } CATCH_0335: { // begin catch(System.OverflowException) { V_18 = (bool)0; goto IL_03f5; } IL_033e: { ; // IL_033e: leave IL_0351 } } // end catch (depth: 1) CATCH_0343: { // begin catch(System.FormatException) { V_18 = (bool)0; goto IL_03f5; } IL_034c: { ; // IL_034c: leave IL_0351 } } // end catch (depth: 1) IL_0351: { RuntimeObject * L_129 = __this->get_maxInclusiveFacet_28(); if (!L_129) { goto IL_037d; } } { XsdAnySimpleType_t1257864485 * L_130 = V_2; RuntimeObject * L_131 = V_13; RuntimeObject * L_132 = __this->get_maxInclusiveFacet_28(); NullCheck(L_130); int32_t L_133 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(10 /* Mono.Xml.Schema.XsdOrdering Mono.Xml.Schema.XsdAnySimpleType::Compare(System.Object,System.Object) */, L_130, L_131, L_132); V_14 = L_133; int32_t L_134 = V_14; if ((((int32_t)L_134) == ((int32_t)(-1)))) { goto IL_037d; } } { int32_t L_135 = V_14; if (!L_135) { goto IL_037d; } } { return (bool)0; } IL_037d: { RuntimeObject * L_136 = __this->get_maxExclusiveFacet_29(); if (!L_136) { goto IL_03a2; } } { XsdAnySimpleType_t1257864485 * L_137 = V_2; RuntimeObject * L_138 = V_13; RuntimeObject * L_139 = __this->get_maxExclusiveFacet_29(); NullCheck(L_137); int32_t L_140 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(10 /* Mono.Xml.Schema.XsdOrdering Mono.Xml.Schema.XsdAnySimpleType::Compare(System.Object,System.Object) */, L_137, L_138, L_139); V_15 = L_140; int32_t L_141 = V_15; if ((((int32_t)L_141) == ((int32_t)(-1)))) { goto IL_03a2; } } { return (bool)0; } IL_03a2: { RuntimeObject * L_142 = __this->get_minInclusiveFacet_30(); if (!L_142) { goto IL_03ce; } } { XsdAnySimpleType_t1257864485 * L_143 = V_2; RuntimeObject * L_144 = V_13; RuntimeObject * L_145 = __this->get_minInclusiveFacet_30(); NullCheck(L_143); int32_t L_146 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(10 /* Mono.Xml.Schema.XsdOrdering Mono.Xml.Schema.XsdAnySimpleType::Compare(System.Object,System.Object) */, L_143, L_144, L_145); V_16 = L_146; int32_t L_147 = V_16; if ((((int32_t)L_147) == ((int32_t)1))) { goto IL_03ce; } } { int32_t L_148 = V_16; if (!L_148) { goto IL_03ce; } } { return (bool)0; } IL_03ce: { RuntimeObject * L_149 = __this->get_minExclusiveFacet_31(); if (!L_149) { goto IL_03f3; } } { XsdAnySimpleType_t1257864485 * L_150 = V_2; RuntimeObject * L_151 = V_13; RuntimeObject * L_152 = __this->get_minExclusiveFacet_31(); NullCheck(L_150); int32_t L_153 = VirtFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(10 /* Mono.Xml.Schema.XsdOrdering Mono.Xml.Schema.XsdAnySimpleType::Compare(System.Object,System.Object) */, L_150, L_151, L_152); V_17 = L_153; int32_t L_154 = V_17; if ((((int32_t)L_154) == ((int32_t)1))) { goto IL_03f3; } } { return (bool)0; } IL_03f3: { return (bool)1; } IL_03f5: { bool L_155 = V_18; return L_155; } } // System.Xml.Schema.XmlSchemaSimpleTypeRestriction System.Xml.Schema.XmlSchemaSimpleTypeRestriction::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeRestriction_t3925451115 * XmlSchemaSimpleTypeRestriction_Read_m102524905 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeRestriction_Read_m102524905_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleTypeRestriction_t3925451115 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; XmlSchemaSimpleType_t2678868104 * V_4 = NULL; XmlSchemaMinExclusiveFacet_t85871952 * V_5 = NULL; XmlSchemaMinInclusiveFacet_t18629333 * V_6 = NULL; XmlSchemaMaxExclusiveFacet_t786951263 * V_7 = NULL; XmlSchemaMaxInclusiveFacet_t719708644 * V_8 = NULL; XmlSchemaTotalDigitsFacet_t297930215 * V_9 = NULL; XmlSchemaFractionDigitsFacet_t2589598443 * V_10 = NULL; XmlSchemaLengthFacet_t4286280832 * V_11 = NULL; XmlSchemaMinLengthFacet_t686585762 * V_12 = NULL; XmlSchemaMaxLengthFacet_t2192171319 * V_13 = NULL; XmlSchemaEnumerationFacet_t2156689038 * V_14 = NULL; XmlSchemaWhiteSpaceFacet_t4158372164 * V_15 = NULL; XmlSchemaPatternFacet_t3316004401 * V_16 = NULL; { XmlSchemaSimpleTypeRestriction_t3925451115 * L_0 = (XmlSchemaSimpleTypeRestriction_t3925451115 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeRestriction_t3925451115_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeRestriction__ctor_m666597917(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1928233972, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSimpleTypeRestriction_t3925451115 *)NULL; } IL_0056: { XmlSchemaSimpleTypeRestriction_t3925451115 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleTypeRestriction_t3925451115 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleTypeRestriction_t3925451115 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_014c; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_014c; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral2838662761, /*hidden argument*/NULL); if (!L_30) { goto IL_00ea; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_33 = XmlSchemaUtil_ReadQNameAttribute_m567024358(NULL /*static, unused*/, L_32, (&V_1), /*hidden argument*/NULL); NullCheck(L_31); L_31->set_baseTypeName_18(L_33); Exception_t * L_34 = V_1; if (!L_34) { goto IL_00e5; } } { ValidationEventHandler_t791314227 * L_35 = ___h1; XmlSchemaReader_t1164558392 * L_36 = ___reader0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_36); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_38 = String_Concat_m3937257545(NULL /*static, unused*/, L_37, _stringLiteral494350233, /*hidden argument*/NULL); Exception_t * L_39 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_35, L_38, L_39, /*hidden argument*/NULL); } IL_00e5: { goto IL_014c; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_42 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_0114; } } { XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_44); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_46 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_45, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_46) { goto IL_0129; } } IL_0114: { XmlSchemaReader_t1164558392 * L_47 = ___reader0; NullCheck(L_47); String_t* L_48 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_47); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_48, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_49) { goto IL_0145; } } IL_0129: { ValidationEventHandler_t791314227 * L_50 = ___h1; XmlSchemaReader_t1164558392 * L_51 = ___reader0; NullCheck(L_51); String_t* L_52 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_51); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_53 = String_Concat_m3937257545(NULL /*static, unused*/, L_52, _stringLiteral3376851224, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_50, L_53, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_014c; } IL_0145: { XmlSchemaReader_t1164558392 * L_54 = ___reader0; XmlSchemaSimpleTypeRestriction_t3925451115 * L_55 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_54, L_55, /*hidden argument*/NULL); } IL_014c: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); bool L_57 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_56); if (L_57) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_58); XmlSchemaReader_t1164558392 * L_59 = ___reader0; NullCheck(L_59); bool L_60 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_59); if (!L_60) { goto IL_016b; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_61 = V_0; return L_61; } IL_016b: { V_2 = 1; goto IL_04e8; } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); int32_t L_63 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_62); if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)15))))) { goto IL_01b0; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); String_t* L_65 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_64); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_66 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_65, _stringLiteral1564059052, /*hidden argument*/NULL); if (!L_66) { goto IL_01ab; } } { ValidationEventHandler_t791314227 * L_67 = ___h1; XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); String_t* L_69 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_68); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_70 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral5564326, L_69, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_67, L_70, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01ab: { goto IL_04f3; } IL_01b0: { int32_t L_71 = V_2; if ((((int32_t)L_71) > ((int32_t)1))) { goto IL_01e8; } } { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); String_t* L_73 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_72); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_74 = String_op_Equality_m920492651(NULL /*static, unused*/, L_73, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_74) { goto IL_01e8; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_75 = ___reader0; ValidationEventHandler_t791314227 * L_76 = ___h1; XmlSchemaAnnotation_t2553753397 * L_77 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_75, L_76, /*hidden argument*/NULL); V_3 = L_77; XmlSchemaAnnotation_t2553753397 * L_78 = V_3; if (!L_78) { goto IL_01e3; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_79 = V_0; XmlSchemaAnnotation_t2553753397 * L_80 = V_3; NullCheck(L_79); XmlSchemaAnnotated_set_Annotation_m3050132480(L_79, L_80, /*hidden argument*/NULL); } IL_01e3: { goto IL_04e8; } IL_01e8: { int32_t L_81 = V_2; if ((((int32_t)L_81) > ((int32_t)2))) { goto IL_0223; } } { XmlSchemaReader_t1164558392 * L_82 = ___reader0; NullCheck(L_82); String_t* L_83 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_82); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_84 = String_op_Equality_m920492651(NULL /*static, unused*/, L_83, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_84) { goto IL_0223; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_85 = ___reader0; ValidationEventHandler_t791314227 * L_86 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_87 = XmlSchemaSimpleType_Read_m1629189972(NULL /*static, unused*/, L_85, L_86, /*hidden argument*/NULL); V_4 = L_87; XmlSchemaSimpleType_t2678868104 * L_88 = V_4; if (!L_88) { goto IL_021e; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_89 = V_0; XmlSchemaSimpleType_t2678868104 * L_90 = V_4; NullCheck(L_89); L_89->set_baseType_17(L_90); } IL_021e: { goto IL_04e8; } IL_0223: { int32_t L_91 = V_2; if ((((int32_t)L_91) > ((int32_t)3))) { goto IL_04e2; } } { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_92); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_94 = String_op_Equality_m920492651(NULL /*static, unused*/, L_93, _stringLiteral3338794825, /*hidden argument*/NULL); if (!L_94) { goto IL_0264; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_95 = ___reader0; ValidationEventHandler_t791314227 * L_96 = ___h1; XmlSchemaMinExclusiveFacet_t85871952 * L_97 = XmlSchemaMinExclusiveFacet_Read_m1334108464(NULL /*static, unused*/, L_95, L_96, /*hidden argument*/NULL); V_5 = L_97; XmlSchemaMinExclusiveFacet_t85871952 * L_98 = V_5; if (!L_98) { goto IL_025f; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_99 = V_0; NullCheck(L_99); XmlSchemaObjectCollection_t1064819932 * L_100 = L_99->get_facets_19(); XmlSchemaMinExclusiveFacet_t85871952 * L_101 = V_5; NullCheck(L_100); XmlSchemaObjectCollection_Add_m1142549045(L_100, L_101, /*hidden argument*/NULL); } IL_025f: { goto IL_04e8; } IL_0264: { XmlSchemaReader_t1164558392 * L_102 = ___reader0; NullCheck(L_102); String_t* L_103 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_102); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_104 = String_op_Equality_m920492651(NULL /*static, unused*/, L_103, _stringLiteral739112347, /*hidden argument*/NULL); if (!L_104) { goto IL_029e; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_105 = ___reader0; ValidationEventHandler_t791314227 * L_106 = ___h1; XmlSchemaMinInclusiveFacet_t18629333 * L_107 = XmlSchemaMinInclusiveFacet_Read_m1579298286(NULL /*static, unused*/, L_105, L_106, /*hidden argument*/NULL); V_6 = L_107; XmlSchemaMinInclusiveFacet_t18629333 * L_108 = V_6; if (!L_108) { goto IL_0299; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_109 = V_0; NullCheck(L_109); XmlSchemaObjectCollection_t1064819932 * L_110 = L_109->get_facets_19(); XmlSchemaMinInclusiveFacet_t18629333 * L_111 = V_6; NullCheck(L_110); XmlSchemaObjectCollection_Add_m1142549045(L_110, L_111, /*hidden argument*/NULL); } IL_0299: { goto IL_04e8; } IL_029e: { XmlSchemaReader_t1164558392 * L_112 = ___reader0; NullCheck(L_112); String_t* L_113 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_112); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_114 = String_op_Equality_m920492651(NULL /*static, unused*/, L_113, _stringLiteral541665163, /*hidden argument*/NULL); if (!L_114) { goto IL_02d8; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_115 = ___reader0; ValidationEventHandler_t791314227 * L_116 = ___h1; XmlSchemaMaxExclusiveFacet_t786951263 * L_117 = XmlSchemaMaxExclusiveFacet_Read_m3854530505(NULL /*static, unused*/, L_115, L_116, /*hidden argument*/NULL); V_7 = L_117; XmlSchemaMaxExclusiveFacet_t786951263 * L_118 = V_7; if (!L_118) { goto IL_02d3; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_119 = V_0; NullCheck(L_119); XmlSchemaObjectCollection_t1064819932 * L_120 = L_119->get_facets_19(); XmlSchemaMaxExclusiveFacet_t786951263 * L_121 = V_7; NullCheck(L_120); XmlSchemaObjectCollection_Add_m1142549045(L_120, L_121, /*hidden argument*/NULL); } IL_02d3: { goto IL_04e8; } IL_02d8: { XmlSchemaReader_t1164558392 * L_122 = ___reader0; NullCheck(L_122); String_t* L_123 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_122); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_124 = String_op_Equality_m920492651(NULL /*static, unused*/, L_123, _stringLiteral2236949981, /*hidden argument*/NULL); if (!L_124) { goto IL_0312; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_125 = ___reader0; ValidationEventHandler_t791314227 * L_126 = ___h1; XmlSchemaMaxInclusiveFacet_t719708644 * L_127 = XmlSchemaMaxInclusiveFacet_Read_m1567297469(NULL /*static, unused*/, L_125, L_126, /*hidden argument*/NULL); V_8 = L_127; XmlSchemaMaxInclusiveFacet_t719708644 * L_128 = V_8; if (!L_128) { goto IL_030d; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_129 = V_0; NullCheck(L_129); XmlSchemaObjectCollection_t1064819932 * L_130 = L_129->get_facets_19(); XmlSchemaMaxInclusiveFacet_t719708644 * L_131 = V_8; NullCheck(L_130); XmlSchemaObjectCollection_Add_m1142549045(L_130, L_131, /*hidden argument*/NULL); } IL_030d: { goto IL_04e8; } IL_0312: { XmlSchemaReader_t1164558392 * L_132 = ___reader0; NullCheck(L_132); String_t* L_133 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_132); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_134 = String_op_Equality_m920492651(NULL /*static, unused*/, L_133, _stringLiteral1504613137, /*hidden argument*/NULL); if (!L_134) { goto IL_034c; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_135 = ___reader0; ValidationEventHandler_t791314227 * L_136 = ___h1; XmlSchemaTotalDigitsFacet_t297930215 * L_137 = XmlSchemaTotalDigitsFacet_Read_m2720747555(NULL /*static, unused*/, L_135, L_136, /*hidden argument*/NULL); V_9 = L_137; XmlSchemaTotalDigitsFacet_t297930215 * L_138 = V_9; if (!L_138) { goto IL_0347; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_139 = V_0; NullCheck(L_139); XmlSchemaObjectCollection_t1064819932 * L_140 = L_139->get_facets_19(); XmlSchemaTotalDigitsFacet_t297930215 * L_141 = V_9; NullCheck(L_140); XmlSchemaObjectCollection_Add_m1142549045(L_140, L_141, /*hidden argument*/NULL); } IL_0347: { goto IL_04e8; } IL_034c: { XmlSchemaReader_t1164558392 * L_142 = ___reader0; NullCheck(L_142); String_t* L_143 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_142); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_144 = String_op_Equality_m920492651(NULL /*static, unused*/, L_143, _stringLiteral3402114229, /*hidden argument*/NULL); if (!L_144) { goto IL_0386; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_145 = ___reader0; ValidationEventHandler_t791314227 * L_146 = ___h1; XmlSchemaFractionDigitsFacet_t2589598443 * L_147 = XmlSchemaFractionDigitsFacet_Read_m1380148146(NULL /*static, unused*/, L_145, L_146, /*hidden argument*/NULL); V_10 = L_147; XmlSchemaFractionDigitsFacet_t2589598443 * L_148 = V_10; if (!L_148) { goto IL_0381; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_149 = V_0; NullCheck(L_149); XmlSchemaObjectCollection_t1064819932 * L_150 = L_149->get_facets_19(); XmlSchemaFractionDigitsFacet_t2589598443 * L_151 = V_10; NullCheck(L_150); XmlSchemaObjectCollection_Add_m1142549045(L_150, L_151, /*hidden argument*/NULL); } IL_0381: { goto IL_04e8; } IL_0386: { XmlSchemaReader_t1164558392 * L_152 = ___reader0; NullCheck(L_152); String_t* L_153 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_152); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_154 = String_op_Equality_m920492651(NULL /*static, unused*/, L_153, _stringLiteral1212500642, /*hidden argument*/NULL); if (!L_154) { goto IL_03c0; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_155 = ___reader0; ValidationEventHandler_t791314227 * L_156 = ___h1; XmlSchemaLengthFacet_t4286280832 * L_157 = XmlSchemaLengthFacet_Read_m46713934(NULL /*static, unused*/, L_155, L_156, /*hidden argument*/NULL); V_11 = L_157; XmlSchemaLengthFacet_t4286280832 * L_158 = V_11; if (!L_158) { goto IL_03bb; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_159 = V_0; NullCheck(L_159); XmlSchemaObjectCollection_t1064819932 * L_160 = L_159->get_facets_19(); XmlSchemaLengthFacet_t4286280832 * L_161 = V_11; NullCheck(L_160); XmlSchemaObjectCollection_Add_m1142549045(L_160, L_161, /*hidden argument*/NULL); } IL_03bb: { goto IL_04e8; } IL_03c0: { XmlSchemaReader_t1164558392 * L_162 = ___reader0; NullCheck(L_162); String_t* L_163 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_162); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_164 = String_op_Equality_m920492651(NULL /*static, unused*/, L_163, _stringLiteral3866161938, /*hidden argument*/NULL); if (!L_164) { goto IL_03fa; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_165 = ___reader0; ValidationEventHandler_t791314227 * L_166 = ___h1; XmlSchemaMinLengthFacet_t686585762 * L_167 = XmlSchemaMinLengthFacet_Read_m3215340321(NULL /*static, unused*/, L_165, L_166, /*hidden argument*/NULL); V_12 = L_167; XmlSchemaMinLengthFacet_t686585762 * L_168 = V_12; if (!L_168) { goto IL_03f5; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_169 = V_0; NullCheck(L_169); XmlSchemaObjectCollection_t1064819932 * L_170 = L_169->get_facets_19(); XmlSchemaMinLengthFacet_t686585762 * L_171 = V_12; NullCheck(L_170); XmlSchemaObjectCollection_Add_m1142549045(L_170, L_171, /*hidden argument*/NULL); } IL_03f5: { goto IL_04e8; } IL_03fa: { XmlSchemaReader_t1164558392 * L_172 = ___reader0; NullCheck(L_172); String_t* L_173 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_172); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_174 = String_op_Equality_m920492651(NULL /*static, unused*/, L_173, _stringLiteral1329154644, /*hidden argument*/NULL); if (!L_174) { goto IL_0434; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_175 = ___reader0; ValidationEventHandler_t791314227 * L_176 = ___h1; XmlSchemaMaxLengthFacet_t2192171319 * L_177 = XmlSchemaMaxLengthFacet_Read_m4278595782(NULL /*static, unused*/, L_175, L_176, /*hidden argument*/NULL); V_13 = L_177; XmlSchemaMaxLengthFacet_t2192171319 * L_178 = V_13; if (!L_178) { goto IL_042f; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_179 = V_0; NullCheck(L_179); XmlSchemaObjectCollection_t1064819932 * L_180 = L_179->get_facets_19(); XmlSchemaMaxLengthFacet_t2192171319 * L_181 = V_13; NullCheck(L_180); XmlSchemaObjectCollection_Add_m1142549045(L_180, L_181, /*hidden argument*/NULL); } IL_042f: { goto IL_04e8; } IL_0434: { XmlSchemaReader_t1164558392 * L_182 = ___reader0; NullCheck(L_182); String_t* L_183 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_182); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_184 = String_op_Equality_m920492651(NULL /*static, unused*/, L_183, _stringLiteral733314043, /*hidden argument*/NULL); if (!L_184) { goto IL_046e; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_185 = ___reader0; ValidationEventHandler_t791314227 * L_186 = ___h1; XmlSchemaEnumerationFacet_t2156689038 * L_187 = XmlSchemaEnumerationFacet_Read_m1625452565(NULL /*static, unused*/, L_185, L_186, /*hidden argument*/NULL); V_14 = L_187; XmlSchemaEnumerationFacet_t2156689038 * L_188 = V_14; if (!L_188) { goto IL_0469; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_189 = V_0; NullCheck(L_189); XmlSchemaObjectCollection_t1064819932 * L_190 = L_189->get_facets_19(); XmlSchemaEnumerationFacet_t2156689038 * L_191 = V_14; NullCheck(L_190); XmlSchemaObjectCollection_Add_m1142549045(L_190, L_191, /*hidden argument*/NULL); } IL_0469: { goto IL_04e8; } IL_046e: { XmlSchemaReader_t1164558392 * L_192 = ___reader0; NullCheck(L_192); String_t* L_193 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_192); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_194 = String_op_Equality_m920492651(NULL /*static, unused*/, L_193, _stringLiteral1492323255, /*hidden argument*/NULL); if (!L_194) { goto IL_04a8; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_195 = ___reader0; ValidationEventHandler_t791314227 * L_196 = ___h1; XmlSchemaWhiteSpaceFacet_t4158372164 * L_197 = XmlSchemaWhiteSpaceFacet_Read_m1012238860(NULL /*static, unused*/, L_195, L_196, /*hidden argument*/NULL); V_15 = L_197; XmlSchemaWhiteSpaceFacet_t4158372164 * L_198 = V_15; if (!L_198) { goto IL_04a3; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_199 = V_0; NullCheck(L_199); XmlSchemaObjectCollection_t1064819932 * L_200 = L_199->get_facets_19(); XmlSchemaWhiteSpaceFacet_t4158372164 * L_201 = V_15; NullCheck(L_200); XmlSchemaObjectCollection_Add_m1142549045(L_200, L_201, /*hidden argument*/NULL); } IL_04a3: { goto IL_04e8; } IL_04a8: { XmlSchemaReader_t1164558392 * L_202 = ___reader0; NullCheck(L_202); String_t* L_203 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_202); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_204 = String_op_Equality_m920492651(NULL /*static, unused*/, L_203, _stringLiteral2326546891, /*hidden argument*/NULL); if (!L_204) { goto IL_04e2; } } { V_2 = 3; XmlSchemaReader_t1164558392 * L_205 = ___reader0; ValidationEventHandler_t791314227 * L_206 = ___h1; XmlSchemaPatternFacet_t3316004401 * L_207 = XmlSchemaPatternFacet_Read_m2669981935(NULL /*static, unused*/, L_205, L_206, /*hidden argument*/NULL); V_16 = L_207; XmlSchemaPatternFacet_t3316004401 * L_208 = V_16; if (!L_208) { goto IL_04dd; } } { XmlSchemaSimpleTypeRestriction_t3925451115 * L_209 = V_0; NullCheck(L_209); XmlSchemaObjectCollection_t1064819932 * L_210 = L_209->get_facets_19(); XmlSchemaPatternFacet_t3316004401 * L_211 = V_16; NullCheck(L_210); XmlSchemaObjectCollection_Add_m1142549045(L_210, L_211, /*hidden argument*/NULL); } IL_04dd: { goto IL_04e8; } IL_04e2: { XmlSchemaReader_t1164558392 * L_212 = ___reader0; NullCheck(L_212); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_212, /*hidden argument*/NULL); } IL_04e8: { XmlSchemaReader_t1164558392 * L_213 = ___reader0; NullCheck(L_213); bool L_214 = XmlSchemaReader_ReadNextElement_m611223709(L_213, /*hidden argument*/NULL); if (L_214) { goto IL_0172; } } IL_04f3: { XmlSchemaSimpleTypeRestriction_t3925451115 * L_215 = V_0; return L_215; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaSimpleTypeUnion::.ctor() extern "C" void XmlSchemaSimpleTypeUnion__ctor_m2055690608 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeUnion__ctor_m2055690608_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaSimpleTypeContent__ctor_m2939213844(__this, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_0 = (XmlSchemaObjectCollection_t1064819932 *)il2cpp_codegen_object_new(XmlSchemaObjectCollection_t1064819932_il2cpp_TypeInfo_var); XmlSchemaObjectCollection__ctor_m1601154956(L_0, /*hidden argument*/NULL); __this->set_baseTypes_17(L_0); return; } } // System.Xml.Schema.XmlSchemaObjectCollection System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_BaseTypes() extern "C" XmlSchemaObjectCollection_t1064819932 * XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) { { XmlSchemaObjectCollection_t1064819932 * L_0 = __this->get_baseTypes_17(); return L_0; } } // System.Xml.XmlQualifiedName[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_MemberTypes() extern "C" XmlQualifiedNameU5BU5D_t1471530361* XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) { { XmlQualifiedNameU5BU5D_t1471530361* L_0 = __this->get_memberTypes_18(); return L_0; } } // System.Object[] System.Xml.Schema.XmlSchemaSimpleTypeUnion::get_ValidatedTypes() extern "C" ObjectU5BU5D_t2843939325* XmlSchemaSimpleTypeUnion_get_ValidatedTypes_m461184707 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, const RuntimeMethod* method) { { ObjectU5BU5D_t2843939325* L_0 = __this->get_validatedTypes_19(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaSimpleTypeUnion::SetParent(System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaSimpleTypeUnion_SetParent_m2572616251 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, XmlSchemaObject_t1315720168 * ___parent0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeUnion_SetParent_m2572616251_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_1 = NULL; RuntimeObject* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchemaObject_t1315720168 * L_0 = ___parent0; XmlSchemaObject_SetParent_m3207914940(__this, L_0, /*hidden argument*/NULL); XmlSchemaObjectCollection_t1064819932 * L_1 = XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385(__this, /*hidden argument*/NULL); NullCheck(L_1); XmlSchemaObjectEnumerator_t503074204 * L_2 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_1, /*hidden argument*/NULL); V_1 = L_2; } IL_0013: try { // begin try (depth: 1) { goto IL_0026; } IL_0018: { XmlSchemaObjectEnumerator_t503074204 * L_3 = V_1; NullCheck(L_3); XmlSchemaObject_t1315720168 * L_4 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_3, /*hidden argument*/NULL); V_0 = L_4; XmlSchemaObject_t1315720168 * L_5 = V_0; NullCheck(L_5); VirtActionInvoker1< XmlSchemaObject_t1315720168 * >::Invoke(4 /* System.Void System.Xml.Schema.XmlSchemaObject::SetParent(System.Xml.Schema.XmlSchemaObject) */, L_5, __this); } IL_0026: { XmlSchemaObjectEnumerator_t503074204 * L_6 = V_1; NullCheck(L_6); bool L_7 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0018; } } IL_0031: { IL2CPP_LEAVE(0x48, FINALLY_0036); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0036; } FINALLY_0036: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_1; V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_8, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_9 = V_2; if (L_9) { goto IL_0041; } } IL_0040: { IL2CPP_END_FINALLY(54) } IL_0041: { RuntimeObject* L_10 = V_2; NullCheck(L_10); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_10); IL2CPP_END_FINALLY(54) } } // end finally (depth: 1) IL2CPP_CLEANUP(54) { IL2CPP_JUMP_TBL(0x48, IL_0048) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0048: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeUnion::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeUnion_Compile_m1320743964 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeUnion_Compile_m1320743964_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; XmlSchemaObject_t1315720168 * V_1 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_2 = NULL; XmlSchemaSimpleType_t2678868104 * V_3 = NULL; int32_t V_4 = 0; RuntimeObject* V_5 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(0); XmlSchemaObjectCollection_t1064819932 * L_4 = XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385(__this, /*hidden argument*/NULL); NullCheck(L_4); int32_t L_5 = CollectionBase_get_Count_m1708965601(L_4, /*hidden argument*/NULL); V_0 = L_5; XmlSchemaObjectCollection_t1064819932 * L_6 = __this->get_baseTypes_17(); NullCheck(L_6); XmlSchemaObjectEnumerator_t503074204 * L_7 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_6, /*hidden argument*/NULL); V_2 = L_7; } IL_0037: try { // begin try (depth: 1) { goto IL_0081; } IL_003c: { XmlSchemaObjectEnumerator_t503074204 * L_8 = V_2; NullCheck(L_8); XmlSchemaObject_t1315720168 * L_9 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_8, /*hidden argument*/NULL); V_1 = L_9; XmlSchemaObject_t1315720168 * L_10 = V_1; if (!L_10) { goto IL_0075; } } IL_0049: { XmlSchemaObject_t1315720168 * L_11 = V_1; if (!((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_11, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))) { goto IL_0075; } } IL_0054: { XmlSchemaObject_t1315720168 * L_12 = V_1; V_3 = ((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_12, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); int32_t L_13 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaSimpleType_t2678868104 * L_14 = V_3; ValidationEventHandler_t791314227 * L_15 = ___h0; XmlSchema_t3742557897 * L_16 = ___schema1; NullCheck(L_14); int32_t L_17 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(5 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_14, L_15, L_16); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_17))); goto IL_0081; } IL_0075: { ValidationEventHandler_t791314227 * L_18 = ___h0; XmlSchemaObject_error_m903554348(__this, L_18, _stringLiteral244141461, /*hidden argument*/NULL); } IL_0081: { XmlSchemaObjectEnumerator_t503074204 * L_19 = V_2; NullCheck(L_19); bool L_20 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_19, /*hidden argument*/NULL); if (L_20) { goto IL_003c; } } IL_008c: { IL2CPP_LEAVE(0xA6, FINALLY_0091); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0091; } FINALLY_0091: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_21 = V_2; V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_21, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_22 = V_5; if (L_22) { goto IL_009e; } } IL_009d: { IL2CPP_END_FINALLY(145) } IL_009e: { RuntimeObject* L_23 = V_5; NullCheck(L_23); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_23); IL2CPP_END_FINALLY(145) } } // end finally (depth: 1) IL2CPP_CLEANUP(145) { IL2CPP_JUMP_TBL(0xA6, IL_00a6) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00a6: { XmlQualifiedNameU5BU5D_t1471530361* L_24 = __this->get_memberTypes_18(); if (!L_24) { goto IL_011f; } } { V_4 = 0; goto IL_0110; } IL_00b9: { XmlQualifiedNameU5BU5D_t1471530361* L_25 = __this->get_memberTypes_18(); int32_t L_26 = V_4; NullCheck(L_25); int32_t L_27 = L_26; XmlQualifiedName_t2760654312 * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27)); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_29 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_28, (XmlQualifiedName_t2760654312 *)NULL, /*hidden argument*/NULL); if (L_29) { goto IL_00e0; } } { XmlQualifiedNameU5BU5D_t1471530361* L_30 = XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968(__this, /*hidden argument*/NULL); int32_t L_31 = V_4; NullCheck(L_30); int32_t L_32 = L_31; XmlQualifiedName_t2760654312 * L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_34 = XmlSchemaUtil_CheckQName_m3878061682(NULL /*static, unused*/, L_33, /*hidden argument*/NULL); if (L_34) { goto IL_00ff; } } IL_00e0: { ValidationEventHandler_t791314227 * L_35 = ___h0; XmlSchemaObject_error_m903554348(__this, L_35, _stringLiteral389571946, /*hidden argument*/NULL); XmlQualifiedNameU5BU5D_t1471530361* L_36 = __this->get_memberTypes_18(); int32_t L_37 = V_4; IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_38 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); NullCheck(L_36); ArrayElementTypeCheck (L_36, L_38); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (XmlQualifiedName_t2760654312 *)L_38); goto IL_010a; } IL_00ff: { int32_t L_39 = V_0; XmlQualifiedNameU5BU5D_t1471530361* L_40 = XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968(__this, /*hidden argument*/NULL); NullCheck(L_40); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_40)->max_length)))))); } IL_010a: { int32_t L_41 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1)); } IL_0110: { int32_t L_42 = V_4; XmlQualifiedNameU5BU5D_t1471530361* L_43 = __this->get_memberTypes_18(); NullCheck(L_43); if ((((int32_t)L_42) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_43)->max_length))))))) { goto IL_00b9; } } IL_011f: { int32_t L_44 = V_0; if (L_44) { goto IL_0131; } } { ValidationEventHandler_t791314227 * L_45 = ___h0; XmlSchemaObject_error_m903554348(__this, L_45, _stringLiteral598023171, /*hidden argument*/NULL); } IL_0131: { String_t* L_46 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_47 = ___schema1; NullCheck(L_47); Hashtable_t1853889766 * L_48 = XmlSchema_get_IDCollection_m3725452494(L_47, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_49 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_46, __this, L_48, L_49, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_50 = ___schema1; NullCheck(L_50); Guid_t L_51 = ((XmlSchemaObject_t1315720168 *)L_50)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_51); int32_t L_52 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_52; } } // System.Int32 System.Xml.Schema.XmlSchemaSimpleTypeUnion::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaSimpleTypeUnion_Validate_m1719836172 (XmlSchemaSimpleTypeUnion_t4071426880 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeUnion_Validate_m1719836172_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t2718874744 * V_0 = NULL; XmlQualifiedName_t2760654312 * V_1 = NULL; XmlQualifiedNameU5BU5D_t1471530361* V_2 = NULL; int32_t V_3 = 0; RuntimeObject * V_4 = NULL; XmlSchemaType_t2033747345 * V_5 = NULL; XmlSchemaSimpleType_t2678868104 * V_6 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_7 = NULL; int32_t V_8 = 0; RuntimeObject * V_9 = NULL; XmlSchemaSimpleType_t2678868104 * V_10 = NULL; RuntimeObject* V_11 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { XmlSchema_t3742557897 * L_0 = ___schema1; NullCheck(L_0); Guid_t L_1 = ((XmlSchemaObject_t1315720168 *)L_0)->get_ValidationId_8(); bool L_2 = XmlSchemaObject_IsValidated_m2227629761(__this, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0018; } } { int32_t L_3 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_3; } IL_0018: { ArrayList_t2718874744 * L_4 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_4, /*hidden argument*/NULL); V_0 = L_4; XmlQualifiedNameU5BU5D_t1471530361* L_5 = XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968(__this, /*hidden argument*/NULL); if (!L_5) { goto IL_011c; } } { XmlQualifiedNameU5BU5D_t1471530361* L_6 = XmlSchemaSimpleTypeUnion_get_MemberTypes_m1343252968(__this, /*hidden argument*/NULL); V_2 = L_6; V_3 = 0; goto IL_0113; } IL_0037: { XmlQualifiedNameU5BU5D_t1471530361* L_7 = V_2; int32_t L_8 = V_3; NullCheck(L_7); int32_t L_9 = L_8; XmlQualifiedName_t2760654312 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_1 = L_10; V_4 = NULL; XmlSchema_t3742557897 * L_11 = ___schema1; XmlQualifiedName_t2760654312 * L_12 = V_1; NullCheck(L_11); XmlSchemaType_t2033747345 * L_13 = XmlSchema_FindSchemaType_m3920891232(L_11, L_12, /*hidden argument*/NULL); V_5 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_13, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaType_t2033747345 * L_14 = V_5; if (!L_14) { goto IL_0072; } } { int32_t L_15 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); XmlSchemaType_t2033747345 * L_16 = V_5; ValidationEventHandler_t791314227 * L_17 = ___h0; XmlSchema_t3742557897 * L_18 = ___schema1; NullCheck(L_16); int32_t L_19 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaObject::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_16, L_17, L_18); ((XmlSchemaObject_t1315720168 *)__this)->set_errorCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_19))); XmlSchemaType_t2033747345 * L_20 = V_5; V_4 = L_20; goto IL_0106; } IL_0072: { XmlQualifiedName_t2760654312 * L_21 = V_1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_22 = ((XmlSchemaComplexType_t3740801802_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var))->get_AnyTypeName_43(); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_23 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_21, L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_008e; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_24 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); V_4 = L_24; goto IL_0106; } IL_008e: { XmlQualifiedName_t2760654312 * L_25 = V_1; NullCheck(L_25); String_t* L_26 = XmlQualifiedName_get_Namespace_m3957593392(L_25, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_27 = String_op_Equality_m920492651(NULL /*static, unused*/, L_26, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_27) { goto IL_00b8; } } { XmlQualifiedName_t2760654312 * L_28 = V_1; NullCheck(L_28); String_t* L_29 = XmlQualifiedName_get_Namespace_m3957593392(L_28, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral91702, /*hidden argument*/NULL); if (!L_30) { goto IL_00de; } } IL_00b8: { XmlQualifiedName_t2760654312 * L_31 = V_1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var); XmlSchemaDatatype_t322714710 * L_32 = XmlSchemaDatatype_FromName_m1668846326(NULL /*static, unused*/, L_31, /*hidden argument*/NULL); V_4 = L_32; RuntimeObject * L_33 = V_4; if (L_33) { goto IL_00d9; } } { ValidationEventHandler_t791314227 * L_34 = ___h0; XmlQualifiedName_t2760654312 * L_35 = V_1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_36 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral3470389865, L_35, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_34, L_36, /*hidden argument*/NULL); } IL_00d9: { goto IL_0106; } IL_00de: { XmlSchema_t3742557897 * L_37 = ___schema1; XmlQualifiedName_t2760654312 * L_38 = V_1; NullCheck(L_38); String_t* L_39 = XmlQualifiedName_get_Namespace_m3957593392(L_38, /*hidden argument*/NULL); NullCheck(L_37); bool L_40 = XmlSchema_IsNamespaceAbsent_m3899863769(L_37, L_39, /*hidden argument*/NULL); if (L_40) { goto IL_0106; } } { ValidationEventHandler_t791314227 * L_41 = ___h0; XmlQualifiedName_t2760654312 * L_42 = V_1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_43 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral508009477, L_42, _stringLiteral1962955403, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_41, L_43, /*hidden argument*/NULL); } IL_0106: { ArrayList_t2718874744 * L_44 = V_0; RuntimeObject * L_45 = V_4; NullCheck(L_44); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_44, L_45); int32_t L_46 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)); } IL_0113: { int32_t L_47 = V_3; XmlQualifiedNameU5BU5D_t1471530361* L_48 = V_2; NullCheck(L_48); if ((((int32_t)L_47) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_48)->max_length))))))) { goto IL_0037; } } IL_011c: { XmlSchemaObjectCollection_t1064819932 * L_49 = XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385(__this, /*hidden argument*/NULL); if (!L_49) { goto IL_0181; } } { XmlSchemaObjectCollection_t1064819932 * L_50 = XmlSchemaSimpleTypeUnion_get_BaseTypes_m3667566385(__this, /*hidden argument*/NULL); NullCheck(L_50); XmlSchemaObjectEnumerator_t503074204 * L_51 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_50, /*hidden argument*/NULL); V_7 = L_51; } IL_0134: try { // begin try (depth: 1) { goto IL_015a; } IL_0139: { XmlSchemaObjectEnumerator_t503074204 * L_52 = V_7; NullCheck(L_52); XmlSchemaObject_t1315720168 * L_53 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_52, /*hidden argument*/NULL); V_6 = ((XmlSchemaSimpleType_t2678868104 *)CastclassClass((RuntimeObject*)L_53, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_54 = V_6; ValidationEventHandler_t791314227 * L_55 = ___h0; XmlSchema_t3742557897 * L_56 = ___schema1; NullCheck(L_54); VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaSimpleType::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_54, L_55, L_56); ArrayList_t2718874744 * L_57 = V_0; XmlSchemaSimpleType_t2678868104 * L_58 = V_6; NullCheck(L_57); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_57, L_58); } IL_015a: { XmlSchemaObjectEnumerator_t503074204 * L_59 = V_7; NullCheck(L_59); bool L_60 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_59, /*hidden argument*/NULL); if (L_60) { goto IL_0139; } } IL_0166: { IL2CPP_LEAVE(0x181, FINALLY_016b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_016b; } FINALLY_016b: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_61 = V_7; V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_61, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_62 = V_11; if (L_62) { goto IL_0179; } } IL_0178: { IL2CPP_END_FINALLY(363) } IL_0179: { RuntimeObject* L_63 = V_11; NullCheck(L_63); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_63); IL2CPP_END_FINALLY(363) } } // end finally (depth: 1) IL2CPP_CLEANUP(363) { IL2CPP_JUMP_TBL(0x181, IL_0181) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0181: { ArrayList_t2718874744 * L_64 = V_0; NullCheck(L_64); ObjectU5BU5D_t2843939325* L_65 = VirtFuncInvoker0< ObjectU5BU5D_t2843939325* >::Invoke(47 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_64); __this->set_validatedTypes_19(L_65); ObjectU5BU5D_t2843939325* L_66 = __this->get_validatedTypes_19(); if (!L_66) { goto IL_0208; } } { ObjectU5BU5D_t2843939325* L_67 = __this->get_validatedTypes_19(); NullCheck(L_67); __this->set_validatedSchemaTypes_20(((XmlSchemaSimpleTypeU5BU5D_t1394089049*)SZArrayNew(XmlSchemaSimpleTypeU5BU5D_t1394089049_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_67)->max_length))))))); V_8 = 0; goto IL_01f9; } IL_01b3: { ObjectU5BU5D_t2843939325* L_68 = __this->get_validatedTypes_19(); int32_t L_69 = V_8; NullCheck(L_68); int32_t L_70 = L_69; RuntimeObject * L_71 = (L_68)->GetAt(static_cast<il2cpp_array_size_t>(L_70)); V_9 = L_71; RuntimeObject * L_72 = V_9; V_10 = ((XmlSchemaSimpleType_t2678868104 *)IsInstClass((RuntimeObject*)L_72, XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var)); XmlSchemaSimpleType_t2678868104 * L_73 = V_10; if (L_73) { goto IL_01e8; } } { RuntimeObject * L_74 = V_9; if (!L_74) { goto IL_01e8; } } { RuntimeObject * L_75 = V_9; NullCheck(((XmlSchemaDatatype_t322714710 *)CastclassClass((RuntimeObject*)L_75, XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var))); int32_t L_76 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Xml.Schema.XmlTypeCode System.Xml.Schema.XmlSchemaDatatype::get_TypeCode() */, ((XmlSchemaDatatype_t322714710 *)CastclassClass((RuntimeObject*)L_75, XmlSchemaDatatype_t322714710_il2cpp_TypeInfo_var))); XmlSchemaSimpleType_t2678868104 * L_77 = XmlSchemaType_GetBuiltInSimpleType_m1138863932(NULL /*static, unused*/, L_76, /*hidden argument*/NULL); V_10 = L_77; } IL_01e8: { XmlSchemaSimpleTypeU5BU5D_t1394089049* L_78 = __this->get_validatedSchemaTypes_20(); int32_t L_79 = V_8; XmlSchemaSimpleType_t2678868104 * L_80 = V_10; NullCheck(L_78); ArrayElementTypeCheck (L_78, L_80); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(L_79), (XmlSchemaSimpleType_t2678868104 *)L_80); int32_t L_81 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1)); } IL_01f9: { int32_t L_82 = V_8; ObjectU5BU5D_t2843939325* L_83 = __this->get_validatedTypes_19(); NullCheck(L_83); if ((((int32_t)L_82) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_83)->max_length))))))) { goto IL_01b3; } } IL_0208: { XmlSchema_t3742557897 * L_84 = ___schema1; NullCheck(L_84); Guid_t L_85 = ((XmlSchemaObject_t1315720168 *)L_84)->get_ValidationId_8(); ((XmlSchemaObject_t1315720168 *)__this)->set_ValidationId_8(L_85); int32_t L_86 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_86; } } // System.Xml.Schema.XmlSchemaSimpleTypeUnion System.Xml.Schema.XmlSchemaSimpleTypeUnion::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaSimpleTypeUnion_t4071426880 * XmlSchemaSimpleTypeUnion_Read_m4121525525 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaSimpleTypeUnion_Read_m4121525525_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaSimpleTypeUnion_t4071426880 * V_0 = NULL; Exception_t * V_1 = NULL; StringU5BU5D_t1281789340* V_2 = NULL; int32_t V_3 = 0; int32_t V_4 = 0; XmlSchemaAnnotation_t2553753397 * V_5 = NULL; XmlSchemaSimpleType_t2678868104 * V_6 = NULL; { XmlSchemaSimpleTypeUnion_t4071426880 * L_0 = (XmlSchemaSimpleTypeUnion_t4071426880 *)il2cpp_codegen_object_new(XmlSchemaSimpleTypeUnion_t4071426880_il2cpp_TypeInfo_var); XmlSchemaSimpleTypeUnion__ctor_m2055690608(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1991705772, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3345561586, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaSimpleTypeUnion_t4071426880 *)NULL; } IL_0056: { XmlSchemaSimpleTypeUnion_t4071426880 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaSimpleTypeUnion_t4071426880 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaSimpleTypeUnion_t4071426880 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0181; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaSimpleTypeUnion_t4071426880 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_0181; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral3729848572, /*hidden argument*/NULL); if (!L_30) { goto IL_011f; } } { XmlSchemaReader_t1164558392 * L_31 = ___reader0; NullCheck(L_31); String_t* L_32 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_31); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); StringU5BU5D_t1281789340* L_33 = XmlSchemaUtil_SplitList_m1641535596(NULL /*static, unused*/, L_32, /*hidden argument*/NULL); V_2 = L_33; XmlSchemaSimpleTypeUnion_t4071426880 * L_34 = V_0; StringU5BU5D_t1281789340* L_35 = V_2; NullCheck(L_35); NullCheck(L_34); L_34->set_memberTypes_18(((XmlQualifiedNameU5BU5D_t1471530361*)SZArrayNew(XmlQualifiedNameU5BU5D_t1471530361_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_35)->max_length))))))); V_3 = 0; goto IL_0111; } IL_00db: { XmlSchemaSimpleTypeUnion_t4071426880 * L_36 = V_0; NullCheck(L_36); XmlQualifiedNameU5BU5D_t1471530361* L_37 = L_36->get_memberTypes_18(); int32_t L_38 = V_3; XmlSchemaReader_t1164558392 * L_39 = ___reader0; StringU5BU5D_t1281789340* L_40 = V_2; int32_t L_41 = V_3; NullCheck(L_40); int32_t L_42 = L_41; String_t* L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42)); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_44 = XmlSchemaUtil_ToQName_m3017013972(NULL /*static, unused*/, L_39, L_43, (&V_1), /*hidden argument*/NULL); NullCheck(L_37); ArrayElementTypeCheck (L_37, L_44); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(L_38), (XmlQualifiedName_t2760654312 *)L_44); Exception_t * L_45 = V_1; if (!L_45) { goto IL_010d; } } { ValidationEventHandler_t791314227 * L_46 = ___h1; StringU5BU5D_t1281789340* L_47 = V_2; int32_t L_48 = V_3; NullCheck(L_47); int32_t L_49 = L_48; String_t* L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_51 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral3452614521, L_50, _stringLiteral1882176568, /*hidden argument*/NULL); Exception_t * L_52 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_46, L_51, L_52, /*hidden argument*/NULL); } IL_010d: { int32_t L_53 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)); } IL_0111: { int32_t L_54 = V_3; StringU5BU5D_t1281789340* L_55 = V_2; NullCheck(L_55); if ((((int32_t)L_54) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_55)->max_length))))))) { goto IL_00db; } } { goto IL_0181; } IL_011f: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); String_t* L_57 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_56); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_58 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_59 = String_op_Equality_m920492651(NULL /*static, unused*/, L_57, L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_0149; } } { XmlSchemaReader_t1164558392 * L_60 = ___reader0; NullCheck(L_60); String_t* L_61 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_60); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_62 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_61, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_62) { goto IL_015e; } } IL_0149: { XmlSchemaReader_t1164558392 * L_63 = ___reader0; NullCheck(L_63); String_t* L_64 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_63); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_65 = String_op_Equality_m920492651(NULL /*static, unused*/, L_64, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_65) { goto IL_017a; } } IL_015e: { ValidationEventHandler_t791314227 * L_66 = ___h1; XmlSchemaReader_t1164558392 * L_67 = ___reader0; NullCheck(L_67); String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_67); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_69 = String_Concat_m3937257545(NULL /*static, unused*/, L_68, _stringLiteral1850858467, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_66, L_69, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0181; } IL_017a: { XmlSchemaReader_t1164558392 * L_70 = ___reader0; XmlSchemaSimpleTypeUnion_t4071426880 * L_71 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_70, L_71, /*hidden argument*/NULL); } IL_0181: { XmlSchemaReader_t1164558392 * L_72 = ___reader0; NullCheck(L_72); bool L_73 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_72); if (L_73) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_74 = ___reader0; NullCheck(L_74); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_74); XmlSchemaReader_t1164558392 * L_75 = ___reader0; NullCheck(L_75); bool L_76 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_75); if (!L_76) { goto IL_01a0; } } { XmlSchemaSimpleTypeUnion_t4071426880 * L_77 = V_0; return L_77; } IL_01a0: { V_4 = 1; goto IL_026c; } IL_01a8: { XmlSchemaReader_t1164558392 * L_78 = ___reader0; NullCheck(L_78); int32_t L_79 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_78); if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)15))))) { goto IL_01e6; } } { XmlSchemaReader_t1164558392 * L_80 = ___reader0; NullCheck(L_80); String_t* L_81 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_80); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_82 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_81, _stringLiteral1991705772, /*hidden argument*/NULL); if (!L_82) { goto IL_01e1; } } { ValidationEventHandler_t791314227 * L_83 = ___h1; XmlSchemaReader_t1164558392 * L_84 = ___reader0; NullCheck(L_84); String_t* L_85 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_84); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_86 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2039531736, L_85, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_83, L_86, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01e1: { goto IL_0277; } IL_01e6: { int32_t L_87 = V_4; if ((((int32_t)L_87) > ((int32_t)1))) { goto IL_0223; } } { XmlSchemaReader_t1164558392 * L_88 = ___reader0; NullCheck(L_88); String_t* L_89 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_88); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_90 = String_op_Equality_m920492651(NULL /*static, unused*/, L_89, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_90) { goto IL_0223; } } { V_4 = 2; XmlSchemaReader_t1164558392 * L_91 = ___reader0; ValidationEventHandler_t791314227 * L_92 = ___h1; XmlSchemaAnnotation_t2553753397 * L_93 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_91, L_92, /*hidden argument*/NULL); V_5 = L_93; XmlSchemaAnnotation_t2553753397 * L_94 = V_5; if (!L_94) { goto IL_021e; } } { XmlSchemaSimpleTypeUnion_t4071426880 * L_95 = V_0; XmlSchemaAnnotation_t2553753397 * L_96 = V_5; NullCheck(L_95); XmlSchemaAnnotated_set_Annotation_m3050132480(L_95, L_96, /*hidden argument*/NULL); } IL_021e: { goto IL_026c; } IL_0223: { int32_t L_97 = V_4; if ((((int32_t)L_97) > ((int32_t)2))) { goto IL_0266; } } { XmlSchemaReader_t1164558392 * L_98 = ___reader0; NullCheck(L_98); String_t* L_99 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_98); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_100 = String_op_Equality_m920492651(NULL /*static, unused*/, L_99, _stringLiteral1113390247, /*hidden argument*/NULL); if (!L_100) { goto IL_0266; } } { V_4 = 2; XmlSchemaReader_t1164558392 * L_101 = ___reader0; ValidationEventHandler_t791314227 * L_102 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_103 = XmlSchemaSimpleType_Read_m1629189972(NULL /*static, unused*/, L_101, L_102, /*hidden argument*/NULL); V_6 = L_103; XmlSchemaSimpleType_t2678868104 * L_104 = V_6; if (!L_104) { goto IL_0261; } } { XmlSchemaSimpleTypeUnion_t4071426880 * L_105 = V_0; NullCheck(L_105); XmlSchemaObjectCollection_t1064819932 * L_106 = L_105->get_baseTypes_17(); XmlSchemaSimpleType_t2678868104 * L_107 = V_6; NullCheck(L_106); XmlSchemaObjectCollection_Add_m1142549045(L_106, L_107, /*hidden argument*/NULL); } IL_0261: { goto IL_026c; } IL_0266: { XmlSchemaReader_t1164558392 * L_108 = ___reader0; NullCheck(L_108); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_108, /*hidden argument*/NULL); } IL_026c: { XmlSchemaReader_t1164558392 * L_109 = ___reader0; NullCheck(L_109); bool L_110 = XmlSchemaReader_ReadNextElement_m611223709(L_109, /*hidden argument*/NULL); if (L_110) { goto IL_01a8; } } IL_0277: { XmlSchemaSimpleTypeUnion_t4071426880 * L_111 = V_0; return L_111; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaTotalDigitsFacet::.ctor() extern "C" void XmlSchemaTotalDigitsFacet__ctor_m585714547 (XmlSchemaTotalDigitsFacet_t297930215 * __this, const RuntimeMethod* method) { { XmlSchemaNumericFacet__ctor_m2383455012(__this, /*hidden argument*/NULL); return; } } // System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaTotalDigitsFacet::get_ThisFacet() extern "C" int32_t XmlSchemaTotalDigitsFacet_get_ThisFacet_m740239825 (XmlSchemaTotalDigitsFacet_t297930215 * __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)1024)); } } // System.Xml.Schema.XmlSchemaTotalDigitsFacet System.Xml.Schema.XmlSchemaTotalDigitsFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaTotalDigitsFacet_t297930215 * XmlSchemaTotalDigitsFacet_Read_m2720747555 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaTotalDigitsFacet_Read_m2720747555_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaTotalDigitsFacet_t297930215 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; { XmlSchemaTotalDigitsFacet_t297930215 * L_0 = (XmlSchemaTotalDigitsFacet_t297930215 *)il2cpp_codegen_object_new(XmlSchemaTotalDigitsFacet_t297930215_il2cpp_TypeInfo_var); XmlSchemaTotalDigitsFacet__ctor_m585714547(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1504613137, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral405320503, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaTotalDigitsFacet_t297930215 *)NULL; } IL_0056: { XmlSchemaTotalDigitsFacet_t297930215 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaTotalDigitsFacet_t297930215 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaTotalDigitsFacet_t297930215 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0172; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaTotalDigitsFacet_t297930215 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_0172; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral1709130670, /*hidden argument*/NULL); if (!L_30) { goto IL_00ea; } } { XmlSchemaTotalDigitsFacet_t297930215 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_33 = XmlSchemaUtil_ReadBoolAttribute_m854567538(NULL /*static, unused*/, L_32, (&V_1), /*hidden argument*/NULL); NullCheck(L_31); VirtActionInvoker1< bool >::Invoke(10 /* System.Void System.Xml.Schema.XmlSchemaFacet::set_IsFixed(System.Boolean) */, L_31, L_33); Exception_t * L_34 = V_1; if (!L_34) { goto IL_00e5; } } { ValidationEventHandler_t791314227 * L_35 = ___h1; XmlSchemaReader_t1164558392 * L_36 = ___reader0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_36); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_38 = String_Concat_m3937257545(NULL /*static, unused*/, L_37, _stringLiteral2455250758, /*hidden argument*/NULL); Exception_t * L_39 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_35, L_38, L_39, /*hidden argument*/NULL); } IL_00e5: { goto IL_0172; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_42 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, _stringLiteral3493618073, /*hidden argument*/NULL); if (!L_42) { goto IL_0110; } } { XmlSchemaTotalDigitsFacet_t297930215 * L_43 = V_0; XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_44); NullCheck(L_43); XmlSchemaFacet_set_Value_m2382101717(L_43, L_45, /*hidden argument*/NULL); goto IL_0172; } IL_0110: { XmlSchemaReader_t1164558392 * L_46 = ___reader0; NullCheck(L_46); String_t* L_47 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_46); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_48 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_47, L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_013a; } } { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); String_t* L_51 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_50); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_52 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_51, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_52) { goto IL_014f; } } IL_013a: { XmlSchemaReader_t1164558392 * L_53 = ___reader0; NullCheck(L_53); String_t* L_54 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_53); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_55 = String_op_Equality_m920492651(NULL /*static, unused*/, L_54, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_55) { goto IL_016b; } } IL_014f: { ValidationEventHandler_t791314227 * L_56 = ___h1; XmlSchemaReader_t1164558392 * L_57 = ___reader0; NullCheck(L_57); String_t* L_58 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_57); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_59 = String_Concat_m3937257545(NULL /*static, unused*/, L_58, _stringLiteral3539998349, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_56, L_59, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0172; } IL_016b: { XmlSchemaReader_t1164558392 * L_60 = ___reader0; XmlSchemaTotalDigitsFacet_t297930215 * L_61 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_60, L_61, /*hidden argument*/NULL); } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); bool L_63 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_62); if (L_63) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_64); XmlSchemaReader_t1164558392 * L_65 = ___reader0; NullCheck(L_65); bool L_66 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_65); if (!L_66) { goto IL_0191; } } { XmlSchemaTotalDigitsFacet_t297930215 * L_67 = V_0; return L_67; } IL_0191: { V_2 = 1; goto IL_0214; } IL_0198: { XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); int32_t L_69 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_68); if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)15))))) { goto IL_01d6; } } { XmlSchemaReader_t1164558392 * L_70 = ___reader0; NullCheck(L_70); String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_70); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_72 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_71, _stringLiteral1504613137, /*hidden argument*/NULL); if (!L_72) { goto IL_01d1; } } { ValidationEventHandler_t791314227 * L_73 = ___h1; XmlSchemaReader_t1164558392 * L_74 = ___reader0; NullCheck(L_74); String_t* L_75 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_74); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_76 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral175443087, L_75, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_73, L_76, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01d1: { goto IL_021f; } IL_01d6: { int32_t L_77 = V_2; if ((((int32_t)L_77) > ((int32_t)1))) { goto IL_020e; } } { XmlSchemaReader_t1164558392 * L_78 = ___reader0; NullCheck(L_78); String_t* L_79 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_78); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_80 = String_op_Equality_m920492651(NULL /*static, unused*/, L_79, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_80) { goto IL_020e; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_81 = ___reader0; ValidationEventHandler_t791314227 * L_82 = ___h1; XmlSchemaAnnotation_t2553753397 * L_83 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_81, L_82, /*hidden argument*/NULL); V_3 = L_83; XmlSchemaAnnotation_t2553753397 * L_84 = V_3; if (!L_84) { goto IL_0209; } } { XmlSchemaTotalDigitsFacet_t297930215 * L_85 = V_0; XmlSchemaAnnotation_t2553753397 * L_86 = V_3; NullCheck(L_85); XmlSchemaAnnotated_set_Annotation_m3050132480(L_85, L_86, /*hidden argument*/NULL); } IL_0209: { goto IL_0214; } IL_020e: { XmlSchemaReader_t1164558392 * L_87 = ___reader0; NullCheck(L_87); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_87, /*hidden argument*/NULL); } IL_0214: { XmlSchemaReader_t1164558392 * L_88 = ___reader0; NullCheck(L_88); bool L_89 = XmlSchemaReader_ReadNextElement_m611223709(L_88, /*hidden argument*/NULL); if (L_89) { goto IL_0198; } } IL_021f: { XmlSchemaTotalDigitsFacet_t297930215 * L_90 = V_0; return L_90; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaType::.ctor() extern "C" void XmlSchemaType__ctor_m3211054051 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaType__ctor_m3211054051_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaAnnotated__ctor_m2738129066(__this, /*hidden argument*/NULL); __this->set_final_16(((int32_t)256)); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_0 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); __this->set_QNameInternal_25(L_0); return; } } // System.String System.Xml.Schema.XmlSchemaType::get_Name() extern "C" String_t* XmlSchemaType_get_Name_m599822945 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_name_18(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaType::set_Name(System.String) extern "C" void XmlSchemaType_set_Name_m786219427 (XmlSchemaType_t2033747345 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_name_18(L_0); return; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::get_Final() extern "C" int32_t XmlSchemaType_get_Final_m2717235480 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_final_16(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaType::set_Final(System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" void XmlSchemaType_set_Final_m383026665 (XmlSchemaType_t2033747345 * __this, int32_t ___value0, const RuntimeMethod* method) { { int32_t L_0 = ___value0; __this->set_final_16(L_0); return; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaType::get_QualifiedName() extern "C" XmlQualifiedName_t2760654312 * XmlSchemaType_get_QualifiedName_m2122094841 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { XmlQualifiedName_t2760654312 * L_0 = __this->get_QNameInternal_25(); return L_0; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::get_FinalResolved() extern "C" int32_t XmlSchemaType_get_FinalResolved_m213206105 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_finalResolved_24(); return L_0; } } // System.Object System.Xml.Schema.XmlSchemaType::get_BaseSchemaType() extern "C" RuntimeObject * XmlSchemaType_get_BaseSchemaType_m3936227521 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaType_get_BaseSchemaType_m3936227521_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaType_t2033747345 * L_0 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0012; } } { XmlSchemaType_t2033747345 * L_1 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); return L_1; } IL_0012: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_2 = XmlSchemaComplexType_get_AnyType_m2038550701(NULL /*static, unused*/, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(XmlSchemaType_t2033747345 *)__this) == ((RuntimeObject*)(XmlSchemaComplexType_t3740801802 *)L_2)))) { goto IL_001f; } } { return NULL; } IL_001f: { XmlSchemaDatatype_t322714710 * L_3 = XmlSchemaType_get_Datatype_m3072197688(__this, /*hidden argument*/NULL); return L_3; } } // System.Xml.Schema.XmlSchemaType System.Xml.Schema.XmlSchemaType::get_BaseXmlSchemaType() extern "C" XmlSchemaType_t2033747345 * XmlSchemaType_get_BaseXmlSchemaType_m4221231559 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { XmlSchemaType_t2033747345 * L_0 = __this->get_BaseXmlSchemaTypeInternal_21(); return L_0; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaType::get_DerivedBy() extern "C" int32_t XmlSchemaType_get_DerivedBy_m1544461244 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_resolvedDerivedBy_23(); return L_0; } } // System.Xml.Schema.XmlSchemaDatatype System.Xml.Schema.XmlSchemaType::get_Datatype() extern "C" XmlSchemaDatatype_t322714710 * XmlSchemaType_get_Datatype_m3072197688 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { XmlSchemaDatatype_t322714710 * L_0 = __this->get_DatatypeInternal_22(); return L_0; } } // System.Boolean System.Xml.Schema.XmlSchemaType::get_IsMixed() extern "C" bool XmlSchemaType_get_IsMixed_m1412329401 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isMixed_17(); return L_0; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.XmlQualifiedName) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaType_GetBuiltInSimpleType_m1336857001 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qualifiedName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaType_GetBuiltInSimpleType_m1336857001_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Dictionary_2_t2736202052 * V_1 = NULL; int32_t V_2 = 0; { XmlQualifiedName_t2760654312 * L_0 = ___qualifiedName0; NullCheck(L_0); String_t* L_1 = XmlQualifiedName_get_Namespace_m3957593392(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_2 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, _stringLiteral91702, /*hidden argument*/NULL); if (!L_2) { goto IL_00b0; } } { XmlQualifiedName_t2760654312 * L_3 = ___qualifiedName0; NullCheck(L_3); String_t* L_4 = XmlQualifiedName_get_Name_m815040483(L_3, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; if (!L_5) { goto IL_00ae; } } { Dictionary_2_t2736202052 * L_6 = ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map42_26(); if (L_6) { goto IL_0069; } } { Dictionary_2_t2736202052 * L_7 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_7, 4, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_1 = L_7; Dictionary_2_t2736202052 * L_8 = V_1; NullCheck(L_8); Dictionary_2_Add_m282647386(L_8, _stringLiteral3716671661, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_9 = V_1; NullCheck(L_9); Dictionary_2_Add_m282647386(L_9, _stringLiteral724378170, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_10 = V_1; NullCheck(L_10); Dictionary_2_Add_m282647386(L_10, _stringLiteral1777380071, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_11 = V_1; NullCheck(L_11); Dictionary_2_Add_m282647386(L_11, _stringLiteral622047031, 3, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_12 = V_1; ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map42_26(L_12); } IL_0069: { Dictionary_2_t2736202052 * L_13 = ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map42_26(); String_t* L_14 = V_0; NullCheck(L_13); bool L_15 = Dictionary_2_TryGetValue_m1013208020(L_13, L_14, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_15) { goto IL_00ae; } } { int32_t L_16 = V_2; switch (L_16) { case 0: { goto IL_0096; } case 1: { goto IL_009c; } case 2: { goto IL_00a2; } case 3: { goto IL_00a8; } } } { goto IL_00ae; } IL_0096: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_17 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtUntypedAtomic_78(); return L_17; } IL_009c: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_18 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtAnyAtomicType_79(); return L_18; } IL_00a2: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_19 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtYearMonthDuration_80(); return L_19; } IL_00a8: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_20 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtDayTimeDuration_81(); return L_20; } IL_00ae: { return (XmlSchemaSimpleType_t2678868104 *)NULL; } IL_00b0: { XmlQualifiedName_t2760654312 * L_21 = ___qualifiedName0; NullCheck(L_21); String_t* L_22 = XmlQualifiedName_get_Namespace_m3957593392(L_21, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_23 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_22, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_23) { goto IL_00c7; } } { return (XmlSchemaSimpleType_t2678868104 *)NULL; } IL_00c7: { XmlQualifiedName_t2760654312 * L_24 = ___qualifiedName0; NullCheck(L_24); String_t* L_25 = XmlQualifiedName_get_Name_m815040483(L_24, /*hidden argument*/NULL); V_0 = L_25; String_t* L_26 = V_0; if (!L_26) { goto IL_050b; } } { Dictionary_2_t2736202052 * L_27 = ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map43_27(); if (L_27) { goto IL_032c; } } { Dictionary_2_t2736202052 * L_28 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_28, ((int32_t)45), /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_1 = L_28; Dictionary_2_t2736202052 * L_29 = V_1; NullCheck(L_29); Dictionary_2_Add_m282647386(L_29, _stringLiteral3319458126, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_30 = V_1; NullCheck(L_30); Dictionary_2_Add_m282647386(L_30, _stringLiteral1236128813, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_31 = V_1; NullCheck(L_31); Dictionary_2_Add_m282647386(L_31, _stringLiteral228529742, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_32 = V_1; NullCheck(L_32); Dictionary_2_Add_m282647386(L_32, _stringLiteral2033559650, 3, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_33 = V_1; NullCheck(L_33); Dictionary_2_Add_m282647386(L_33, _stringLiteral807124363, 4, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_34 = V_1; NullCheck(L_34); Dictionary_2_Add_m282647386(L_34, _stringLiteral1235497039, 5, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_35 = V_1; NullCheck(L_35); Dictionary_2_Add_m282647386(L_35, _stringLiteral1501416449, 6, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_36 = V_1; NullCheck(L_36); Dictionary_2_Add_m282647386(L_36, _stringLiteral3798050081, 7, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_37 = V_1; NullCheck(L_37); Dictionary_2_Add_m282647386(L_37, _stringLiteral63249541, 8, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_38 = V_1; NullCheck(L_38); Dictionary_2_Add_m282647386(L_38, _stringLiteral1272578818, ((int32_t)9), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_39 = V_1; NullCheck(L_39); Dictionary_2_Add_m282647386(L_39, _stringLiteral2722193337, ((int32_t)10), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_40 = V_1; NullCheck(L_40); Dictionary_2_Add_m282647386(L_40, _stringLiteral110852430, ((int32_t)11), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_41 = V_1; NullCheck(L_41); Dictionary_2_Add_m282647386(L_41, _stringLiteral2834935051, ((int32_t)12), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_42 = V_1; NullCheck(L_42); Dictionary_2_Add_m282647386(L_42, _stringLiteral3447975646, ((int32_t)13), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_43 = V_1; NullCheck(L_43); Dictionary_2_Add_m282647386(L_43, _stringLiteral3593584042, ((int32_t)14), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_44 = V_1; NullCheck(L_44); Dictionary_2_Add_m282647386(L_44, _stringLiteral841379268, ((int32_t)15), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_45 = V_1; NullCheck(L_45); Dictionary_2_Add_m282647386(L_45, _stringLiteral1671489303, ((int32_t)16), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_46 = V_1; NullCheck(L_46); Dictionary_2_Add_m282647386(L_46, _stringLiteral723171524, ((int32_t)17), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_47 = V_1; NullCheck(L_47); Dictionary_2_Add_m282647386(L_47, _stringLiteral2799480295, ((int32_t)18), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_48 = V_1; NullCheck(L_48); Dictionary_2_Add_m282647386(L_48, _stringLiteral215120649, ((int32_t)19), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_49 = V_1; NullCheck(L_49); Dictionary_2_Add_m282647386(L_49, _stringLiteral3244750353, ((int32_t)20), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_50 = V_1; NullCheck(L_50); Dictionary_2_Add_m282647386(L_50, _stringLiteral2005331395, ((int32_t)21), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_51 = V_1; NullCheck(L_51); Dictionary_2_Add_m282647386(L_51, _stringLiteral2143290860, ((int32_t)22), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_52 = V_1; NullCheck(L_52); Dictionary_2_Add_m282647386(L_52, _stringLiteral4080338551, ((int32_t)23), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_53 = V_1; NullCheck(L_53); Dictionary_2_Add_m282647386(L_53, _stringLiteral3245737591, ((int32_t)24), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_54 = V_1; NullCheck(L_54); Dictionary_2_Add_m282647386(L_54, _stringLiteral62725275, ((int32_t)25), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_55 = V_1; NullCheck(L_55); Dictionary_2_Add_m282647386(L_55, _stringLiteral996260479, ((int32_t)26), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_56 = V_1; NullCheck(L_56); Dictionary_2_Add_m282647386(L_56, _stringLiteral3456546791, ((int32_t)27), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_57 = V_1; NullCheck(L_57); Dictionary_2_Add_m282647386(L_57, _stringLiteral3671082123, ((int32_t)28), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_58 = V_1; NullCheck(L_58); Dictionary_2_Add_m282647386(L_58, _stringLiteral3665773707, ((int32_t)29), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_59 = V_1; NullCheck(L_59); Dictionary_2_Add_m282647386(L_59, _stringLiteral2851744811, ((int32_t)30), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_60 = V_1; NullCheck(L_60); Dictionary_2_Add_m282647386(L_60, _stringLiteral4276600584, ((int32_t)31), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_61 = V_1; NullCheck(L_61); Dictionary_2_Add_m282647386(L_61, _stringLiteral1572351178, ((int32_t)32), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_62 = V_1; NullCheck(L_62); Dictionary_2_Add_m282647386(L_62, _stringLiteral3820814978, ((int32_t)33), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_63 = V_1; NullCheck(L_63); Dictionary_2_Add_m282647386(L_63, _stringLiteral4120511215, ((int32_t)34), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_64 = V_1; NullCheck(L_64); Dictionary_2_Add_m282647386(L_64, _stringLiteral2409402648, ((int32_t)35), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_65 = V_1; NullCheck(L_65); Dictionary_2_Add_m282647386(L_65, _stringLiteral2553676557, ((int32_t)36), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_66 = V_1; NullCheck(L_66); Dictionary_2_Add_m282647386(L_66, _stringLiteral1535819814, ((int32_t)37), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_67 = V_1; NullCheck(L_67); Dictionary_2_Add_m282647386(L_67, _stringLiteral1274151684, ((int32_t)38), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_68 = V_1; NullCheck(L_68); Dictionary_2_Add_m282647386(L_68, _stringLiteral3835929719, ((int32_t)39), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_69 = V_1; NullCheck(L_69); Dictionary_2_Add_m282647386(L_69, _stringLiteral425891063, ((int32_t)40), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_70 = V_1; NullCheck(L_70); Dictionary_2_Add_m282647386(L_70, _stringLiteral1873420042, ((int32_t)41), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_71 = V_1; NullCheck(L_71); Dictionary_2_Add_m282647386(L_71, _stringLiteral3755388189, ((int32_t)42), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_72 = V_1; NullCheck(L_72); Dictionary_2_Add_m282647386(L_72, _stringLiteral3873205229, ((int32_t)43), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_73 = V_1; NullCheck(L_73); Dictionary_2_Add_m282647386(L_73, _stringLiteral3773869350, ((int32_t)44), /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_74 = V_1; ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map43_27(L_74); } IL_032c: { Dictionary_2_t2736202052 * L_75 = ((XmlSchemaType_t2033747345_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaType_t2033747345_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map43_27(); String_t* L_76 = V_0; NullCheck(L_75); bool L_77 = Dictionary_2_TryGetValue_m1013208020(L_75, L_76, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_77) { goto IL_050b; } } { int32_t L_78 = V_2; switch (L_78) { case 0: { goto IL_03fd; } case 1: { goto IL_0403; } case 2: { goto IL_0409; } case 3: { goto IL_040f; } case 4: { goto IL_0415; } case 5: { goto IL_041b; } case 6: { goto IL_0421; } case 7: { goto IL_0427; } case 8: { goto IL_042d; } case 9: { goto IL_0433; } case 10: { goto IL_0439; } case 11: { goto IL_043f; } case 12: { goto IL_0445; } case 13: { goto IL_044b; } case 14: { goto IL_0451; } case 15: { goto IL_0457; } case 16: { goto IL_045d; } case 17: { goto IL_0463; } case 18: { goto IL_0469; } case 19: { goto IL_046f; } case 20: { goto IL_0475; } case 21: { goto IL_047b; } case 22: { goto IL_0481; } case 23: { goto IL_0487; } case 24: { goto IL_048d; } case 25: { goto IL_0493; } case 26: { goto IL_0499; } case 27: { goto IL_049f; } case 28: { goto IL_04a5; } case 29: { goto IL_04ab; } case 30: { goto IL_04b1; } case 31: { goto IL_04b7; } case 32: { goto IL_04bd; } case 33: { goto IL_04c3; } case 34: { goto IL_04c9; } case 35: { goto IL_04cf; } case 36: { goto IL_04d5; } case 37: { goto IL_04db; } case 38: { goto IL_04e1; } case 39: { goto IL_04e7; } case 40: { goto IL_04ed; } case 41: { goto IL_04f3; } case 42: { goto IL_04f9; } case 43: { goto IL_04ff; } case 44: { goto IL_0505; } } } { goto IL_050b; } IL_03fd: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_79 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsAnySimpleType_33(); return L_79; } IL_0403: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_80 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsString_34(); return L_80; } IL_0409: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_81 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsBoolean_35(); return L_81; } IL_040f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_82 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDecimal_36(); return L_82; } IL_0415: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_83 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsFloat_37(); return L_83; } IL_041b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_84 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDouble_38(); return L_84; } IL_0421: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_85 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDuration_39(); return L_85; } IL_0427: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_86 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDateTime_40(); return L_86; } IL_042d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_87 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsTime_41(); return L_87; } IL_0433: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_88 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDate_42(); return L_88; } IL_0439: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_89 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGYearMonth_43(); return L_89; } IL_043f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_90 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGYear_44(); return L_90; } IL_0445: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_91 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGMonthDay_45(); return L_91; } IL_044b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_92 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGDay_46(); return L_92; } IL_0451: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_93 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGMonth_47(); return L_93; } IL_0457: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_94 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsHexBinary_48(); return L_94; } IL_045d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_95 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsBase64Binary_49(); return L_95; } IL_0463: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_96 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsAnyUri_50(); return L_96; } IL_0469: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_97 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsQName_51(); return L_97; } IL_046f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_98 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNotation_52(); return L_98; } IL_0475: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_99 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNormalizedString_53(); return L_99; } IL_047b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_100 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsToken_54(); return L_100; } IL_0481: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_101 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsLanguage_55(); return L_101; } IL_0487: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_102 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNMToken_56(); return L_102; } IL_048d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_103 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNMTokens_57(); return L_103; } IL_0493: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_104 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsName_58(); return L_104; } IL_0499: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_105 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNCName_59(); return L_105; } IL_049f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_106 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsID_60(); return L_106; } IL_04a5: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_107 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsIDRef_61(); return L_107; } IL_04ab: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_108 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsIDRefs_62(); return L_108; } IL_04b1: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_109 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsEntity_63(); return L_109; } IL_04b7: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_110 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsEntities_64(); return L_110; } IL_04bd: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_111 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsInteger_65(); return L_111; } IL_04c3: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_112 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNonPositiveInteger_66(); return L_112; } IL_04c9: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_113 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNegativeInteger_67(); return L_113; } IL_04cf: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_114 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsLong_68(); return L_114; } IL_04d5: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_115 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsInt_69(); return L_115; } IL_04db: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_116 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsShort_70(); return L_116; } IL_04e1: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_117 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsByte_71(); return L_117; } IL_04e7: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_118 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNonNegativeInteger_72(); return L_118; } IL_04ed: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_119 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsPositiveInteger_77(); return L_119; } IL_04f3: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_120 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedLong_73(); return L_120; } IL_04f9: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_121 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedInt_74(); return L_121; } IL_04ff: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_122 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedShort_75(); return L_122; } IL_0505: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_123 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedByte_76(); return L_123; } IL_050b: { return (XmlSchemaSimpleType_t2678868104 *)NULL; } } // System.Xml.Schema.XmlSchemaSimpleType System.Xml.Schema.XmlSchemaType::GetBuiltInSimpleType(System.Xml.Schema.XmlTypeCode) extern "C" XmlSchemaSimpleType_t2678868104 * XmlSchemaType_GetBuiltInSimpleType_m1138863932 (RuntimeObject * __this /* static, unused */, int32_t ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaType_GetBuiltInSimpleType_m1138863932_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = ___type0; V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_00e9; } case 1: { goto IL_00e9; } case 2: { goto IL_00e9; } case 3: { goto IL_00e9; } case 4: { goto IL_00e9; } case 5: { goto IL_00e9; } case 6: { goto IL_00e9; } case 7: { goto IL_00e9; } case 8: { goto IL_00e9; } case 9: { goto IL_00e9; } case 10: { goto IL_00eb; } case 11: { goto IL_00f1; } case 12: { goto IL_00f7; } case 13: { goto IL_00fd; } case 14: { goto IL_0103; } case 15: { goto IL_0109; } case 16: { goto IL_010f; } case 17: { goto IL_0115; } case 18: { goto IL_011b; } case 19: { goto IL_0121; } case 20: { goto IL_0127; } case 21: { goto IL_012d; } case 22: { goto IL_0133; } case 23: { goto IL_0139; } case 24: { goto IL_013f; } case 25: { goto IL_0145; } case 26: { goto IL_014b; } case 27: { goto IL_0151; } case 28: { goto IL_0157; } case 29: { goto IL_015d; } case 30: { goto IL_0163; } case 31: { goto IL_0169; } case 32: { goto IL_016f; } case 33: { goto IL_0175; } case 34: { goto IL_017b; } case 35: { goto IL_0181; } case 36: { goto IL_0187; } case 37: { goto IL_018d; } case 38: { goto IL_0193; } case 39: { goto IL_0199; } case 40: { goto IL_019f; } case 41: { goto IL_01a5; } case 42: { goto IL_01ab; } case 43: { goto IL_01b1; } case 44: { goto IL_01b7; } case 45: { goto IL_01bd; } case 46: { goto IL_01c3; } case 47: { goto IL_01c9; } case 48: { goto IL_01cf; } case 49: { goto IL_01d5; } case 50: { goto IL_01db; } case 51: { goto IL_01e1; } case 52: { goto IL_01e7; } case 53: { goto IL_01ed; } case 54: { goto IL_01f3; } } } { goto IL_01f9; } IL_00e9: { return (XmlSchemaSimpleType_t2678868104 *)NULL; } IL_00eb: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_2 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtAnyAtomicType_79(); return L_2; } IL_00f1: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_3 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtUntypedAtomic_78(); return L_3; } IL_00f7: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_4 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsString_34(); return L_4; } IL_00fd: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_5 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsBoolean_35(); return L_5; } IL_0103: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_6 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDecimal_36(); return L_6; } IL_0109: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_7 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsFloat_37(); return L_7; } IL_010f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_8 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDouble_38(); return L_8; } IL_0115: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_9 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDuration_39(); return L_9; } IL_011b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_10 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDateTime_40(); return L_10; } IL_0121: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_11 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsTime_41(); return L_11; } IL_0127: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_12 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsDate_42(); return L_12; } IL_012d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_13 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGYearMonth_43(); return L_13; } IL_0133: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_14 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGYear_44(); return L_14; } IL_0139: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_15 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGMonthDay_45(); return L_15; } IL_013f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_16 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGDay_46(); return L_16; } IL_0145: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_17 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsGMonth_47(); return L_17; } IL_014b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_18 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsHexBinary_48(); return L_18; } IL_0151: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_19 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsBase64Binary_49(); return L_19; } IL_0157: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_20 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsAnyUri_50(); return L_20; } IL_015d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_21 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsQName_51(); return L_21; } IL_0163: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_22 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNotation_52(); return L_22; } IL_0169: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_23 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNormalizedString_53(); return L_23; } IL_016f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_24 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsToken_54(); return L_24; } IL_0175: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_25 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsLanguage_55(); return L_25; } IL_017b: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_26 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNMToken_56(); return L_26; } IL_0181: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_27 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsName_58(); return L_27; } IL_0187: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_28 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNCName_59(); return L_28; } IL_018d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_29 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsID_60(); return L_29; } IL_0193: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_30 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsIDRef_61(); return L_30; } IL_0199: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_31 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsEntity_63(); return L_31; } IL_019f: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_32 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsInteger_65(); return L_32; } IL_01a5: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_33 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNonPositiveInteger_66(); return L_33; } IL_01ab: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_34 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNegativeInteger_67(); return L_34; } IL_01b1: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_35 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsLong_68(); return L_35; } IL_01b7: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_36 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsInt_69(); return L_36; } IL_01bd: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_37 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsShort_70(); return L_37; } IL_01c3: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_38 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsByte_71(); return L_38; } IL_01c9: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_39 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsNonNegativeInteger_72(); return L_39; } IL_01cf: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_40 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedLong_73(); return L_40; } IL_01d5: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_41 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedInt_74(); return L_41; } IL_01db: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_42 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedShort_75(); return L_42; } IL_01e1: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_43 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsUnsignedByte_76(); return L_43; } IL_01e7: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_44 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XsPositiveInteger_77(); return L_44; } IL_01ed: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_45 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtYearMonthDuration_80(); return L_45; } IL_01f3: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XmlSchemaSimpleType_t2678868104 * L_46 = ((XmlSchemaSimpleType_t2678868104_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var))->get_XdtDayTimeDuration_81(); return L_46; } IL_01f9: { return (XmlSchemaSimpleType_t2678868104 *)NULL; } } // System.Boolean System.Xml.Schema.XmlSchemaType::ValidateRecursionCheck() extern "C" bool XmlSchemaType_ValidateRecursionCheck_m3062154423 (XmlSchemaType_t2033747345 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaType_ValidateRecursionCheck_m3062154423_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaType_t2033747345 * V_0 = NULL; bool V_1 = false; { bool L_0 = __this->get_recursed_19(); if (!L_0) { goto IL_0017; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaComplexType_t3740801802_il2cpp_TypeInfo_var); XmlSchemaComplexType_t3740801802 * L_1 = XmlSchemaComplexType_get_AnyType_m2038550701(NULL /*static, unused*/, /*hidden argument*/NULL); return (bool)((((int32_t)((((RuntimeObject*)(XmlSchemaType_t2033747345 *)__this) == ((RuntimeObject*)(XmlSchemaComplexType_t3740801802 *)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0017: { __this->set_recursed_19((bool)1); XmlSchemaType_t2033747345 * L_2 = XmlSchemaType_get_BaseXmlSchemaType_m4221231559(__this, /*hidden argument*/NULL); V_0 = L_2; V_1 = (bool)0; XmlSchemaType_t2033747345 * L_3 = V_0; if (!L_3) { goto IL_0034; } } { XmlSchemaType_t2033747345 * L_4 = V_0; NullCheck(L_4); bool L_5 = XmlSchemaType_ValidateRecursionCheck_m3062154423(L_4, /*hidden argument*/NULL); V_1 = L_5; } IL_0034: { __this->set_recursed_19((bool)0); bool L_6 = V_1; return L_6; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaUnique::.ctor() extern "C" void XmlSchemaUnique__ctor_m274875952 (XmlSchemaUnique_t2867867737 * __this, const RuntimeMethod* method) { { XmlSchemaIdentityConstraint__ctor_m3826864011(__this, /*hidden argument*/NULL); return; } } // System.Int32 System.Xml.Schema.XmlSchemaUnique::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaUnique_Compile_m3103240227 (XmlSchemaUnique_t2867867737 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { { ValidationEventHandler_t791314227 * L_0 = ___h0; XmlSchema_t3742557897 * L_1 = ___schema1; int32_t L_2 = XmlSchemaIdentityConstraint_Compile_m3517703601(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 System.Xml.Schema.XmlSchemaUnique::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaUnique_Validate_m404514977 (XmlSchemaUnique_t2867867737 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { { int32_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_0; } } // System.Xml.Schema.XmlSchemaUnique System.Xml.Schema.XmlSchemaUnique::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaUnique_t2867867737 * XmlSchemaUnique_Read_m1197168435 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUnique_Read_m1197168435_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaUnique_t2867867737 * V_0 = NULL; int32_t V_1 = 0; XmlSchemaAnnotation_t2553753397 * V_2 = NULL; XmlSchemaXPath_t3156455507 * V_3 = NULL; XmlSchemaXPath_t3156455507 * V_4 = NULL; { XmlSchemaUnique_t2867867737 * L_0 = (XmlSchemaUnique_t2867867737 *)il2cpp_codegen_object_new(XmlSchemaUnique_t2867867737_il2cpp_TypeInfo_var); XmlSchemaUnique__ctor_m274875952(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral379716803, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1289618267, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaUnique_t2867867737 *)NULL; } IL_0056: { XmlSchemaUnique_t2867867737 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaUnique_t2867867737 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaUnique_t2867867737 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_012d; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaUnique_t2867867737 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_012d; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral62725243, /*hidden argument*/NULL); if (!L_30) { goto IL_00cb; } } { XmlSchemaUnique_t2867867737 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; NullCheck(L_32); String_t* L_33 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_32); NullCheck(L_31); XmlSchemaIdentityConstraint_set_Name_m1938683954(L_31, L_33, /*hidden argument*/NULL); goto IL_012d; } IL_00cb: { XmlSchemaReader_t1164558392 * L_34 = ___reader0; NullCheck(L_34); String_t* L_35 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_34); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_37 = String_op_Equality_m920492651(NULL /*static, unused*/, L_35, L_36, /*hidden argument*/NULL); if (!L_37) { goto IL_00f5; } } { XmlSchemaReader_t1164558392 * L_38 = ___reader0; NullCheck(L_38); String_t* L_39 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_38); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_40 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_39, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_40) { goto IL_010a; } } IL_00f5: { XmlSchemaReader_t1164558392 * L_41 = ___reader0; NullCheck(L_41); String_t* L_42 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_41); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_43 = String_op_Equality_m920492651(NULL /*static, unused*/, L_42, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_43) { goto IL_0126; } } IL_010a: { ValidationEventHandler_t791314227 * L_44 = ___h1; XmlSchemaReader_t1164558392 * L_45 = ___reader0; NullCheck(L_45); String_t* L_46 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_45); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_47 = String_Concat_m3937257545(NULL /*static, unused*/, L_46, _stringLiteral1128514160, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_44, L_47, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_012d; } IL_0126: { XmlSchemaReader_t1164558392 * L_48 = ___reader0; XmlSchemaUnique_t2867867737 * L_49 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_48, L_49, /*hidden argument*/NULL); } IL_012d: { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); bool L_51 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_50); if (L_51) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_52 = ___reader0; NullCheck(L_52); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_52); XmlSchemaReader_t1164558392 * L_53 = ___reader0; NullCheck(L_53); bool L_54 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_53); if (!L_54) { goto IL_014c; } } { XmlSchemaUnique_t2867867737 * L_55 = V_0; return L_55; } IL_014c: { V_1 = 1; goto IL_0269; } IL_0153: { XmlSchemaReader_t1164558392 * L_56 = ___reader0; NullCheck(L_56); int32_t L_57 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_56); if ((!(((uint32_t)L_57) == ((uint32_t)((int32_t)15))))) { goto IL_0191; } } { XmlSchemaReader_t1164558392 * L_58 = ___reader0; NullCheck(L_58); String_t* L_59 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_58); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_60 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_59, _stringLiteral379716803, /*hidden argument*/NULL); if (!L_60) { goto IL_018c; } } { ValidationEventHandler_t791314227 * L_61 = ___h1; XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); String_t* L_63 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_62); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_64 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3782410657, L_63, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_61, L_64, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_018c: { goto IL_0274; } IL_0191: { int32_t L_65 = V_1; if ((((int32_t)L_65) > ((int32_t)1))) { goto IL_01c9; } } { XmlSchemaReader_t1164558392 * L_66 = ___reader0; NullCheck(L_66); String_t* L_67 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_66); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_68 = String_op_Equality_m920492651(NULL /*static, unused*/, L_67, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_68) { goto IL_01c9; } } { V_1 = 2; XmlSchemaReader_t1164558392 * L_69 = ___reader0; ValidationEventHandler_t791314227 * L_70 = ___h1; XmlSchemaAnnotation_t2553753397 * L_71 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_69, L_70, /*hidden argument*/NULL); V_2 = L_71; XmlSchemaAnnotation_t2553753397 * L_72 = V_2; if (!L_72) { goto IL_01c4; } } { XmlSchemaUnique_t2867867737 * L_73 = V_0; XmlSchemaAnnotation_t2553753397 * L_74 = V_2; NullCheck(L_73); XmlSchemaAnnotated_set_Annotation_m3050132480(L_73, L_74, /*hidden argument*/NULL); } IL_01c4: { goto IL_0269; } IL_01c9: { int32_t L_75 = V_1; if ((((int32_t)L_75) > ((int32_t)2))) { goto IL_0206; } } { XmlSchemaReader_t1164558392 * L_76 = ___reader0; NullCheck(L_76); String_t* L_77 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_76); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_78 = String_op_Equality_m920492651(NULL /*static, unused*/, L_77, _stringLiteral3977229295, /*hidden argument*/NULL); if (!L_78) { goto IL_0206; } } { V_1 = 3; XmlSchemaReader_t1164558392 * L_79 = ___reader0; ValidationEventHandler_t791314227 * L_80 = ___h1; XmlSchemaXPath_t3156455507 * L_81 = XmlSchemaXPath_Read_m1808832972(NULL /*static, unused*/, L_79, L_80, _stringLiteral3977229295, /*hidden argument*/NULL); V_3 = L_81; XmlSchemaXPath_t3156455507 * L_82 = V_3; if (!L_82) { goto IL_0201; } } { XmlSchemaUnique_t2867867737 * L_83 = V_0; XmlSchemaXPath_t3156455507 * L_84 = V_3; NullCheck(L_83); XmlSchemaIdentityConstraint_set_Selector_m4012263722(L_83, L_84, /*hidden argument*/NULL); } IL_0201: { goto IL_0269; } IL_0206: { int32_t L_85 = V_1; if ((((int32_t)L_85) > ((int32_t)3))) { goto IL_0263; } } { XmlSchemaReader_t1164558392 * L_86 = ___reader0; NullCheck(L_86); String_t* L_87 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_86); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_88 = String_op_Equality_m920492651(NULL /*static, unused*/, L_87, _stringLiteral3110369597, /*hidden argument*/NULL); if (!L_88) { goto IL_0263; } } { V_1 = 3; XmlSchemaUnique_t2867867737 * L_89 = V_0; NullCheck(L_89); XmlSchemaXPath_t3156455507 * L_90 = XmlSchemaIdentityConstraint_get_Selector_m1128146390(L_89, /*hidden argument*/NULL); if (L_90) { goto IL_023b; } } { ValidationEventHandler_t791314227 * L_91 = ___h1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_91, _stringLiteral1414807323, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_023b: { XmlSchemaReader_t1164558392 * L_92 = ___reader0; ValidationEventHandler_t791314227 * L_93 = ___h1; XmlSchemaXPath_t3156455507 * L_94 = XmlSchemaXPath_Read_m1808832972(NULL /*static, unused*/, L_92, L_93, _stringLiteral3110369597, /*hidden argument*/NULL); V_4 = L_94; XmlSchemaXPath_t3156455507 * L_95 = V_4; if (!L_95) { goto IL_025e; } } { XmlSchemaUnique_t2867867737 * L_96 = V_0; NullCheck(L_96); XmlSchemaObjectCollection_t1064819932 * L_97 = XmlSchemaIdentityConstraint_get_Fields_m2787365736(L_96, /*hidden argument*/NULL); XmlSchemaXPath_t3156455507 * L_98 = V_4; NullCheck(L_97); XmlSchemaObjectCollection_Add_m1142549045(L_97, L_98, /*hidden argument*/NULL); } IL_025e: { goto IL_0269; } IL_0263: { XmlSchemaReader_t1164558392 * L_99 = ___reader0; NullCheck(L_99); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_99, /*hidden argument*/NULL); } IL_0269: { XmlSchemaReader_t1164558392 * L_100 = ___reader0; NullCheck(L_100); bool L_101 = XmlSchemaReader_ReadNextElement_m611223709(L_100, /*hidden argument*/NULL); if (L_101) { goto IL_0153; } } IL_0274: { XmlSchemaUnique_t2867867737 * L_102 = V_0; return L_102; } } #ifdef __clang__ #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.Xml.Schema.XmlSchemaUtil::.cctor() extern "C" void XmlSchemaUtil__cctor_m362847947 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil__cctor_m362847947_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = Environment_GetEnvironmentVariable_m394552009(NULL /*static, unused*/, _stringLiteral2399705350, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_1 = String_op_Equality_m920492651(NULL /*static, unused*/, L_0, _stringLiteral4119301762, /*hidden argument*/NULL); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_StrictMsCompliant_3(L_1); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_FinalAllowed_0(6); int32_t L_2 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_FinalAllowed_0(); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_ComplexTypeBlockAllowed_2(L_2); int32_t L_3 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_FinalAllowed_0(); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_ElementBlockAllowed_1(((int32_t)((int32_t)1|(int32_t)L_3))); return; } } // System.Void System.Xml.Schema.XmlSchemaUtil::AddToTable(System.Xml.Schema.XmlSchemaObjectTable,System.Xml.Schema.XmlSchemaObject,System.Xml.XmlQualifiedName,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaUtil_AddToTable_m2760389917 (RuntimeObject * __this /* static, unused */, XmlSchemaObjectTable_t2546974348 * ___table0, XmlSchemaObject_t1315720168 * ___obj1, XmlQualifiedName_t2760654312 * ___qname2, ValidationEventHandler_t791314227 * ___h3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_AddToTable_m2760389917_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlSchemaObjectTable_t2546974348 * L_0 = ___table0; XmlQualifiedName_t2760654312 * L_1 = ___qname2; NullCheck(L_0); bool L_2 = XmlSchemaObjectTable_Contains_m3252282677(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_00cd; } } { XmlSchemaObject_t1315720168 * L_3 = ___obj1; NullCheck(L_3); bool L_4 = L_3->get_isRedefineChild_9(); if (!L_4) { goto IL_0053; } } { XmlSchemaObject_t1315720168 * L_5 = ___obj1; NullCheck(L_5); XmlSchemaObject_t1315720168 * L_6 = L_5->get_redefinedObject_11(); if (!L_6) { goto IL_0039; } } { XmlSchemaObject_t1315720168 * L_7 = ___obj1; ValidationEventHandler_t791314227 * L_8 = ___h3; XmlQualifiedName_t2760654312 * L_9 = ___qname2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_10 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral380354181, L_9, /*hidden argument*/NULL); NullCheck(L_7); XmlSchemaObject_error_m903554348(L_7, L_8, L_10, /*hidden argument*/NULL); goto IL_0046; } IL_0039: { XmlSchemaObject_t1315720168 * L_11 = ___obj1; XmlSchemaObjectTable_t2546974348 * L_12 = ___table0; XmlQualifiedName_t2760654312 * L_13 = ___qname2; NullCheck(L_12); XmlSchemaObject_t1315720168 * L_14 = XmlSchemaObjectTable_get_Item_m170185878(L_12, L_13, /*hidden argument*/NULL); NullCheck(L_11); L_11->set_redefinedObject_11(L_14); } IL_0046: { XmlSchemaObjectTable_t2546974348 * L_15 = ___table0; XmlQualifiedName_t2760654312 * L_16 = ___qname2; XmlSchemaObject_t1315720168 * L_17 = ___obj1; NullCheck(L_15); XmlSchemaObjectTable_Set_m2976494497(L_15, L_16, L_17, /*hidden argument*/NULL); goto IL_00c8; } IL_0053: { XmlSchemaObjectTable_t2546974348 * L_18 = ___table0; XmlQualifiedName_t2760654312 * L_19 = ___qname2; NullCheck(L_18); XmlSchemaObject_t1315720168 * L_20 = XmlSchemaObjectTable_get_Item_m170185878(L_18, L_19, /*hidden argument*/NULL); NullCheck(L_20); bool L_21 = L_20->get_isRedefineChild_9(); if (!L_21) { goto IL_009a; } } { XmlSchemaObjectTable_t2546974348 * L_22 = ___table0; XmlQualifiedName_t2760654312 * L_23 = ___qname2; NullCheck(L_22); XmlSchemaObject_t1315720168 * L_24 = XmlSchemaObjectTable_get_Item_m170185878(L_22, L_23, /*hidden argument*/NULL); NullCheck(L_24); XmlSchemaObject_t1315720168 * L_25 = L_24->get_redefinedObject_11(); if (!L_25) { goto IL_008c; } } { XmlSchemaObject_t1315720168 * L_26 = ___obj1; ValidationEventHandler_t791314227 * L_27 = ___h3; XmlQualifiedName_t2760654312 * L_28 = ___qname2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral380354181, L_28, /*hidden argument*/NULL); NullCheck(L_26); XmlSchemaObject_error_m903554348(L_26, L_27, L_29, /*hidden argument*/NULL); goto IL_0099; } IL_008c: { XmlSchemaObjectTable_t2546974348 * L_30 = ___table0; XmlQualifiedName_t2760654312 * L_31 = ___qname2; NullCheck(L_30); XmlSchemaObject_t1315720168 * L_32 = XmlSchemaObjectTable_get_Item_m170185878(L_30, L_31, /*hidden argument*/NULL); XmlSchemaObject_t1315720168 * L_33 = ___obj1; NullCheck(L_32); L_32->set_redefinedObject_11(L_33); } IL_0099: { return; } IL_009a: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_34 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_StrictMsCompliant_3(); if (!L_34) { goto IL_00b1; } } { XmlSchemaObjectTable_t2546974348 * L_35 = ___table0; XmlQualifiedName_t2760654312 * L_36 = ___qname2; XmlSchemaObject_t1315720168 * L_37 = ___obj1; NullCheck(L_35); XmlSchemaObjectTable_Set_m2976494497(L_35, L_36, L_37, /*hidden argument*/NULL); goto IL_00c8; } IL_00b1: { XmlSchemaObject_t1315720168 * L_38 = ___obj1; ValidationEventHandler_t791314227 * L_39 = ___h3; XmlQualifiedName_t2760654312 * L_40 = ___qname2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_41 = String_Format_m2556382932(NULL /*static, unused*/, _stringLiteral2645476880, L_40, _stringLiteral4177923708, /*hidden argument*/NULL); NullCheck(L_38); XmlSchemaObject_error_m903554348(L_38, L_39, L_41, /*hidden argument*/NULL); } IL_00c8: { goto IL_00d5; } IL_00cd: { XmlSchemaObjectTable_t2546974348 * L_42 = ___table0; XmlQualifiedName_t2760654312 * L_43 = ___qname2; XmlSchemaObject_t1315720168 * L_44 = ___obj1; NullCheck(L_42); XmlSchemaObjectTable_Set_m2976494497(L_42, L_43, L_44, /*hidden argument*/NULL); } IL_00d5: { return; } } // System.Void System.Xml.Schema.XmlSchemaUtil::CompileID(System.String,System.Xml.Schema.XmlSchemaObject,System.Collections.Hashtable,System.Xml.Schema.ValidationEventHandler) extern "C" void XmlSchemaUtil_CompileID_m928148374 (RuntimeObject * __this /* static, unused */, String_t* ___id0, XmlSchemaObject_t1315720168 * ___xso1, Hashtable_t1853889766 * ___idCollection2, ValidationEventHandler_t791314227 * ___h3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_CompileID_m928148374_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___id0; if (L_0) { goto IL_0007; } } { return; } IL_0007: { String_t* L_1 = ___id0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_2 = XmlSchemaUtil_CheckNCName_m1273109950(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0029; } } { XmlSchemaObject_t1315720168 * L_3 = ___xso1; ValidationEventHandler_t791314227 * L_4 = ___h3; String_t* L_5 = ___id0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Concat_m3937257545(NULL /*static, unused*/, L_5, _stringLiteral947320159, /*hidden argument*/NULL); NullCheck(L_3); XmlSchemaObject_error_m903554348(L_3, L_4, L_6, /*hidden argument*/NULL); goto IL_0054; } IL_0029: { Hashtable_t1853889766 * L_7 = ___idCollection2; String_t* L_8 = ___id0; NullCheck(L_7); bool L_9 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(34 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_7, L_8); if (!L_9) { goto IL_004c; } } { XmlSchemaObject_t1315720168 * L_10 = ___xso1; ValidationEventHandler_t791314227 * L_11 = ___h3; String_t* L_12 = ___id0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_13 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral3678022378, L_12, /*hidden argument*/NULL); NullCheck(L_10); XmlSchemaObject_error_m903554348(L_10, L_11, L_13, /*hidden argument*/NULL); goto IL_0054; } IL_004c: { Hashtable_t1853889766 * L_14 = ___idCollection2; String_t* L_15 = ___id0; XmlSchemaObject_t1315720168 * L_16 = ___xso1; NullCheck(L_14); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_14, L_15, L_16); } IL_0054: { return; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckAnyUri(System.String) extern "C" bool XmlSchemaUtil_CheckAnyUri_m1406321190 (RuntimeObject * __this /* static, unused */, String_t* ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_CheckAnyUri_m1406321190_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___uri0; NullCheck(L_0); bool L_1 = String_StartsWith_m1759067526(L_0, _stringLiteral3450320765, /*hidden argument*/NULL); if (!L_1) { goto IL_0012; } } { return (bool)0; } IL_0012: { return (bool)1; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckNormalizedString(System.String) extern "C" bool XmlSchemaUtil_CheckNormalizedString_m3616274642 (RuntimeObject * __this /* static, unused */, String_t* ___token0, const RuntimeMethod* method) { { return (bool)1; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckNCName(System.String) extern "C" bool XmlSchemaUtil_CheckNCName_m1273109950 (RuntimeObject * __this /* static, unused */, String_t* ___name0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_CheckNCName_m1273109950_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___name0; IL2CPP_RUNTIME_CLASS_INIT(XmlChar_t3816087079_il2cpp_TypeInfo_var); bool L_1 = XmlChar_IsNCName_m2365231717(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); return L_1; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::CheckQName(System.Xml.XmlQualifiedName) extern "C" bool XmlSchemaUtil_CheckQName_m3878061682 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qname0, const RuntimeMethod* method) { { return (bool)1; } } // System.Xml.XmlParserContext System.Xml.Schema.XmlSchemaUtil::GetParserContext(System.Xml.XmlReader) extern "C" XmlParserContext_t2544895291 * XmlSchemaUtil_GetParserContext_m769704433 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_GetParserContext_m769704433_MetadataUsageId); s_Il2CppMethodInitialized = true; } RuntimeObject* V_0 = NULL; { XmlReader_t3121518892 * L_0 = ___reader0; V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IHasXmlParserContext_t1330489402_il2cpp_TypeInfo_var)); RuntimeObject* L_1 = V_0; if (!L_1) { goto IL_0014; } } { RuntimeObject* L_2 = V_0; NullCheck(L_2); XmlParserContext_t2544895291 * L_3 = InterfaceFuncInvoker0< XmlParserContext_t2544895291 * >::Invoke(0 /* System.Xml.XmlParserContext Mono.Xml.IHasXmlParserContext::get_ParserContext() */, IHasXmlParserContext_t1330489402_il2cpp_TypeInfo_var, L_2); return L_3; } IL_0014: { return (XmlParserContext_t2544895291 *)NULL; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::IsBuiltInDatatypeName(System.Xml.XmlQualifiedName) extern "C" bool XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516 (RuntimeObject * __this /* static, unused */, XmlQualifiedName_t2760654312 * ___qname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_IsBuiltInDatatypeName_m3250969516_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Dictionary_2_t2736202052 * V_1 = NULL; int32_t V_2 = 0; { XmlQualifiedName_t2760654312 * L_0 = ___qname0; NullCheck(L_0); String_t* L_1 = XmlQualifiedName_get_Namespace_m3957593392(L_0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_2 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, _stringLiteral91702, /*hidden argument*/NULL); if (!L_2) { goto IL_008a; } } { XmlQualifiedName_t2760654312 * L_3 = ___qname0; NullCheck(L_3); String_t* L_4 = XmlQualifiedName_get_Name_m815040483(L_3, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; if (!L_5) { goto IL_0088; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_6 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4B_4(); if (L_6) { goto IL_0069; } } { Dictionary_2_t2736202052 * L_7 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_7, 4, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_1 = L_7; Dictionary_2_t2736202052 * L_8 = V_1; NullCheck(L_8); Dictionary_2_Add_m282647386(L_8, _stringLiteral724378170, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_9 = V_1; NullCheck(L_9); Dictionary_2_Add_m282647386(L_9, _stringLiteral3716671661, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_10 = V_1; NullCheck(L_10); Dictionary_2_Add_m282647386(L_10, _stringLiteral622047031, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_11 = V_1; NullCheck(L_11); Dictionary_2_Add_m282647386(L_11, _stringLiteral1777380071, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_12 = V_1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4B_4(L_12); } IL_0069: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_13 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4B_4(); String_t* L_14 = V_0; NullCheck(L_13); bool L_15 = Dictionary_2_TryGetValue_m1013208020(L_13, L_14, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_15) { goto IL_0088; } } { int32_t L_16 = V_2; if (!L_16) { goto IL_0086; } } { goto IL_0088; } IL_0086: { return (bool)1; } IL_0088: { return (bool)0; } IL_008a: { XmlQualifiedName_t2760654312 * L_17 = ___qname0; NullCheck(L_17); String_t* L_18 = XmlQualifiedName_get_Namespace_m3957593392(L_17, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_19 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_18, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_19) { goto IL_00a1; } } { return (bool)0; } IL_00a1: { XmlQualifiedName_t2760654312 * L_20 = ___qname0; NullCheck(L_20); String_t* L_21 = XmlQualifiedName_get_Name_m815040483(L_20, /*hidden argument*/NULL); V_0 = L_21; String_t* L_22 = V_0; if (!L_22) { goto IL_0301; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_23 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4C_5(); if (L_23) { goto IL_02e2; } } { Dictionary_2_t2736202052 * L_24 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_24, ((int32_t)45), /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_1 = L_24; Dictionary_2_t2736202052 * L_25 = V_1; NullCheck(L_25); Dictionary_2_Add_m282647386(L_25, _stringLiteral3319458126, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_26 = V_1; NullCheck(L_26); Dictionary_2_Add_m282647386(L_26, _stringLiteral1501416449, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_27 = V_1; NullCheck(L_27); Dictionary_2_Add_m282647386(L_27, _stringLiteral3798050081, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_28 = V_1; NullCheck(L_28); Dictionary_2_Add_m282647386(L_28, _stringLiteral63249541, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_29 = V_1; NullCheck(L_29); Dictionary_2_Add_m282647386(L_29, _stringLiteral1272578818, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_30 = V_1; NullCheck(L_30); Dictionary_2_Add_m282647386(L_30, _stringLiteral2722193337, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_31 = V_1; NullCheck(L_31); Dictionary_2_Add_m282647386(L_31, _stringLiteral110852430, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_32 = V_1; NullCheck(L_32); Dictionary_2_Add_m282647386(L_32, _stringLiteral2834935051, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_33 = V_1; NullCheck(L_33); Dictionary_2_Add_m282647386(L_33, _stringLiteral3447975646, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_34 = V_1; NullCheck(L_34); Dictionary_2_Add_m282647386(L_34, _stringLiteral3593584042, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_35 = V_1; NullCheck(L_35); Dictionary_2_Add_m282647386(L_35, _stringLiteral228529742, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_36 = V_1; NullCheck(L_36); Dictionary_2_Add_m282647386(L_36, _stringLiteral1671489303, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_37 = V_1; NullCheck(L_37); Dictionary_2_Add_m282647386(L_37, _stringLiteral841379268, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_38 = V_1; NullCheck(L_38); Dictionary_2_Add_m282647386(L_38, _stringLiteral807124363, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_39 = V_1; NullCheck(L_39); Dictionary_2_Add_m282647386(L_39, _stringLiteral1235497039, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_40 = V_1; NullCheck(L_40); Dictionary_2_Add_m282647386(L_40, _stringLiteral723171524, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_41 = V_1; NullCheck(L_41); Dictionary_2_Add_m282647386(L_41, _stringLiteral2799480295, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_42 = V_1; NullCheck(L_42); Dictionary_2_Add_m282647386(L_42, _stringLiteral215120649, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_43 = V_1; NullCheck(L_43); Dictionary_2_Add_m282647386(L_43, _stringLiteral1236128813, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_44 = V_1; NullCheck(L_44); Dictionary_2_Add_m282647386(L_44, _stringLiteral3244750353, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_45 = V_1; NullCheck(L_45); Dictionary_2_Add_m282647386(L_45, _stringLiteral2005331395, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_46 = V_1; NullCheck(L_46); Dictionary_2_Add_m282647386(L_46, _stringLiteral2143290860, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_47 = V_1; NullCheck(L_47); Dictionary_2_Add_m282647386(L_47, _stringLiteral62725275, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_48 = V_1; NullCheck(L_48); Dictionary_2_Add_m282647386(L_48, _stringLiteral996260479, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_49 = V_1; NullCheck(L_49); Dictionary_2_Add_m282647386(L_49, _stringLiteral3456546791, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_50 = V_1; NullCheck(L_50); Dictionary_2_Add_m282647386(L_50, _stringLiteral3671082123, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_51 = V_1; NullCheck(L_51); Dictionary_2_Add_m282647386(L_51, _stringLiteral3665773707, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_52 = V_1; NullCheck(L_52); Dictionary_2_Add_m282647386(L_52, _stringLiteral2851744811, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_53 = V_1; NullCheck(L_53); Dictionary_2_Add_m282647386(L_53, _stringLiteral4276600584, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_54 = V_1; NullCheck(L_54); Dictionary_2_Add_m282647386(L_54, _stringLiteral4080338551, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_55 = V_1; NullCheck(L_55); Dictionary_2_Add_m282647386(L_55, _stringLiteral3245737591, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_56 = V_1; NullCheck(L_56); Dictionary_2_Add_m282647386(L_56, _stringLiteral2033559650, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_57 = V_1; NullCheck(L_57); Dictionary_2_Add_m282647386(L_57, _stringLiteral1572351178, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_58 = V_1; NullCheck(L_58); Dictionary_2_Add_m282647386(L_58, _stringLiteral3820814978, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_59 = V_1; NullCheck(L_59); Dictionary_2_Add_m282647386(L_59, _stringLiteral4120511215, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_60 = V_1; NullCheck(L_60); Dictionary_2_Add_m282647386(L_60, _stringLiteral3835929719, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_61 = V_1; NullCheck(L_61); Dictionary_2_Add_m282647386(L_61, _stringLiteral1873420042, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_62 = V_1; NullCheck(L_62); Dictionary_2_Add_m282647386(L_62, _stringLiteral3755388189, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_63 = V_1; NullCheck(L_63); Dictionary_2_Add_m282647386(L_63, _stringLiteral3873205229, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_64 = V_1; NullCheck(L_64); Dictionary_2_Add_m282647386(L_64, _stringLiteral3773869350, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_65 = V_1; NullCheck(L_65); Dictionary_2_Add_m282647386(L_65, _stringLiteral425891063, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_66 = V_1; NullCheck(L_66); Dictionary_2_Add_m282647386(L_66, _stringLiteral2409402648, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_67 = V_1; NullCheck(L_67); Dictionary_2_Add_m282647386(L_67, _stringLiteral2553676557, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_68 = V_1; NullCheck(L_68); Dictionary_2_Add_m282647386(L_68, _stringLiteral1535819814, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_69 = V_1; NullCheck(L_69); Dictionary_2_Add_m282647386(L_69, _stringLiteral1274151684, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_70 = V_1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4C_5(L_70); } IL_02e2: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_71 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4C_5(); String_t* L_72 = V_0; NullCheck(L_71); bool L_73 = Dictionary_2_TryGetValue_m1013208020(L_71, L_72, (&V_2), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_73) { goto IL_0301; } } { int32_t L_74 = V_2; if (!L_74) { goto IL_02ff; } } { goto IL_0301; } IL_02ff: { return (bool)1; } IL_0301: { return (bool)0; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::AreSchemaDatatypeEqual(Mono.Xml.Schema.XsdAnySimpleType,System.Object,Mono.Xml.Schema.XsdAnySimpleType,System.Object) extern "C" bool XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075 (RuntimeObject * __this /* static, unused */, XsdAnySimpleType_t1257864485 * ___st10, RuntimeObject * ___v11, XsdAnySimpleType_t1257864485 * ___st22, RuntimeObject * ___v23, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_AreSchemaDatatypeEqual_m583481075_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; int32_t G_B11_0 = 0; int32_t G_B16_0 = 0; int32_t G_B26_0 = 0; int32_t G_B33_0 = 0; int32_t G_B40_0 = 0; int32_t G_B46_0 = 0; int32_t G_B52_0 = 0; { RuntimeObject * L_0 = ___v11; if (!L_0) { goto IL_000c; } } { RuntimeObject * L_1 = ___v23; if (L_1) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { XsdAnySimpleType_t1257864485 * L_2 = ___st10; if (L_2) { goto IL_001b; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_3 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); ___st10 = L_3; } IL_001b: { XsdAnySimpleType_t1257864485 * L_4 = ___st22; if (L_4) { goto IL_0028; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaSimpleType_t2678868104_il2cpp_TypeInfo_var); XsdAnySimpleType_t1257864485 * L_5 = XmlSchemaSimpleType_get_AnySimpleType_m3105451177(NULL /*static, unused*/, /*hidden argument*/NULL); ___st22 = L_5; } IL_0028: { XsdAnySimpleType_t1257864485 * L_6 = ___st22; NullCheck(L_6); Type_t * L_7 = Object_GetType_m88164663(L_6, /*hidden argument*/NULL); V_0 = L_7; XsdAnySimpleType_t1257864485 * L_8 = ___st10; if (!((XsdFloat_t3181928905 *)IsInstClass((RuntimeObject*)L_8, XsdFloat_t3181928905_il2cpp_TypeInfo_var))) { goto IL_0057; } } { XsdAnySimpleType_t1257864485 * L_9 = ___st22; if (!((XsdFloat_t3181928905 *)IsInstClass((RuntimeObject*)L_9, XsdFloat_t3181928905_il2cpp_TypeInfo_var))) { goto IL_0055; } } { RuntimeObject * L_10 = ___v11; IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var); float L_11 = Convert_ToSingle_m770958689(NULL /*static, unused*/, L_10, /*hidden argument*/NULL); RuntimeObject * L_12 = ___v23; float L_13 = Convert_ToSingle_m770958689(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); G_B11_0 = ((((float)L_11) == ((float)L_13))? 1 : 0); goto IL_0056; } IL_0055: { G_B11_0 = 0; } IL_0056: { return (bool)G_B11_0; } IL_0057: { XsdAnySimpleType_t1257864485 * L_14 = ___st10; if (!((XsdDouble_t3324344982 *)IsInstClass((RuntimeObject*)L_14, XsdDouble_t3324344982_il2cpp_TypeInfo_var))) { goto IL_007f; } } { XsdAnySimpleType_t1257864485 * L_15 = ___st22; if (!((XsdDouble_t3324344982 *)IsInstClass((RuntimeObject*)L_15, XsdDouble_t3324344982_il2cpp_TypeInfo_var))) { goto IL_007d; } } { RuntimeObject * L_16 = ___v11; IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var); double L_17 = Convert_ToDouble_m4025515304(NULL /*static, unused*/, L_16, /*hidden argument*/NULL); RuntimeObject * L_18 = ___v23; double L_19 = Convert_ToDouble_m4025515304(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); G_B16_0 = ((((double)L_17) == ((double)L_19))? 1 : 0); goto IL_007e; } IL_007d: { G_B16_0 = 0; } IL_007e: { return (bool)G_B16_0; } IL_007f: { XsdAnySimpleType_t1257864485 * L_20 = ___st10; if (!((XsdDecimal_t1288601093 *)IsInstClass((RuntimeObject*)L_20, XsdDecimal_t1288601093_il2cpp_TypeInfo_var))) { goto IL_01e2; } } { XsdAnySimpleType_t1257864485 * L_21 = ___st22; if (!((XsdDecimal_t1288601093 *)IsInstClass((RuntimeObject*)L_21, XsdDecimal_t1288601093_il2cpp_TypeInfo_var))) { goto IL_00ab; } } { RuntimeObject * L_22 = ___v11; IL2CPP_RUNTIME_CLASS_INIT(Convert_t2465617642_il2cpp_TypeInfo_var); Decimal_t2948259380 L_23 = Convert_ToDecimal_m92395068(NULL /*static, unused*/, L_22, /*hidden argument*/NULL); RuntimeObject * L_24 = ___v23; Decimal_t2948259380 L_25 = Convert_ToDecimal_m92395068(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Decimal_t2948259380_il2cpp_TypeInfo_var); bool L_26 = Decimal_op_Inequality_m3543190500(NULL /*static, unused*/, L_23, L_25, /*hidden argument*/NULL); if (!L_26) { goto IL_00ad; } } IL_00ab: { return (bool)0; } IL_00ad: { XsdAnySimpleType_t1257864485 * L_27 = ___st10; if (!((XsdNonPositiveInteger_t1029055398 *)IsInstClass((RuntimeObject*)L_27, XsdNonPositiveInteger_t1029055398_il2cpp_TypeInfo_var))) { goto IL_00e4; } } { XsdAnySimpleType_t1257864485 * L_28 = ___st22; if (((XsdNonPositiveInteger_t1029055398 *)IsInstClass((RuntimeObject*)L_28, XsdNonPositiveInteger_t1029055398_il2cpp_TypeInfo_var))) { goto IL_00e2; } } { Type_t * L_29 = V_0; RuntimeTypeHandle_t3027515415 L_30 = { reinterpret_cast<intptr_t> (XsdDecimal_t1288601093_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_31 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_30, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_29) == ((RuntimeObject*)(Type_t *)L_31))) { goto IL_00e2; } } { Type_t * L_32 = V_0; RuntimeTypeHandle_t3027515415 L_33 = { reinterpret_cast<intptr_t> (XsdInteger_t2044766898_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_34 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_33, /*hidden argument*/NULL); G_B26_0 = ((((RuntimeObject*)(Type_t *)L_32) == ((RuntimeObject*)(Type_t *)L_34))? 1 : 0); goto IL_00e3; } IL_00e2: { G_B26_0 = 1; } IL_00e3: { return (bool)G_B26_0; } IL_00e4: { XsdAnySimpleType_t1257864485 * L_35 = ___st10; if (!((XsdPositiveInteger_t1704031413 *)IsInstClass((RuntimeObject*)L_35, XsdPositiveInteger_t1704031413_il2cpp_TypeInfo_var))) { goto IL_012b; } } { XsdAnySimpleType_t1257864485 * L_36 = ___st22; if (((XsdPositiveInteger_t1704031413 *)IsInstClass((RuntimeObject*)L_36, XsdPositiveInteger_t1704031413_il2cpp_TypeInfo_var))) { goto IL_0129; } } { Type_t * L_37 = V_0; RuntimeTypeHandle_t3027515415 L_38 = { reinterpret_cast<intptr_t> (XsdDecimal_t1288601093_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_39 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_38, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_37) == ((RuntimeObject*)(Type_t *)L_39))) { goto IL_0129; } } { Type_t * L_40 = V_0; RuntimeTypeHandle_t3027515415 L_41 = { reinterpret_cast<intptr_t> (XsdInteger_t2044766898_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_42 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_41, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_40) == ((RuntimeObject*)(Type_t *)L_42))) { goto IL_0129; } } { Type_t * L_43 = V_0; RuntimeTypeHandle_t3027515415 L_44 = { reinterpret_cast<intptr_t> (XsdNonNegativeInteger_t308064234_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_45 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_44, /*hidden argument*/NULL); G_B33_0 = ((((RuntimeObject*)(Type_t *)L_43) == ((RuntimeObject*)(Type_t *)L_45))? 1 : 0); goto IL_012a; } IL_0129: { G_B33_0 = 1; } IL_012a: { return (bool)G_B33_0; } IL_012b: { XsdAnySimpleType_t1257864485 * L_46 = ___st10; if (!((XsdUnsignedLong_t1409593434 *)IsInstClass((RuntimeObject*)L_46, XsdUnsignedLong_t1409593434_il2cpp_TypeInfo_var))) { goto IL_0172; } } { XsdAnySimpleType_t1257864485 * L_47 = ___st22; if (((XsdUnsignedLong_t1409593434 *)IsInstClass((RuntimeObject*)L_47, XsdUnsignedLong_t1409593434_il2cpp_TypeInfo_var))) { goto IL_0170; } } { Type_t * L_48 = V_0; RuntimeTypeHandle_t3027515415 L_49 = { reinterpret_cast<intptr_t> (XsdDecimal_t1288601093_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_50 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_49, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_48) == ((RuntimeObject*)(Type_t *)L_50))) { goto IL_0170; } } { Type_t * L_51 = V_0; RuntimeTypeHandle_t3027515415 L_52 = { reinterpret_cast<intptr_t> (XsdInteger_t2044766898_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_53 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_52, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_51) == ((RuntimeObject*)(Type_t *)L_53))) { goto IL_0170; } } { Type_t * L_54 = V_0; RuntimeTypeHandle_t3027515415 L_55 = { reinterpret_cast<intptr_t> (XsdNonNegativeInteger_t308064234_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_56 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_55, /*hidden argument*/NULL); G_B40_0 = ((((RuntimeObject*)(Type_t *)L_54) == ((RuntimeObject*)(Type_t *)L_56))? 1 : 0); goto IL_0171; } IL_0170: { G_B40_0 = 1; } IL_0171: { return (bool)G_B40_0; } IL_0172: { XsdAnySimpleType_t1257864485 * L_57 = ___st10; if (!((XsdNonNegativeInteger_t308064234 *)IsInstClass((RuntimeObject*)L_57, XsdNonNegativeInteger_t308064234_il2cpp_TypeInfo_var))) { goto IL_01a9; } } { XsdAnySimpleType_t1257864485 * L_58 = ___st22; if (((XsdNonNegativeInteger_t308064234 *)IsInstClass((RuntimeObject*)L_58, XsdNonNegativeInteger_t308064234_il2cpp_TypeInfo_var))) { goto IL_01a7; } } { Type_t * L_59 = V_0; RuntimeTypeHandle_t3027515415 L_60 = { reinterpret_cast<intptr_t> (XsdDecimal_t1288601093_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_61 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_60, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_59) == ((RuntimeObject*)(Type_t *)L_61))) { goto IL_01a7; } } { Type_t * L_62 = V_0; RuntimeTypeHandle_t3027515415 L_63 = { reinterpret_cast<intptr_t> (XsdInteger_t2044766898_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_64 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_63, /*hidden argument*/NULL); G_B46_0 = ((((RuntimeObject*)(Type_t *)L_62) == ((RuntimeObject*)(Type_t *)L_64))? 1 : 0); goto IL_01a8; } IL_01a7: { G_B46_0 = 1; } IL_01a8: { return (bool)G_B46_0; } IL_01a9: { XsdAnySimpleType_t1257864485 * L_65 = ___st10; if (!((XsdLong_t1324632828 *)IsInstClass((RuntimeObject*)L_65, XsdLong_t1324632828_il2cpp_TypeInfo_var))) { goto IL_01e0; } } { XsdAnySimpleType_t1257864485 * L_66 = ___st22; if (((XsdLong_t1324632828 *)IsInstClass((RuntimeObject*)L_66, XsdLong_t1324632828_il2cpp_TypeInfo_var))) { goto IL_01de; } } { Type_t * L_67 = V_0; RuntimeTypeHandle_t3027515415 L_68 = { reinterpret_cast<intptr_t> (XsdDecimal_t1288601093_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_69 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_68, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_67) == ((RuntimeObject*)(Type_t *)L_69))) { goto IL_01de; } } { Type_t * L_70 = V_0; RuntimeTypeHandle_t3027515415 L_71 = { reinterpret_cast<intptr_t> (XsdInteger_t2044766898_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_72 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_71, /*hidden argument*/NULL); G_B52_0 = ((((RuntimeObject*)(Type_t *)L_70) == ((RuntimeObject*)(Type_t *)L_72))? 1 : 0); goto IL_01df; } IL_01de: { G_B52_0 = 1; } IL_01df: { return (bool)G_B52_0; } IL_01e0: { return (bool)1; } IL_01e2: { RuntimeObject * L_73 = ___v11; RuntimeObject * L_74 = ___v23; NullCheck(L_73); bool L_75 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_73, L_74); if (L_75) { goto IL_01f0; } } { return (bool)0; } IL_01f0: { XsdAnySimpleType_t1257864485 * L_76 = ___st10; if (!((XsdString_t3049094358 *)IsInstClass((RuntimeObject*)L_76, XsdString_t3049094358_il2cpp_TypeInfo_var))) { goto IL_02c9; } } { XsdAnySimpleType_t1257864485 * L_77 = ___st22; if (((XsdString_t3049094358 *)IsInstClass((RuntimeObject*)L_77, XsdString_t3049094358_il2cpp_TypeInfo_var))) { goto IL_0208; } } { return (bool)0; } IL_0208: { XsdAnySimpleType_t1257864485 * L_78 = ___st10; if (!((XsdNMToken_t834691671 *)IsInstClass((RuntimeObject*)L_78, XsdNMToken_t834691671_il2cpp_TypeInfo_var))) { goto IL_022b; } } { XsdAnySimpleType_t1257864485 * L_79 = ___st22; if (((XsdLanguage_t1876291273 *)IsInstClass((RuntimeObject*)L_79, XsdLanguage_t1876291273_il2cpp_TypeInfo_var))) { goto IL_0229; } } { XsdAnySimpleType_t1257864485 * L_80 = ___st22; if (!((XsdName_t2755146808 *)IsInstClass((RuntimeObject*)L_80, XsdName_t2755146808_il2cpp_TypeInfo_var))) { goto IL_022b; } } IL_0229: { return (bool)0; } IL_022b: { XsdAnySimpleType_t1257864485 * L_81 = ___st22; if (!((XsdNMToken_t834691671 *)IsInstClass((RuntimeObject*)L_81, XsdNMToken_t834691671_il2cpp_TypeInfo_var))) { goto IL_024e; } } { XsdAnySimpleType_t1257864485 * L_82 = ___st10; if (((XsdLanguage_t1876291273 *)IsInstClass((RuntimeObject*)L_82, XsdLanguage_t1876291273_il2cpp_TypeInfo_var))) { goto IL_024c; } } { XsdAnySimpleType_t1257864485 * L_83 = ___st10; if (!((XsdName_t2755146808 *)IsInstClass((RuntimeObject*)L_83, XsdName_t2755146808_il2cpp_TypeInfo_var))) { goto IL_024e; } } IL_024c: { return (bool)0; } IL_024e: { XsdAnySimpleType_t1257864485 * L_84 = ___st10; if (!((XsdName_t2755146808 *)IsInstClass((RuntimeObject*)L_84, XsdName_t2755146808_il2cpp_TypeInfo_var))) { goto IL_0271; } } { XsdAnySimpleType_t1257864485 * L_85 = ___st22; if (((XsdLanguage_t1876291273 *)IsInstClass((RuntimeObject*)L_85, XsdLanguage_t1876291273_il2cpp_TypeInfo_var))) { goto IL_026f; } } { XsdAnySimpleType_t1257864485 * L_86 = ___st22; if (!((XsdNMToken_t834691671 *)IsInstClass((RuntimeObject*)L_86, XsdNMToken_t834691671_il2cpp_TypeInfo_var))) { goto IL_0271; } } IL_026f: { return (bool)0; } IL_0271: { XsdAnySimpleType_t1257864485 * L_87 = ___st22; if (!((XsdName_t2755146808 *)IsInstClass((RuntimeObject*)L_87, XsdName_t2755146808_il2cpp_TypeInfo_var))) { goto IL_0294; } } { XsdAnySimpleType_t1257864485 * L_88 = ___st10; if (((XsdLanguage_t1876291273 *)IsInstClass((RuntimeObject*)L_88, XsdLanguage_t1876291273_il2cpp_TypeInfo_var))) { goto IL_0292; } } { XsdAnySimpleType_t1257864485 * L_89 = ___st10; if (!((XsdNMToken_t834691671 *)IsInstClass((RuntimeObject*)L_89, XsdNMToken_t834691671_il2cpp_TypeInfo_var))) { goto IL_0294; } } IL_0292: { return (bool)0; } IL_0294: { XsdAnySimpleType_t1257864485 * L_90 = ___st10; if (!((XsdID_t34704195 *)IsInstClass((RuntimeObject*)L_90, XsdID_t34704195_il2cpp_TypeInfo_var))) { goto IL_02ac; } } { XsdAnySimpleType_t1257864485 * L_91 = ___st22; if (!((XsdIDRef_t2913612829 *)IsInstClass((RuntimeObject*)L_91, XsdIDRef_t2913612829_il2cpp_TypeInfo_var))) { goto IL_02ac; } } { return (bool)0; } IL_02ac: { XsdAnySimpleType_t1257864485 * L_92 = ___st10; if (!((XsdIDRef_t2913612829 *)IsInstClass((RuntimeObject*)L_92, XsdIDRef_t2913612829_il2cpp_TypeInfo_var))) { goto IL_02c4; } } { XsdAnySimpleType_t1257864485 * L_93 = ___st22; if (!((XsdID_t34704195 *)IsInstClass((RuntimeObject*)L_93, XsdID_t34704195_il2cpp_TypeInfo_var))) { goto IL_02c4; } } { return (bool)0; } IL_02c4: { goto IL_02d2; } IL_02c9: { XsdAnySimpleType_t1257864485 * L_94 = ___st10; XsdAnySimpleType_t1257864485 * L_95 = ___st22; if ((((RuntimeObject*)(XsdAnySimpleType_t1257864485 *)L_94) == ((RuntimeObject*)(XsdAnySimpleType_t1257864485 *)L_95))) { goto IL_02d2; } } { return (bool)0; } IL_02d2: { return (bool)1; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::IsValidQName(System.String) extern "C" bool XmlSchemaUtil_IsValidQName_m1652922650 (RuntimeObject * __this /* static, unused */, String_t* ___qname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_IsValidQName_m1652922650_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; StringU5BU5D_t1281789340* V_1 = NULL; int32_t V_2 = 0; { String_t* L_0 = ___qname0; CharU5BU5D_t3528271667* L_1 = ((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)1)); NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)58)); NullCheck(L_0); StringU5BU5D_t1281789340* L_2 = String_Split_m2077324731(L_0, L_1, 2, /*hidden argument*/NULL); V_1 = L_2; V_2 = 0; goto IL_002f; } IL_001a: { StringU5BU5D_t1281789340* L_3 = V_1; int32_t L_4 = V_2; NullCheck(L_3); int32_t L_5 = L_4; String_t* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_0 = L_6; String_t* L_7 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_8 = XmlSchemaUtil_CheckNCName_m1273109950(NULL /*static, unused*/, L_7, /*hidden argument*/NULL); if (L_8) { goto IL_002b; } } { return (bool)0; } IL_002b: { int32_t L_9 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1)); } IL_002f: { int32_t L_10 = V_2; StringU5BU5D_t1281789340* L_11 = V_1; NullCheck(L_11); if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))))))) { goto IL_001a; } } { return (bool)1; } } // System.String[] System.Xml.Schema.XmlSchemaUtil::SplitList(System.String) extern "C" StringU5BU5D_t1281789340* XmlSchemaUtil_SplitList_m1641535596 (RuntimeObject * __this /* static, unused */, String_t* ___list0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_SplitList_m1641535596_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t2718874744 * V_0 = NULL; int32_t V_1 = 0; bool V_2 = false; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; ArrayList_t2718874744 * G_B24_0 = NULL; ArrayList_t2718874744 * G_B23_0 = NULL; String_t* G_B25_0 = NULL; ArrayList_t2718874744 * G_B25_1 = NULL; { String_t* L_0 = ___list0; if (!L_0) { goto IL_0016; } } { String_t* L_1 = ___list0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_3 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_001d; } } IL_0016: { return ((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)0)); } IL_001d: { V_0 = (ArrayList_t2718874744 *)NULL; V_1 = 0; V_2 = (bool)1; V_3 = 0; goto IL_009c; } IL_002a: { String_t* L_4 = ___list0; int32_t L_5 = V_3; NullCheck(L_4); Il2CppChar L_6 = String_get_Chars_m2986988803(L_4, L_5, /*hidden argument*/NULL); V_4 = L_6; Il2CppChar L_7 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)9)))) { case 0: { goto IL_005f; } case 1: { goto IL_005f; } case 2: { goto IL_0051; } case 3: { goto IL_0051; } case 4: { goto IL_005f; } } } IL_0051: { Il2CppChar L_8 = V_4; if ((((int32_t)L_8) == ((int32_t)((int32_t)32)))) { goto IL_005f; } } { goto IL_0089; } IL_005f: { bool L_9 = V_2; if (L_9) { goto IL_0082; } } { ArrayList_t2718874744 * L_10 = V_0; if (L_10) { goto IL_0071; } } { ArrayList_t2718874744 * L_11 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_11, /*hidden argument*/NULL); V_0 = L_11; } IL_0071: { ArrayList_t2718874744 * L_12 = V_0; String_t* L_13 = ___list0; int32_t L_14 = V_1; int32_t L_15 = V_3; int32_t L_16 = V_1; NullCheck(L_13); String_t* L_17 = String_Substring_m1610150815(L_13, L_14, ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); NullCheck(L_12); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_17); } IL_0082: { V_2 = (bool)1; goto IL_0098; } IL_0089: { bool L_18 = V_2; if (!L_18) { goto IL_0093; } } { V_2 = (bool)0; int32_t L_19 = V_3; V_1 = L_19; } IL_0093: { goto IL_0098; } IL_0098: { int32_t L_20 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_009c: { int32_t L_21 = V_3; String_t* L_22 = ___list0; NullCheck(L_22); int32_t L_23 = String_get_Length_m3847582255(L_22, /*hidden argument*/NULL); if ((((int32_t)L_21) < ((int32_t)L_23))) { goto IL_002a; } } { bool L_24 = V_2; if (L_24) { goto IL_00bf; } } { int32_t L_25 = V_1; if (L_25) { goto IL_00bf; } } { StringU5BU5D_t1281789340* L_26 = ((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)1)); String_t* L_27 = ___list0; NullCheck(L_26); ArrayElementTypeCheck (L_26, L_27); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_27); return L_26; } IL_00bf: { bool L_28 = V_2; if (L_28) { goto IL_00eb; } } { int32_t L_29 = V_1; String_t* L_30 = ___list0; NullCheck(L_30); int32_t L_31 = String_get_Length_m3847582255(L_30, /*hidden argument*/NULL); if ((((int32_t)L_29) >= ((int32_t)L_31))) { goto IL_00eb; } } { ArrayList_t2718874744 * L_32 = V_0; int32_t L_33 = V_1; G_B23_0 = L_32; if (L_33) { G_B24_0 = L_32; goto IL_00de; } } { String_t* L_34 = ___list0; G_B25_0 = L_34; G_B25_1 = G_B23_0; goto IL_00e5; } IL_00de: { String_t* L_35 = ___list0; int32_t L_36 = V_1; NullCheck(L_35); String_t* L_37 = String_Substring_m2848979100(L_35, L_36, /*hidden argument*/NULL); G_B25_0 = L_37; G_B25_1 = G_B24_0; } IL_00e5: { NullCheck(G_B25_1); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, G_B25_1, G_B25_0); } IL_00eb: { ArrayList_t2718874744 * L_38 = V_0; RuntimeTypeHandle_t3027515415 L_39 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_40 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_39, /*hidden argument*/NULL); NullCheck(L_38); RuntimeArray * L_41 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_38, L_40); return ((StringU5BU5D_t1281789340*)IsInst((RuntimeObject*)L_41, StringU5BU5D_t1281789340_il2cpp_TypeInfo_var)); } } // System.Void System.Xml.Schema.XmlSchemaUtil::ReadUnhandledAttribute(System.Xml.XmlReader,System.Xml.Schema.XmlSchemaObject) extern "C" void XmlSchemaUtil_ReadUnhandledAttribute_m1314733484 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, XmlSchemaObject_t1315720168 * ___xso1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadUnhandledAttribute_m1314733484_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlAttribute_t1173852259 * V_0 = NULL; { XmlReader_t3121518892 * L_0 = ___reader0; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(22 /* System.String System.Xml.XmlReader::get_Prefix() */, L_0); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_2 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, _stringLiteral3929236445, /*hidden argument*/NULL); if (!L_2) { goto IL_0031; } } { XmlSchemaObject_t1315720168 * L_3 = ___xso1; NullCheck(L_3); XmlSerializerNamespaces_t2702737953 * L_4 = XmlSchemaObject_get_Namespaces_m1671673830(L_3, /*hidden argument*/NULL); XmlReader_t3121518892 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlReader::get_LocalName() */, L_5); XmlReader_t3121518892 * L_7 = ___reader0; NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_7); NullCheck(L_4); XmlSerializerNamespaces_Add_m3530434184(L_4, L_6, L_8, /*hidden argument*/NULL); goto IL_00ae; } IL_0031: { XmlReader_t3121518892 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.XmlReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_11 = String_op_Equality_m920492651(NULL /*static, unused*/, L_10, _stringLiteral3929236445, /*hidden argument*/NULL); if (!L_11) { goto IL_0061; } } { XmlSchemaObject_t1315720168 * L_12 = ___xso1; NullCheck(L_12); XmlSerializerNamespaces_t2702737953 * L_13 = XmlSchemaObject_get_Namespaces_m1671673830(L_12, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); XmlReader_t3121518892 * L_15 = ___reader0; NullCheck(L_15); String_t* L_16 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_15); NullCheck(L_13); XmlSerializerNamespaces_Add_m3530434184(L_13, L_14, L_16, /*hidden argument*/NULL); goto IL_00ae; } IL_0061: { XmlSchemaObject_t1315720168 * L_17 = ___xso1; NullCheck(L_17); ArrayList_t2718874744 * L_18 = L_17->get_unhandledAttributeList_4(); if (L_18) { goto IL_0077; } } { XmlSchemaObject_t1315720168 * L_19 = ___xso1; ArrayList_t2718874744 * L_20 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_20, /*hidden argument*/NULL); NullCheck(L_19); L_19->set_unhandledAttributeList_4(L_20); } IL_0077: { XmlDocument_t2837193595 * L_21 = (XmlDocument_t2837193595 *)il2cpp_codegen_object_new(XmlDocument_t2837193595_il2cpp_TypeInfo_var); XmlDocument__ctor_m664597982(L_21, /*hidden argument*/NULL); XmlReader_t3121518892 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlReader::get_LocalName() */, L_22); XmlReader_t3121518892 * L_24 = ___reader0; NullCheck(L_24); String_t* L_25 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.XmlReader::get_NamespaceURI() */, L_24); NullCheck(L_21); XmlAttribute_t1173852259 * L_26 = XmlDocument_CreateAttribute_m695080770(L_21, L_23, L_25, /*hidden argument*/NULL); V_0 = L_26; XmlAttribute_t1173852259 * L_27 = V_0; XmlReader_t3121518892 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_28); NullCheck(L_27); VirtActionInvoker1< String_t* >::Invoke(26 /* System.Void System.Xml.XmlAttribute::set_Value(System.String) */, L_27, L_29); XmlReader_t3121518892 * L_30 = ___reader0; XmlAttribute_t1173852259 * L_31 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ParseWsdlArrayType_m829317714(NULL /*static, unused*/, L_30, L_31, /*hidden argument*/NULL); XmlSchemaObject_t1315720168 * L_32 = ___xso1; NullCheck(L_32); ArrayList_t2718874744 * L_33 = L_32->get_unhandledAttributeList_4(); XmlAttribute_t1173852259 * L_34 = V_0; NullCheck(L_33); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_33, L_34); } IL_00ae: { return; } } // System.Void System.Xml.Schema.XmlSchemaUtil::ParseWsdlArrayType(System.Xml.XmlReader,System.Xml.XmlAttribute) extern "C" void XmlSchemaUtil_ParseWsdlArrayType_m829317714 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, XmlAttribute_t1173852259 * ___attr1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ParseWsdlArrayType_m829317714_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; { XmlAttribute_t1173852259 * L_0 = ___attr1; NullCheck(L_0); String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.XmlAttribute::get_NamespaceURI() */, L_0); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_2 = String_op_Equality_m920492651(NULL /*static, unused*/, L_1, _stringLiteral2642259686, /*hidden argument*/NULL); if (!L_2) { goto IL_0071; } } { XmlAttribute_t1173852259 * L_3 = ___attr1; NullCheck(L_3); String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(15 /* System.String System.Xml.XmlAttribute::get_LocalName() */, L_3); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_5 = String_op_Equality_m920492651(NULL /*static, unused*/, L_4, _stringLiteral1268591600, /*hidden argument*/NULL); if (!L_5) { goto IL_0071; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_0 = L_6; XmlAttribute_t1173852259 * L_7 = ___attr1; NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Xml.XmlAttribute::get_Value() */, L_7); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeTranslator_ParseArrayType_m1334976778(NULL /*static, unused*/, L_8, (&V_1), (&V_0), (&V_2), /*hidden argument*/NULL); String_t* L_9 = V_0; String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_11 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0063; } } { XmlReader_t3121518892 * L_12 = ___reader0; String_t* L_13 = V_0; NullCheck(L_12); String_t* L_14 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(34 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_12, L_13); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_15 = String_Concat_m3937257545(NULL /*static, unused*/, L_14, _stringLiteral3452614550, /*hidden argument*/NULL); V_0 = L_15; } IL_0063: { XmlAttribute_t1173852259 * L_16 = ___attr1; String_t* L_17 = V_0; String_t* L_18 = V_1; String_t* L_19 = V_2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_20 = String_Concat_m3755062657(NULL /*static, unused*/, L_17, L_18, L_19, /*hidden argument*/NULL); NullCheck(L_16); VirtActionInvoker1< String_t* >::Invoke(26 /* System.Void System.Xml.XmlAttribute::set_Value(System.String) */, L_16, L_20); } IL_0071: { return; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::ReadBoolAttribute(System.Xml.XmlReader,System.Exception&) extern "C" bool XmlSchemaUtil_ReadBoolAttribute_m854567538 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadBoolAttribute_m854567538_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * V_1 = NULL; bool V_2 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Exception_t ** L_0 = ___innerExcpetion1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); } IL_0003: try { // begin try (depth: 1) { XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1981561327_il2cpp_TypeInfo_var); bool L_3 = XmlConvert_ToBoolean_m3792671347(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); V_0 = L_3; bool L_4 = V_0; V_2 = L_4; goto IL_002b; } IL_0016: { ; // IL_0016: leave IL_002b } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_001b; throw e; } CATCH_001b: { // begin catch(System.Exception) { V_1 = ((Exception_t *)__exception_local); Exception_t ** L_5 = ___innerExcpetion1; Exception_t * L_6 = V_1; *((RuntimeObject **)(L_5)) = (RuntimeObject *)L_6; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_5), (RuntimeObject *)L_6); V_2 = (bool)0; goto IL_002b; } IL_0026: { ; // IL_0026: leave IL_002b } } // end catch (depth: 1) IL_002b: { bool L_7 = V_2; return L_7; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::ReadDerivationAttribute(System.Xml.XmlReader,System.Exception&,System.String,System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" int32_t XmlSchemaUtil_ReadDerivationAttribute_m214019534 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, String_t* ___name2, int32_t ___allowed3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadDerivationAttribute_m214019534_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; String_t* V_3 = NULL; StringU5BU5D_t1281789340* V_4 = NULL; int32_t V_5 = 0; Exception_t * V_6 = NULL; int32_t V_7 = 0; String_t* V_8 = NULL; Dictionary_2_t2736202052 * V_9 = NULL; int32_t V_10 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Exception_t ** L_0 = ___innerExcpetion1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); } IL_0003: try { // begin try (depth: 1) { XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); V_0 = L_2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_1 = L_3; V_2 = 0; String_t* L_4 = V_0; NullCheck(L_4); int32_t L_5 = String_IndexOf_m1977622757(L_4, _stringLiteral1201842075, /*hidden argument*/NULL); if ((((int32_t)L_5) == ((int32_t)(-1)))) { goto IL_005c; } } IL_0023: { String_t* L_6 = V_0; NullCheck(L_6); String_t* L_7 = String_Trim_m923598732(L_6, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_8 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_7, _stringLiteral1201842075, /*hidden argument*/NULL); if (!L_8) { goto IL_005c; } } IL_0038: { Exception_t ** L_9 = ___innerExcpetion1; String_t* L_10 = V_0; String_t* L_11 = ___name2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_12 = String_Concat_m2163913788(NULL /*static, unused*/, L_10, _stringLiteral184942760, L_11, _stringLiteral2745271269, /*hidden argument*/NULL); Exception_t * L_13 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_13, L_12, /*hidden argument*/NULL); *((RuntimeObject **)(L_9)) = (RuntimeObject *)L_13; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_9), (RuntimeObject *)L_13); V_7 = ((int32_t)255); goto IL_01fc; } IL_005c: { String_t* L_14 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); StringU5BU5D_t1281789340* L_15 = XmlSchemaUtil_SplitList_m1641535596(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); V_4 = L_15; V_5 = 0; goto IL_01aa; } IL_006c: { StringU5BU5D_t1281789340* L_16 = V_4; int32_t L_17 = V_5; NullCheck(L_16); int32_t L_18 = L_17; String_t* L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18)); V_3 = L_19; String_t* L_20 = V_3; V_8 = L_20; String_t* L_21 = V_8; if (!L_21) { goto IL_0192; } } IL_007c: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_22 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4D_6(); if (L_22) { goto IL_00f0; } } IL_0086: { Dictionary_2_t2736202052 * L_23 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_23, 7, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_9 = L_23; Dictionary_2_t2736202052 * L_24 = V_9; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_25 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); NullCheck(L_24); Dictionary_2_Add_m282647386(L_24, L_25, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_26 = V_9; NullCheck(L_26); Dictionary_2_Add_m282647386(L_26, _stringLiteral1201842075, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_27 = V_9; NullCheck(L_27); Dictionary_2_Add_m282647386(L_27, _stringLiteral774901618, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_28 = V_9; NullCheck(L_28); Dictionary_2_Add_m282647386(L_28, _stringLiteral1610623306, 3, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_29 = V_9; NullCheck(L_29); Dictionary_2_Add_m282647386(L_29, _stringLiteral1564059052, 4, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_30 = V_9; NullCheck(L_30); Dictionary_2_Add_m282647386(L_30, _stringLiteral3941568111, 5, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_31 = V_9; NullCheck(L_31); Dictionary_2_Add_m282647386(L_31, _stringLiteral1991705772, 6, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_32 = V_9; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4D_6(L_32); } IL_00f0: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_33 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4D_6(); String_t* L_34 = V_8; NullCheck(L_33); bool L_35 = Dictionary_2_TryGetValue_m1013208020(L_33, L_34, (&V_10), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_35) { goto IL_0192; } } IL_0103: { int32_t L_36 = V_10; switch (L_36) { case 0: { goto IL_012b; } case 1: { goto IL_0139; } case 2: { goto IL_014b; } case 3: { goto IL_0159; } case 4: { goto IL_0167; } case 5: { goto IL_0175; } case 6: { goto IL_0183; } } } IL_0126: { goto IL_0192; } IL_012b: { int32_t L_37 = V_2; int32_t L_38 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_39 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_37, 0, L_38, /*hidden argument*/NULL); V_2 = L_39; goto IL_01a4; } IL_0139: { int32_t L_40 = V_2; int32_t L_41 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_42 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_40, ((int32_t)255), L_41, /*hidden argument*/NULL); V_2 = L_42; goto IL_01a4; } IL_014b: { int32_t L_43 = V_2; int32_t L_44 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_45 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_43, 1, L_44, /*hidden argument*/NULL); V_2 = L_45; goto IL_01a4; } IL_0159: { int32_t L_46 = V_2; int32_t L_47 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_48 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_46, 2, L_47, /*hidden argument*/NULL); V_2 = L_48; goto IL_01a4; } IL_0167: { int32_t L_49 = V_2; int32_t L_50 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_51 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_49, 4, L_50, /*hidden argument*/NULL); V_2 = L_51; goto IL_01a4; } IL_0175: { int32_t L_52 = V_2; int32_t L_53 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_54 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_52, 8, L_53, /*hidden argument*/NULL); V_2 = L_54; goto IL_01a4; } IL_0183: { int32_t L_55 = V_2; int32_t L_56 = ___allowed3; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); int32_t L_57 = XmlSchemaUtil_AddFlag_m1779127340(NULL /*static, unused*/, L_55, ((int32_t)16), L_56, /*hidden argument*/NULL); V_2 = L_57; goto IL_01a4; } IL_0192: { String_t* L_58 = V_1; String_t* L_59 = V_3; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_60 = String_Concat_m3755062657(NULL /*static, unused*/, L_58, L_59, _stringLiteral3452614528, /*hidden argument*/NULL); V_1 = L_60; goto IL_01a4; } IL_01a4: { int32_t L_61 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1)); } IL_01aa: { int32_t L_62 = V_5; StringU5BU5D_t1281789340* L_63 = V_4; NullCheck(L_63); if ((((int32_t)L_62) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_63)->max_length))))))) { goto IL_006c; } } IL_01b5: { String_t* L_64 = V_1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_65 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_66 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_64, L_65, /*hidden argument*/NULL); if (!L_66) { goto IL_01d8; } } IL_01c5: { Exception_t ** L_67 = ___innerExcpetion1; String_t* L_68 = V_1; String_t* L_69 = ___name2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_70 = String_Concat_m3755062657(NULL /*static, unused*/, L_68, _stringLiteral208398801, L_69, /*hidden argument*/NULL); Exception_t * L_71 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_71, L_70, /*hidden argument*/NULL); *((RuntimeObject **)(L_67)) = (RuntimeObject *)L_71; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_67), (RuntimeObject *)L_71); } IL_01d8: { int32_t L_72 = V_2; V_7 = L_72; goto IL_01fc; } IL_01e0: { ; // IL_01e0: leave IL_01fc } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_01e5; throw e; } CATCH_01e5: { // begin catch(System.Exception) { V_6 = ((Exception_t *)__exception_local); Exception_t ** L_73 = ___innerExcpetion1; Exception_t * L_74 = V_6; *((RuntimeObject **)(L_73)) = (RuntimeObject *)L_74; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_73), (RuntimeObject *)L_74); V_7 = ((int32_t)256); goto IL_01fc; } IL_01f7: { ; // IL_01f7: leave IL_01fc } } // end catch (depth: 1) IL_01fc: { int32_t L_75 = V_7; return L_75; } } // System.Xml.Schema.XmlSchemaDerivationMethod System.Xml.Schema.XmlSchemaUtil::AddFlag(System.Xml.Schema.XmlSchemaDerivationMethod,System.Xml.Schema.XmlSchemaDerivationMethod,System.Xml.Schema.XmlSchemaDerivationMethod) extern "C" int32_t XmlSchemaUtil_AddFlag_m1779127340 (RuntimeObject * __this /* static, unused */, int32_t ___dst0, int32_t ___add1, int32_t ___allowed2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_AddFlag_m1779127340_MetadataUsageId); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___add1; int32_t L_1 = ___allowed2; if (((int32_t)((int32_t)L_0&(int32_t)L_1))) { goto IL_0029; } } { int32_t L_2 = ___allowed2; if ((((int32_t)L_2) == ((int32_t)((int32_t)255)))) { goto IL_0029; } } { int32_t L_3 = ___add1; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(XmlSchemaDerivationMethod_t1774354337_il2cpp_TypeInfo_var, &L_4); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = String_Concat_m904156431(NULL /*static, unused*/, L_5, _stringLiteral2996387899, /*hidden argument*/NULL); ArgumentException_t132251570 * L_7 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,XmlSchemaUtil_AddFlag_m1779127340_RuntimeMethod_var); } IL_0029: { int32_t L_8 = ___dst0; int32_t L_9 = ___add1; if (!((int32_t)((int32_t)L_8&(int32_t)L_9))) { goto IL_0047; } } { int32_t L_10 = ___add1; int32_t L_11 = L_10; RuntimeObject * L_12 = Box(XmlSchemaDerivationMethod_t1774354337_il2cpp_TypeInfo_var, &L_11); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_13 = String_Concat_m904156431(NULL /*static, unused*/, L_12, _stringLiteral3813539861, /*hidden argument*/NULL); ArgumentException_t132251570 * L_14 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14,XmlSchemaUtil_AddFlag_m1779127340_RuntimeMethod_var); } IL_0047: { int32_t L_15 = ___dst0; int32_t L_16 = ___add1; return (int32_t)(((int32_t)((int32_t)L_15|(int32_t)L_16))); } } // System.Xml.Schema.XmlSchemaForm System.Xml.Schema.XmlSchemaUtil::ReadFormAttribute(System.Xml.XmlReader,System.Exception&) extern "C" int32_t XmlSchemaUtil_ReadFormAttribute_m3742436596 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadFormAttribute_m3742436596_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Dictionary_2_t2736202052 * V_2 = NULL; int32_t V_3 = 0; { Exception_t ** L_0 = ___innerExcpetion1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); V_0 = 0; XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); V_1 = L_2; String_t* L_3 = V_1; if (!L_3) { goto IL_0073; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_4 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4E_7(); if (L_4) { goto IL_0041; } } { Dictionary_2_t2736202052 * L_5 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_5, 2, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_2 = L_5; Dictionary_2_t2736202052 * L_6 = V_2; NullCheck(L_6); Dictionary_2_Add_m282647386(L_6, _stringLiteral902390592, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_7 = V_2; NullCheck(L_7); Dictionary_2_Add_m282647386(L_7, _stringLiteral2330303858, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_8 = V_2; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4E_7(L_8); } IL_0041: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_9 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4E_7(); String_t* L_10 = V_1; NullCheck(L_9); bool L_11 = Dictionary_2_TryGetValue_m1013208020(L_9, L_10, (&V_3), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_11) { goto IL_0073; } } { int32_t L_12 = V_3; if (!L_12) { goto IL_0065; } } { int32_t L_13 = V_3; if ((((int32_t)L_13) == ((int32_t)1))) { goto IL_006c; } } { goto IL_0073; } IL_0065: { V_0 = 1; goto IL_0084; } IL_006c: { V_0 = 2; goto IL_0084; } IL_0073: { Exception_t ** L_14 = ___innerExcpetion1; Exception_t * L_15 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_15, _stringLiteral3335151820, /*hidden argument*/NULL); *((RuntimeObject **)(L_14)) = (RuntimeObject *)L_15; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_14), (RuntimeObject *)L_15); goto IL_0084; } IL_0084: { int32_t L_16 = V_0; return L_16; } } // System.Xml.Schema.XmlSchemaContentProcessing System.Xml.Schema.XmlSchemaUtil::ReadProcessingAttribute(System.Xml.XmlReader,System.Exception&) extern "C" int32_t XmlSchemaUtil_ReadProcessingAttribute_m3384867792 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadProcessingAttribute_m3384867792_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Dictionary_2_t2736202052 * V_2 = NULL; int32_t V_3 = 0; { Exception_t ** L_0 = ___innerExcpetion1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); V_0 = 0; XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); V_1 = L_2; String_t* L_3 = V_1; if (!L_3) { goto IL_008b; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_4 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4F_8(); if (L_4) { goto IL_004d; } } { Dictionary_2_t2736202052 * L_5 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_5, 3, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_2 = L_5; Dictionary_2_t2736202052 * L_6 = V_2; NullCheck(L_6); Dictionary_2_Add_m282647386(L_6, _stringLiteral4166618054, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_7 = V_2; NullCheck(L_7); Dictionary_2_Add_m282647386(L_7, _stringLiteral1237242930, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_8 = V_2; NullCheck(L_8); Dictionary_2_Add_m282647386(L_8, _stringLiteral3899542042, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_9 = V_2; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4F_8(L_9); } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_10 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4F_8(); String_t* L_11 = V_1; NullCheck(L_10); bool L_12 = Dictionary_2_TryGetValue_m1013208020(L_10, L_11, (&V_3), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_12) { goto IL_008b; } } { int32_t L_13 = V_3; switch (L_13) { case 0: { goto IL_0076; } case 1: { goto IL_007d; } case 2: { goto IL_0084; } } } { goto IL_008b; } IL_0076: { V_0 = 2; goto IL_009c; } IL_007d: { V_0 = 3; goto IL_009c; } IL_0084: { V_0 = 1; goto IL_009c; } IL_008b: { Exception_t ** L_14 = ___innerExcpetion1; Exception_t * L_15 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_15, _stringLiteral1692827541, /*hidden argument*/NULL); *((RuntimeObject **)(L_14)) = (RuntimeObject *)L_15; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_14), (RuntimeObject *)L_15); goto IL_009c; } IL_009c: { int32_t L_16 = V_0; return L_16; } } // System.Xml.Schema.XmlSchemaUse System.Xml.Schema.XmlSchemaUtil::ReadUseAttribute(System.Xml.XmlReader,System.Exception&) extern "C" int32_t XmlSchemaUtil_ReadUseAttribute_m564872701 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerExcpetion1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadUseAttribute_m564872701_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Dictionary_2_t2736202052 * V_2 = NULL; int32_t V_3 = 0; { Exception_t ** L_0 = ___innerExcpetion1; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); V_0 = 0; XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); V_1 = L_2; String_t* L_3 = V_1; if (!L_3) { goto IL_008b; } } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_4 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map50_9(); if (L_4) { goto IL_004d; } } { Dictionary_2_t2736202052 * L_5 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_5, 3, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_2 = L_5; Dictionary_2_t2736202052 * L_6 = V_2; NullCheck(L_6); Dictionary_2_Add_m282647386(L_6, _stringLiteral2882589497, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_7 = V_2; NullCheck(L_7); Dictionary_2_Add_m282647386(L_7, _stringLiteral3075801354, 1, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_8 = V_2; NullCheck(L_8); Dictionary_2_Add_m282647386(L_8, _stringLiteral1046445807, 2, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_9 = V_2; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map50_9(L_9); } IL_004d: { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); Dictionary_2_t2736202052 * L_10 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map50_9(); String_t* L_11 = V_1; NullCheck(L_10); bool L_12 = Dictionary_2_TryGetValue_m1013208020(L_10, L_11, (&V_3), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_12) { goto IL_008b; } } { int32_t L_13 = V_3; switch (L_13) { case 0: { goto IL_0076; } case 1: { goto IL_007d; } case 2: { goto IL_0084; } } } { goto IL_008b; } IL_0076: { V_0 = 1; goto IL_009c; } IL_007d: { V_0 = 2; goto IL_009c; } IL_0084: { V_0 = 3; goto IL_009c; } IL_008b: { Exception_t ** L_14 = ___innerExcpetion1; Exception_t * L_15 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_15, _stringLiteral1092366554, /*hidden argument*/NULL); *((RuntimeObject **)(L_14)) = (RuntimeObject *)L_15; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_14), (RuntimeObject *)L_15); goto IL_009c; } IL_009c: { int32_t L_16 = V_0; return L_16; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaUtil::ReadQNameAttribute(System.Xml.XmlReader,System.Exception&) extern "C" XmlQualifiedName_t2760654312 * XmlSchemaUtil_ReadQNameAttribute_m567024358 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, Exception_t ** ___innerEx1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ReadQNameAttribute_m567024358_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlReader_t3121518892 * L_0 = ___reader0; XmlReader_t3121518892 * L_1 = ___reader0; NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.XmlReader::get_Value() */, L_1); Exception_t ** L_3 = ___innerEx1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_4 = XmlSchemaUtil_ToQName_m3017013972(NULL /*static, unused*/, L_0, L_2, L_3, /*hidden argument*/NULL); return L_4; } } // System.Xml.XmlQualifiedName System.Xml.Schema.XmlSchemaUtil::ToQName(System.Xml.XmlReader,System.String,System.Exception&) extern "C" XmlQualifiedName_t2760654312 * XmlSchemaUtil_ToQName_m3017013972 (RuntimeObject * __this /* static, unused */, XmlReader_t3121518892 * ___reader0, String_t* ___qnamestr1, Exception_t ** ___innerEx2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ToQName_m3017013972_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; XmlQualifiedName_t2760654312 * V_2 = NULL; StringU5BU5D_t1281789340* V_3 = NULL; { Exception_t ** L_0 = ___innerEx2; *((RuntimeObject **)(L_0)) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_0), (RuntimeObject *)NULL); String_t* L_1 = ___qnamestr1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_2 = XmlSchemaUtil_IsValidQName_m1652922650(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0026; } } { Exception_t ** L_3 = ___innerEx2; String_t* L_4 = ___qnamestr1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = String_Concat_m3937257545(NULL /*static, unused*/, L_4, _stringLiteral3804845809, /*hidden argument*/NULL); Exception_t * L_6 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_6, L_5, /*hidden argument*/NULL); *((RuntimeObject **)(L_3)) = (RuntimeObject *)L_6; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_3), (RuntimeObject *)L_6); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_7 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); return L_7; } IL_0026: { String_t* L_8 = ___qnamestr1; CharU5BU5D_t3528271667* L_9 = ((CharU5BU5D_t3528271667*)SZArrayNew(CharU5BU5D_t3528271667_il2cpp_TypeInfo_var, (uint32_t)1)); NullCheck(L_9); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)58)); NullCheck(L_8); StringU5BU5D_t1281789340* L_10 = String_Split_m2077324731(L_8, L_9, 2, /*hidden argument*/NULL); V_3 = L_10; StringU5BU5D_t1281789340* L_11 = V_3; NullCheck(L_11); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_11)->max_length))))) == ((uint32_t)2)))) { goto IL_007a; } } { XmlReader_t3121518892 * L_12 = ___reader0; StringU5BU5D_t1281789340* L_13 = V_3; NullCheck(L_13); int32_t L_14 = 0; String_t* L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); NullCheck(L_12); String_t* L_16 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(34 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_12, L_15); V_0 = L_16; String_t* L_17 = V_0; if (L_17) { goto IL_0071; } } { Exception_t ** L_18 = ___innerEx2; StringU5BU5D_t1281789340* L_19 = V_3; NullCheck(L_19); int32_t L_20 = 0; String_t* L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_22 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral3886925816, L_21, _stringLiteral1643173988, /*hidden argument*/NULL); Exception_t * L_23 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var); Exception__ctor_m1152696503(L_23, L_22, /*hidden argument*/NULL); *((RuntimeObject **)(L_18)) = (RuntimeObject *)L_23; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_18), (RuntimeObject *)L_23); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_24 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); return L_24; } IL_0071: { StringU5BU5D_t1281789340* L_25 = V_3; NullCheck(L_25); int32_t L_26 = 1; String_t* L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26)); V_1 = L_27; goto IL_008a; } IL_007a: { XmlReader_t3121518892 * L_28 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); NullCheck(L_28); String_t* L_30 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(34 /* System.String System.Xml.XmlReader::LookupNamespace(System.String) */, L_28, L_29); V_0 = L_30; StringU5BU5D_t1281789340* L_31 = V_3; NullCheck(L_31); int32_t L_32 = 0; String_t* L_33 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_32)); V_1 = L_33; } IL_008a: { String_t* L_34 = V_1; String_t* L_35 = V_0; XmlQualifiedName_t2760654312 * L_36 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_36, L_34, L_35, /*hidden argument*/NULL); V_2 = L_36; XmlQualifiedName_t2760654312 * L_37 = V_2; return L_37; } } // System.Int32 System.Xml.Schema.XmlSchemaUtil::ValidateAttributesResolved(System.Xml.Schema.XmlSchemaObjectTable,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema,System.Xml.Schema.XmlSchemaObjectCollection,System.Xml.Schema.XmlSchemaAnyAttribute,System.Xml.Schema.XmlSchemaAnyAttribute&,System.Xml.Schema.XmlSchemaAttributeGroup,System.Boolean) extern "C" int32_t XmlSchemaUtil_ValidateAttributesResolved_m3601546758 (RuntimeObject * __this /* static, unused */, XmlSchemaObjectTable_t2546974348 * ___attributesResolved0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, XmlSchemaObjectCollection_t1064819932 * ___attributes3, XmlSchemaAnyAttribute_t963227996 * ___anyAttribute4, XmlSchemaAnyAttribute_t963227996 ** ___anyAttributeUse5, XmlSchemaAttributeGroup_t246430545 * ___redefined6, bool ___skipEquivalent7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_ValidateAttributesResolved_m3601546758_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ArrayList_t2718874744 * V_1 = NULL; XmlSchemaObject_t1315720168 * V_2 = NULL; XmlSchemaObjectEnumerator_t503074204 * V_3 = NULL; XmlSchemaAttributeGroupRef_t846390688 * V_4 = NULL; XmlSchemaAttributeGroup_t246430545 * V_5 = NULL; DictionaryEntry_t3123975638 V_6; memset(&V_6, 0, sizeof(V_6)); RuntimeObject* V_7 = NULL; XmlSchemaAttribute_t2797257020 * V_8 = NULL; XmlSchemaAttribute_t2797257020 * V_9 = NULL; RuntimeObject* V_10 = NULL; RuntimeObject* V_11 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { V_0 = 0; XmlSchemaAnyAttribute_t963227996 * L_0 = ___anyAttribute4; if (!L_0) { goto IL_0016; } } { XmlSchemaAnyAttribute_t963227996 ** L_1 = ___anyAttributeUse5; if ((*((XmlSchemaAnyAttribute_t963227996 **)L_1))) { goto IL_0016; } } { XmlSchemaAnyAttribute_t963227996 ** L_2 = ___anyAttributeUse5; XmlSchemaAnyAttribute_t963227996 * L_3 = ___anyAttribute4; *((RuntimeObject **)(L_2)) = (RuntimeObject *)L_3; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_2), (RuntimeObject *)L_3); } IL_0016: { ArrayList_t2718874744 * L_4 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_4, /*hidden argument*/NULL); V_1 = L_4; XmlSchemaObjectCollection_t1064819932 * L_5 = ___attributes3; NullCheck(L_5); XmlSchemaObjectEnumerator_t503074204 * L_6 = XmlSchemaObjectCollection_GetEnumerator_m568986310(L_5, /*hidden argument*/NULL); V_3 = L_6; } IL_0023: try { // begin try (depth: 1) { goto IL_034a; } IL_0028: { XmlSchemaObjectEnumerator_t503074204 * L_7 = V_3; NullCheck(L_7); XmlSchemaObject_t1315720168 * L_8 = XmlSchemaObjectEnumerator_get_Current_m2597242723(L_7, /*hidden argument*/NULL); V_2 = L_8; XmlSchemaObject_t1315720168 * L_9 = V_2; V_4 = ((XmlSchemaAttributeGroupRef_t846390688 *)IsInstClass((RuntimeObject*)L_9, XmlSchemaAttributeGroupRef_t846390688_il2cpp_TypeInfo_var)); XmlSchemaAttributeGroupRef_t846390688 * L_10 = V_4; if (!L_10) { goto IL_0224; } } IL_003e: { V_5 = (XmlSchemaAttributeGroup_t246430545 *)NULL; XmlSchemaAttributeGroup_t246430545 * L_11 = ___redefined6; if (!L_11) { goto IL_0069; } } IL_0048: { XmlSchemaAttributeGroupRef_t846390688 * L_12 = V_4; NullCheck(L_12); XmlQualifiedName_t2760654312 * L_13 = XmlSchemaAttributeGroupRef_get_RefName_m204670386(L_12, /*hidden argument*/NULL); XmlSchemaAttributeGroup_t246430545 * L_14 = ___redefined6; NullCheck(L_14); XmlQualifiedName_t2760654312 * L_15 = XmlSchemaAttributeGroup_get_QualifiedName_m1385469852(L_14, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_16 = XmlQualifiedName_op_Equality_m1684199236(NULL /*static, unused*/, L_13, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0069; } } IL_0060: { XmlSchemaAttributeGroup_t246430545 * L_17 = ___redefined6; V_5 = L_17; goto IL_0078; } IL_0069: { XmlSchema_t3742557897 * L_18 = ___schema2; XmlSchemaAttributeGroupRef_t846390688 * L_19 = V_4; NullCheck(L_19); XmlQualifiedName_t2760654312 * L_20 = XmlSchemaAttributeGroupRef_get_RefName_m204670386(L_19, /*hidden argument*/NULL); NullCheck(L_18); XmlSchemaAttributeGroup_t246430545 * L_21 = XmlSchema_FindAttributeGroup_m3862267088(L_18, L_20, /*hidden argument*/NULL); V_5 = L_21; } IL_0078: { XmlSchemaAttributeGroup_t246430545 * L_22 = V_5; if (L_22) { goto IL_00ad; } } IL_007f: { XmlSchema_t3742557897 * L_23 = ___schema2; NullCheck(L_23); bool L_24 = L_23->get_missedSubComponents_30(); if (L_24) { goto IL_00a8; } } IL_008a: { XmlSchemaAttributeGroupRef_t846390688 * L_25 = V_4; ValidationEventHandler_t791314227 * L_26 = ___h1; XmlSchemaAttributeGroupRef_t846390688 * L_27 = V_4; NullCheck(L_27); XmlQualifiedName_t2760654312 * L_28 = XmlSchemaAttributeGroupRef_get_RefName_m204670386(L_27, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_29 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral675022115, L_28, _stringLiteral1962955403, /*hidden argument*/NULL); NullCheck(L_25); XmlSchemaObject_error_m903554348(L_25, L_26, L_29, /*hidden argument*/NULL); } IL_00a8: { goto IL_034a; } IL_00ad: { XmlSchemaAttributeGroup_t246430545 * L_30 = V_5; NullCheck(L_30); bool L_31 = L_30->get_AttributeGroupRecursionCheck_23(); if (!L_31) { goto IL_00d7; } } IL_00b9: { XmlSchemaAttributeGroup_t246430545 * L_32 = V_5; ValidationEventHandler_t791314227 * L_33 = ___h1; XmlSchemaAttributeGroupRef_t846390688 * L_34 = V_4; NullCheck(L_34); XmlQualifiedName_t2760654312 * L_35 = XmlSchemaAttributeGroupRef_get_RefName_m204670386(L_34, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_36 = String_Concat_m904156431(NULL /*static, unused*/, _stringLiteral2937021657, L_35, /*hidden argument*/NULL); NullCheck(L_32); XmlSchemaObject_error_m903554348(L_32, L_33, L_36, /*hidden argument*/NULL); goto IL_034a; } IL_00d7: try { // begin try (depth: 2) XmlSchemaAttributeGroup_t246430545 * L_37 = V_5; NullCheck(L_37); L_37->set_AttributeGroupRecursionCheck_23((bool)1); int32_t L_38 = V_0; XmlSchemaAttributeGroup_t246430545 * L_39 = V_5; ValidationEventHandler_t791314227 * L_40 = ___h1; XmlSchema_t3742557897 * L_41 = ___schema2; NullCheck(L_39); int32_t L_42 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaAttributeGroup::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_39, L_40, L_41); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_42)); IL2CPP_LEAVE(0xF9, FINALLY_00f0); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00f0; } FINALLY_00f0: { // begin finally (depth: 2) XmlSchemaAttributeGroup_t246430545 * L_43 = V_5; NullCheck(L_43); L_43->set_AttributeGroupRecursionCheck_23((bool)0); IL2CPP_END_FINALLY(240) } // end finally (depth: 2) IL2CPP_CLEANUP(240) { IL2CPP_JUMP_TBL(0xF9, IL_00f9) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00f9: { XmlSchemaAttributeGroup_t246430545 * L_44 = V_5; NullCheck(L_44); XmlSchemaAnyAttribute_t963227996 * L_45 = XmlSchemaAttributeGroup_get_AnyAttributeUse_m1865244267(L_44, /*hidden argument*/NULL); if (!L_45) { goto IL_0116; } } IL_0105: { XmlSchemaAnyAttribute_t963227996 * L_46 = ___anyAttribute4; if (L_46) { goto IL_0116; } } IL_010c: { XmlSchemaAnyAttribute_t963227996 ** L_47 = ___anyAttributeUse5; XmlSchemaAttributeGroup_t246430545 * L_48 = V_5; NullCheck(L_48); XmlSchemaAnyAttribute_t963227996 * L_49 = XmlSchemaAttributeGroup_get_AnyAttributeUse_m1865244267(L_48, /*hidden argument*/NULL); *((RuntimeObject **)(L_47)) = (RuntimeObject *)L_49; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_47), (RuntimeObject *)L_49); } IL_0116: { XmlSchemaAttributeGroup_t246430545 * L_50 = V_5; NullCheck(L_50); XmlSchemaObjectTable_t2546974348 * L_51 = XmlSchemaAttributeGroup_get_AttributeUses_m4084363404(L_50, /*hidden argument*/NULL); NullCheck(L_51); RuntimeObject* L_52 = XmlSchemaObjectTable_GetEnumerator_m810751834(L_51, /*hidden argument*/NULL); V_7 = L_52; } IL_0124: try { // begin try (depth: 2) { goto IL_01f8; } IL_0129: { RuntimeObject* L_53 = V_7; NullCheck(L_53); RuntimeObject * L_54 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_53); V_6 = ((*(DictionaryEntry_t3123975638 *)((DictionaryEntry_t3123975638 *)UnBox(L_54, DictionaryEntry_t3123975638_il2cpp_TypeInfo_var)))); RuntimeObject * L_55 = DictionaryEntry_get_Value_m618120527((&V_6), /*hidden argument*/NULL); V_8 = ((XmlSchemaAttribute_t2797257020 *)CastclassClass((RuntimeObject*)L_55, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_56 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_StrictMsCompliant_3(); if (!L_56) { goto IL_0161; } } IL_014f: { XmlSchemaAttribute_t2797257020 * L_57 = V_8; NullCheck(L_57); int32_t L_58 = XmlSchemaAttribute_get_Use_m2314455910(L_57, /*hidden argument*/NULL); if ((!(((uint32_t)L_58) == ((uint32_t)2)))) { goto IL_0161; } } IL_015c: { goto IL_01f8; } IL_0161: { XmlSchemaAttribute_t2797257020 * L_59 = V_8; NullCheck(L_59); XmlQualifiedName_t2760654312 * L_60 = XmlSchemaAttribute_get_RefName_m3220837151(L_59, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_61 = XmlQualifiedName_op_Inequality_m3449274916(NULL /*static, unused*/, L_60, (XmlQualifiedName_t2760654312 *)NULL, /*hidden argument*/NULL); if (!L_61) { goto IL_01c3; } } IL_0173: { XmlSchemaAttribute_t2797257020 * L_62 = V_8; NullCheck(L_62); XmlQualifiedName_t2760654312 * L_63 = XmlSchemaAttribute_get_RefName_m3220837151(L_62, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_64 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); bool L_65 = XmlQualifiedName_op_Inequality_m3449274916(NULL /*static, unused*/, L_63, L_64, /*hidden argument*/NULL); if (!L_65) { goto IL_01c3; } } IL_0189: { bool L_66 = ___skipEquivalent7; if (!L_66) { goto IL_01ae; } } IL_0190: { XmlSchemaAttribute_t2797257020 * L_67 = V_8; XmlSchemaObjectTable_t2546974348 * L_68 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_69 = V_8; NullCheck(L_69); XmlQualifiedName_t2760654312 * L_70 = XmlSchemaAttribute_get_RefName_m3220837151(L_69, /*hidden argument*/NULL); NullCheck(L_68); XmlSchemaObject_t1315720168 * L_71 = XmlSchemaObjectTable_get_Item_m170185878(L_68, L_70, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_72 = XmlSchemaUtil_AreAttributesEqual_m2698191758(NULL /*static, unused*/, L_67, ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_71, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_72) { goto IL_01c3; } } IL_01ae: { XmlSchemaObjectTable_t2546974348 * L_73 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_74 = V_8; XmlSchemaAttribute_t2797257020 * L_75 = V_8; NullCheck(L_75); XmlQualifiedName_t2760654312 * L_76 = XmlSchemaAttribute_get_RefName_m3220837151(L_75, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_77 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_AddToTable_m2760389917(NULL /*static, unused*/, L_73, L_74, L_76, L_77, /*hidden argument*/NULL); goto IL_01f8; } IL_01c3: { bool L_78 = ___skipEquivalent7; if (!L_78) { goto IL_01e8; } } IL_01ca: { XmlSchemaAttribute_t2797257020 * L_79 = V_8; XmlSchemaObjectTable_t2546974348 * L_80 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_81 = V_8; NullCheck(L_81); XmlQualifiedName_t2760654312 * L_82 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_81, /*hidden argument*/NULL); NullCheck(L_80); XmlSchemaObject_t1315720168 * L_83 = XmlSchemaObjectTable_get_Item_m170185878(L_80, L_82, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_84 = XmlSchemaUtil_AreAttributesEqual_m2698191758(NULL /*static, unused*/, L_79, ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_83, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_84) { goto IL_01f8; } } IL_01e8: { XmlSchemaObjectTable_t2546974348 * L_85 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_86 = V_8; XmlSchemaAttribute_t2797257020 * L_87 = V_8; NullCheck(L_87); XmlQualifiedName_t2760654312 * L_88 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_87, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_89 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_AddToTable_m2760389917(NULL /*static, unused*/, L_85, L_86, L_88, L_89, /*hidden argument*/NULL); } IL_01f8: { RuntimeObject* L_90 = V_7; NullCheck(L_90); bool L_91 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_90); if (L_91) { goto IL_0129; } } IL_0204: { IL2CPP_LEAVE(0x21F, FINALLY_0209); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0209; } FINALLY_0209: { // begin finally (depth: 2) { RuntimeObject* L_92 = V_7; V_10 = ((RuntimeObject*)IsInst((RuntimeObject*)L_92, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_93 = V_10; if (L_93) { goto IL_0217; } } IL_0216: { IL2CPP_END_FINALLY(521) } IL_0217: { RuntimeObject* L_94 = V_10; NullCheck(L_94); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_94); IL2CPP_END_FINALLY(521) } } // end finally (depth: 2) IL2CPP_CLEANUP(521) { IL2CPP_JUMP_TBL(0x21F, IL_021f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_021f: { goto IL_034a; } IL_0224: { XmlSchemaObject_t1315720168 * L_95 = V_2; V_9 = ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_95, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); XmlSchemaAttribute_t2797257020 * L_96 = V_9; if (!L_96) { goto IL_0330; } } IL_0233: { int32_t L_97 = V_0; XmlSchemaAttribute_t2797257020 * L_98 = V_9; ValidationEventHandler_t791314227 * L_99 = ___h1; XmlSchema_t3742557897 * L_100 = ___schema2; NullCheck(L_98); int32_t L_101 = VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaAttribute::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_98, L_99, L_100); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_97, (int32_t)L_101)); ArrayList_t2718874744 * L_102 = V_1; XmlSchemaAttribute_t2797257020 * L_103 = V_9; NullCheck(L_103); XmlQualifiedName_t2760654312 * L_104 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_103, /*hidden argument*/NULL); NullCheck(L_102); bool L_105 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_102, L_104); if (!L_105) { goto IL_026a; } } IL_0251: { XmlSchemaAttribute_t2797257020 * L_106 = V_9; ValidationEventHandler_t791314227 * L_107 = ___h1; XmlSchemaAttribute_t2797257020 * L_108 = V_9; NullCheck(L_108); XmlQualifiedName_t2760654312 * L_109 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_108, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_110 = String_Format_m2844511972(NULL /*static, unused*/, _stringLiteral65512210, L_109, /*hidden argument*/NULL); NullCheck(L_106); XmlSchemaObject_error_m903554348(L_106, L_107, L_110, /*hidden argument*/NULL); } IL_026a: { ArrayList_t2718874744 * L_111 = V_1; XmlSchemaAttribute_t2797257020 * L_112 = V_9; NullCheck(L_112); XmlQualifiedName_t2760654312 * L_113 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_112, /*hidden argument*/NULL); NullCheck(L_111); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_111, L_113); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_114 = ((XmlSchemaUtil_t956145399_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var))->get_StrictMsCompliant_3(); if (!L_114) { goto IL_0294; } } IL_0282: { XmlSchemaAttribute_t2797257020 * L_115 = V_9; NullCheck(L_115); int32_t L_116 = XmlSchemaAttribute_get_Use_m2314455910(L_115, /*hidden argument*/NULL); if ((!(((uint32_t)L_116) == ((uint32_t)2)))) { goto IL_0294; } } IL_028f: { goto IL_034a; } IL_0294: { XmlSchemaAttribute_t2797257020 * L_117 = V_9; NullCheck(L_117); XmlQualifiedName_t2760654312 * L_118 = XmlSchemaAttribute_get_RefName_m3220837151(L_117, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); bool L_119 = XmlQualifiedName_op_Inequality_m3449274916(NULL /*static, unused*/, L_118, (XmlQualifiedName_t2760654312 *)NULL, /*hidden argument*/NULL); if (!L_119) { goto IL_02f6; } } IL_02a6: { XmlSchemaAttribute_t2797257020 * L_120 = V_9; NullCheck(L_120); XmlQualifiedName_t2760654312 * L_121 = XmlSchemaAttribute_get_RefName_m3220837151(L_120, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName_t2760654312 * L_122 = ((XmlQualifiedName_t2760654312_StaticFields*)il2cpp_codegen_static_fields_for(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var))->get_Empty_0(); bool L_123 = XmlQualifiedName_op_Inequality_m3449274916(NULL /*static, unused*/, L_121, L_122, /*hidden argument*/NULL); if (!L_123) { goto IL_02f6; } } IL_02bc: { bool L_124 = ___skipEquivalent7; if (!L_124) { goto IL_02e1; } } IL_02c3: { XmlSchemaAttribute_t2797257020 * L_125 = V_9; XmlSchemaObjectTable_t2546974348 * L_126 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_127 = V_9; NullCheck(L_127); XmlQualifiedName_t2760654312 * L_128 = XmlSchemaAttribute_get_RefName_m3220837151(L_127, /*hidden argument*/NULL); NullCheck(L_126); XmlSchemaObject_t1315720168 * L_129 = XmlSchemaObjectTable_get_Item_m170185878(L_126, L_128, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_130 = XmlSchemaUtil_AreAttributesEqual_m2698191758(NULL /*static, unused*/, L_125, ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_129, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_130) { goto IL_02f6; } } IL_02e1: { XmlSchemaObjectTable_t2546974348 * L_131 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_132 = V_9; XmlSchemaAttribute_t2797257020 * L_133 = V_9; NullCheck(L_133); XmlQualifiedName_t2760654312 * L_134 = XmlSchemaAttribute_get_RefName_m3220837151(L_133, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_135 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_AddToTable_m2760389917(NULL /*static, unused*/, L_131, L_132, L_134, L_135, /*hidden argument*/NULL); goto IL_032b; } IL_02f6: { bool L_136 = ___skipEquivalent7; if (!L_136) { goto IL_031b; } } IL_02fd: { XmlSchemaAttribute_t2797257020 * L_137 = V_9; XmlSchemaObjectTable_t2546974348 * L_138 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_139 = V_9; NullCheck(L_139); XmlQualifiedName_t2760654312 * L_140 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_139, /*hidden argument*/NULL); NullCheck(L_138); XmlSchemaObject_t1315720168 * L_141 = XmlSchemaObjectTable_get_Item_m170185878(L_138, L_140, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_142 = XmlSchemaUtil_AreAttributesEqual_m2698191758(NULL /*static, unused*/, L_137, ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_141, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)), /*hidden argument*/NULL); if (L_142) { goto IL_032b; } } IL_031b: { XmlSchemaObjectTable_t2546974348 * L_143 = ___attributesResolved0; XmlSchemaAttribute_t2797257020 * L_144 = V_9; XmlSchemaAttribute_t2797257020 * L_145 = V_9; NullCheck(L_145); XmlQualifiedName_t2760654312 * L_146 = XmlSchemaAttribute_get_QualifiedName_m383925923(L_145, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_147 = ___h1; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_AddToTable_m2760389917(NULL /*static, unused*/, L_143, L_144, L_146, L_147, /*hidden argument*/NULL); } IL_032b: { goto IL_034a; } IL_0330: { XmlSchemaAnyAttribute_t963227996 * L_148 = ___anyAttribute4; if (L_148) { goto IL_034a; } } IL_0337: { XmlSchemaAnyAttribute_t963227996 ** L_149 = ___anyAttributeUse5; XmlSchemaObject_t1315720168 * L_150 = V_2; *((RuntimeObject **)(L_149)) = (RuntimeObject *)((XmlSchemaAnyAttribute_t963227996 *)CastclassClass((RuntimeObject*)L_150, XmlSchemaAnyAttribute_t963227996_il2cpp_TypeInfo_var)); Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_149), (RuntimeObject *)((XmlSchemaAnyAttribute_t963227996 *)CastclassClass((RuntimeObject*)L_150, XmlSchemaAnyAttribute_t963227996_il2cpp_TypeInfo_var))); XmlSchemaAnyAttribute_t963227996 * L_151 = ___anyAttribute4; ValidationEventHandler_t791314227 * L_152 = ___h1; XmlSchema_t3742557897 * L_153 = ___schema2; NullCheck(L_151); VirtFuncInvoker2< int32_t, ValidationEventHandler_t791314227 *, XmlSchema_t3742557897 * >::Invoke(6 /* System.Int32 System.Xml.Schema.XmlSchemaAnyAttribute::Validate(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) */, L_151, L_152, L_153); } IL_034a: { XmlSchemaObjectEnumerator_t503074204 * L_154 = V_3; NullCheck(L_154); bool L_155 = XmlSchemaObjectEnumerator_MoveNext_m3595167032(L_154, /*hidden argument*/NULL); if (L_155) { goto IL_0028; } } IL_0355: { IL2CPP_LEAVE(0x36F, FINALLY_035a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_035a; } FINALLY_035a: { // begin finally (depth: 1) { XmlSchemaObjectEnumerator_t503074204 * L_156 = V_3; V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_156, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_157 = V_11; if (L_157) { goto IL_0367; } } IL_0366: { IL2CPP_END_FINALLY(858) } IL_0367: { RuntimeObject* L_158 = V_11; NullCheck(L_158); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_158); IL2CPP_END_FINALLY(858) } } // end finally (depth: 1) IL2CPP_CLEANUP(858) { IL2CPP_JUMP_TBL(0x36F, IL_036f) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_036f: { int32_t L_159 = V_0; return L_159; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::AreAttributesEqual(System.Xml.Schema.XmlSchemaAttribute,System.Xml.Schema.XmlSchemaAttribute) extern "C" bool XmlSchemaUtil_AreAttributesEqual_m2698191758 (RuntimeObject * __this /* static, unused */, XmlSchemaAttribute_t2797257020 * ___one0, XmlSchemaAttribute_t2797257020 * ___another1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_AreAttributesEqual_m2698191758_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t G_B9_0 = 0; { XmlSchemaAttribute_t2797257020 * L_0 = ___one0; if (!L_0) { goto IL_000c; } } { XmlSchemaAttribute_t2797257020 * L_1 = ___another1; if (L_1) { goto IL_000e; } } IL_000c: { return (bool)0; } IL_000e: { XmlSchemaAttribute_t2797257020 * L_2 = ___one0; NullCheck(L_2); RuntimeObject * L_3 = XmlSchemaAttribute_get_AttributeType_m3262341146(L_2, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_4 = ___another1; NullCheck(L_4); RuntimeObject * L_5 = XmlSchemaAttribute_get_AttributeType_m3262341146(L_4, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(RuntimeObject *)L_3) == ((RuntimeObject*)(RuntimeObject *)L_5)))) { goto IL_006a; } } { XmlSchemaAttribute_t2797257020 * L_6 = ___one0; NullCheck(L_6); int32_t L_7 = XmlSchemaAttribute_get_Form_m2648016496(L_6, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_8 = ___another1; NullCheck(L_8); int32_t L_9 = XmlSchemaAttribute_get_Form_m2648016496(L_8, /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)L_9)))) { goto IL_006a; } } { XmlSchemaAttribute_t2797257020 * L_10 = ___one0; NullCheck(L_10); int32_t L_11 = XmlSchemaAttribute_get_ValidatedUse_m1294483544(L_10, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_12 = ___another1; NullCheck(L_12); int32_t L_13 = XmlSchemaAttribute_get_ValidatedUse_m1294483544(L_12, /*hidden argument*/NULL); if ((!(((uint32_t)L_11) == ((uint32_t)L_13)))) { goto IL_006a; } } { XmlSchemaAttribute_t2797257020 * L_14 = ___one0; NullCheck(L_14); String_t* L_15 = XmlSchemaAttribute_get_ValidatedDefaultValue_m3096825113(L_14, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_16 = ___another1; NullCheck(L_16); String_t* L_17 = XmlSchemaAttribute_get_ValidatedDefaultValue_m3096825113(L_16, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_18 = String_op_Equality_m920492651(NULL /*static, unused*/, L_15, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_006a; } } { XmlSchemaAttribute_t2797257020 * L_19 = ___one0; NullCheck(L_19); String_t* L_20 = XmlSchemaAttribute_get_ValidatedFixedValue_m2069521927(L_19, /*hidden argument*/NULL); XmlSchemaAttribute_t2797257020 * L_21 = ___another1; NullCheck(L_21); String_t* L_22 = XmlSchemaAttribute_get_ValidatedFixedValue_m2069521927(L_21, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_23 = String_op_Equality_m920492651(NULL /*static, unused*/, L_20, L_22, /*hidden argument*/NULL); G_B9_0 = ((int32_t)(L_23)); goto IL_006b; } IL_006a: { G_B9_0 = 0; } IL_006b: { return (bool)G_B9_0; } } // System.Xml.Schema.XmlSchemaObject System.Xml.Schema.XmlSchemaUtil::FindAttributeDeclaration(System.String,System.Xml.Schema.XmlSchemaSet,System.Xml.Schema.XmlSchemaComplexType,System.Xml.XmlQualifiedName) extern "C" XmlSchemaObject_t1315720168 * XmlSchemaUtil_FindAttributeDeclaration_m1889570336 (RuntimeObject * __this /* static, unused */, String_t* ___ns0, XmlSchemaSet_t266093086 * ___schemas1, XmlSchemaComplexType_t3740801802 * ___cType2, XmlQualifiedName_t2760654312 * ___qname3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_FindAttributeDeclaration_m1889570336_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaObject_t1315720168 * V_0 = NULL; XmlSchemaAttribute_t2797257020 * V_1 = NULL; { XmlSchemaComplexType_t3740801802 * L_0 = ___cType2; NullCheck(L_0); XmlSchemaObjectTable_t2546974348 * L_1 = XmlSchemaComplexType_get_AttributeUses_m3736990879(L_0, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_2 = ___qname3; NullCheck(L_1); XmlSchemaObject_t1315720168 * L_3 = XmlSchemaObjectTable_get_Item_m170185878(L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; XmlSchemaObject_t1315720168 * L_4 = V_0; if (!L_4) { goto IL_0015; } } { XmlSchemaObject_t1315720168 * L_5 = V_0; return L_5; } IL_0015: { XmlSchemaComplexType_t3740801802 * L_6 = ___cType2; NullCheck(L_6); XmlSchemaAnyAttribute_t963227996 * L_7 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0022; } } { return (XmlSchemaObject_t1315720168 *)NULL; } IL_0022: { XmlSchemaComplexType_t3740801802 * L_8 = ___cType2; NullCheck(L_8); XmlSchemaAnyAttribute_t963227996 * L_9 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_8, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_10 = ___qname3; String_t* L_11 = ___ns0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_12 = XmlSchemaUtil_AttributeWildcardItemValid_m34123625(NULL /*static, unused*/, L_9, L_10, L_11, /*hidden argument*/NULL); if (L_12) { goto IL_0036; } } { return (XmlSchemaObject_t1315720168 *)NULL; } IL_0036: { XmlSchemaComplexType_t3740801802 * L_13 = ___cType2; NullCheck(L_13); XmlSchemaAnyAttribute_t963227996 * L_14 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_13, /*hidden argument*/NULL); NullCheck(L_14); int32_t L_15 = XmlSchemaAnyAttribute_get_ResolvedProcessContents_m870264228(L_14, /*hidden argument*/NULL); if ((!(((uint32_t)L_15) == ((uint32_t)1)))) { goto IL_004e; } } { XmlSchemaComplexType_t3740801802 * L_16 = ___cType2; NullCheck(L_16); XmlSchemaAnyAttribute_t963227996 * L_17 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_16, /*hidden argument*/NULL); return L_17; } IL_004e: { XmlSchemaSet_t266093086 * L_18 = ___schemas1; NullCheck(L_18); XmlSchemaObjectTable_t2546974348 * L_19 = XmlSchemaSet_get_GlobalAttributes_m3274158681(L_18, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_20 = ___qname3; NullCheck(L_19); XmlSchemaObject_t1315720168 * L_21 = XmlSchemaObjectTable_get_Item_m170185878(L_19, L_20, /*hidden argument*/NULL); V_1 = ((XmlSchemaAttribute_t2797257020 *)IsInstClass((RuntimeObject*)L_21, XmlSchemaAttribute_t2797257020_il2cpp_TypeInfo_var)); XmlSchemaAttribute_t2797257020 * L_22 = V_1; if (!L_22) { goto IL_0068; } } { XmlSchemaAttribute_t2797257020 * L_23 = V_1; return L_23; } IL_0068: { XmlSchemaComplexType_t3740801802 * L_24 = ___cType2; NullCheck(L_24); XmlSchemaAnyAttribute_t963227996 * L_25 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_24, /*hidden argument*/NULL); NullCheck(L_25); int32_t L_26 = XmlSchemaAnyAttribute_get_ResolvedProcessContents_m870264228(L_25, /*hidden argument*/NULL); if ((!(((uint32_t)L_26) == ((uint32_t)2)))) { goto IL_0080; } } { XmlSchemaComplexType_t3740801802 * L_27 = ___cType2; NullCheck(L_27); XmlSchemaAnyAttribute_t963227996 * L_28 = XmlSchemaComplexType_get_AttributeWildcard_m3132428207(L_27, /*hidden argument*/NULL); return L_28; } IL_0080: { return (XmlSchemaObject_t1315720168 *)NULL; } } // System.Boolean System.Xml.Schema.XmlSchemaUtil::AttributeWildcardItemValid(System.Xml.Schema.XmlSchemaAnyAttribute,System.Xml.XmlQualifiedName,System.String) extern "C" bool XmlSchemaUtil_AttributeWildcardItemValid_m34123625 (RuntimeObject * __this /* static, unused */, XmlSchemaAnyAttribute_t963227996 * ___anyAttr0, XmlQualifiedName_t2760654312 * ___qname1, String_t* ___ns2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaUtil_AttributeWildcardItemValid_m34123625_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { XmlSchemaAnyAttribute_t963227996 * L_0 = ___anyAttr0; NullCheck(L_0); bool L_1 = XmlSchemaAnyAttribute_get_HasValueAny_m840082675(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_000d; } } { return (bool)1; } IL_000d: { XmlSchemaAnyAttribute_t963227996 * L_2 = ___anyAttr0; NullCheck(L_2); bool L_3 = XmlSchemaAnyAttribute_get_HasValueOther_m1767451513(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0040; } } { XmlSchemaAnyAttribute_t963227996 * L_4 = ___anyAttr0; NullCheck(L_4); String_t* L_5 = XmlSchemaAnyAttribute_get_TargetNamespace_m1092685783(L_4, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_6 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_7 = String_op_Equality_m920492651(NULL /*static, unused*/, L_5, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_003e; } } { String_t* L_8 = ___ns2; XmlSchemaAnyAttribute_t963227996 * L_9 = ___anyAttr0; NullCheck(L_9); String_t* L_10 = XmlSchemaAnyAttribute_get_TargetNamespace_m1092685783(L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_11 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_8, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0040; } } IL_003e: { return (bool)1; } IL_0040: { XmlSchemaAnyAttribute_t963227996 * L_12 = ___anyAttr0; NullCheck(L_12); bool L_13 = XmlSchemaAnyAttribute_get_HasValueTargetNamespace_m1853992864(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_005e; } } { String_t* L_14 = ___ns2; XmlSchemaAnyAttribute_t963227996 * L_15 = ___anyAttr0; NullCheck(L_15); String_t* L_16 = XmlSchemaAnyAttribute_get_TargetNamespace_m1092685783(L_15, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_17 = String_op_Equality_m920492651(NULL /*static, unused*/, L_14, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_005e; } } { return (bool)1; } IL_005e: { XmlSchemaAnyAttribute_t963227996 * L_18 = ___anyAttr0; NullCheck(L_18); bool L_19 = XmlSchemaAnyAttribute_get_HasValueLocal_m1152318798(L_18, /*hidden argument*/NULL); if (!L_19) { goto IL_007b; } } { String_t* L_20 = ___ns2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_22 = String_op_Equality_m920492651(NULL /*static, unused*/, L_20, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_007b; } } { return (bool)1; } IL_007b: { V_0 = 0; goto IL_009f; } IL_0082: { XmlSchemaAnyAttribute_t963227996 * L_23 = ___anyAttr0; NullCheck(L_23); StringCollection_t167406615 * L_24 = XmlSchemaAnyAttribute_get_ResolvedNamespaces_m3287693330(L_23, /*hidden argument*/NULL); int32_t L_25 = V_0; NullCheck(L_24); String_t* L_26 = StringCollection_get_Item_m4180232243(L_24, L_25, /*hidden argument*/NULL); String_t* L_27 = ___ns2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_28 = String_op_Equality_m920492651(NULL /*static, unused*/, L_26, L_27, /*hidden argument*/NULL); if (!L_28) { goto IL_009b; } } { return (bool)1; } IL_009b: { int32_t L_29 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1)); } IL_009f: { int32_t L_30 = V_0; XmlSchemaAnyAttribute_t963227996 * L_31 = ___anyAttr0; NullCheck(L_31); StringCollection_t167406615 * L_32 = XmlSchemaAnyAttribute_get_ResolvedNamespaces_m3287693330(L_31, /*hidden argument*/NULL); NullCheck(L_32); int32_t L_33 = StringCollection_get_Count_m2156595195(L_32, /*hidden argument*/NULL); if ((((int32_t)L_30) < ((int32_t)L_33))) { goto IL_0082; } } { return (bool)0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaValidationException::.ctor() extern "C" void XmlSchemaValidationException__ctor_m214920854 (XmlSchemaValidationException_t816160496 * __this, const RuntimeMethod* method) { { XmlSchemaException__ctor_m840420279(__this, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaValidationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void XmlSchemaValidationException__ctor_m1410215019 (XmlSchemaValidationException_t816160496 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { { SerializationInfo_t950877179 * L_0 = ___info0; StreamingContext_t3711869237 L_1 = ___context1; XmlSchemaException__ctor_m2998327023(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaValidationException::.ctor(System.String,System.Object,System.String,System.Xml.Schema.XmlSchemaObject,System.Exception) extern "C" void XmlSchemaValidationException__ctor_m2673202148 (XmlSchemaValidationException_t816160496 * __this, String_t* ___message0, RuntimeObject * ___sender1, String_t* ___sourceUri2, XmlSchemaObject_t1315720168 * ___sourceObject3, Exception_t * ___innerException4, const RuntimeMethod* method) { { String_t* L_0 = ___message0; RuntimeObject * L_1 = ___sender1; String_t* L_2 = ___sourceUri2; XmlSchemaObject_t1315720168 * L_3 = ___sourceObject3; Exception_t * L_4 = ___innerException4; XmlSchemaException__ctor_m198186642(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaValidationException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) extern "C" void XmlSchemaValidationException_GetObjectData_m37400798 (XmlSchemaValidationException_t816160496 * __this, SerializationInfo_t950877179 * ___info0, StreamingContext_t3711869237 ___context1, const RuntimeMethod* method) { { SerializationInfo_t950877179 * L_0 = ___info0; StreamingContext_t3711869237 L_1 = ___context1; XmlSchemaException_GetObjectData_m4261679908(__this, L_0, L_1, /*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 #ifdef __clang__ #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.Xml.Schema.XmlSchemaWhiteSpaceFacet::.ctor() extern "C" void XmlSchemaWhiteSpaceFacet__ctor_m1190861561 (XmlSchemaWhiteSpaceFacet_t4158372164 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaWhiteSpaceFacet__ctor_m1190861561_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaFacet_t1906017689_il2cpp_TypeInfo_var); XmlSchemaFacet__ctor_m442738916(__this, /*hidden argument*/NULL); return; } } // System.Xml.Schema.XmlSchemaFacet/Facet System.Xml.Schema.XmlSchemaWhiteSpaceFacet::get_ThisFacet() extern "C" int32_t XmlSchemaWhiteSpaceFacet_get_ThisFacet_m3108218635 (XmlSchemaWhiteSpaceFacet_t4158372164 * __this, const RuntimeMethod* method) { { return (int32_t)(((int32_t)32)); } } // System.Xml.Schema.XmlSchemaWhiteSpaceFacet System.Xml.Schema.XmlSchemaWhiteSpaceFacet::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler) extern "C" XmlSchemaWhiteSpaceFacet_t4158372164 * XmlSchemaWhiteSpaceFacet_Read_m1012238860 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaWhiteSpaceFacet_Read_m1012238860_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaWhiteSpaceFacet_t4158372164 * V_0 = NULL; Exception_t * V_1 = NULL; int32_t V_2 = 0; XmlSchemaAnnotation_t2553753397 * V_3 = NULL; { XmlSchemaWhiteSpaceFacet_t4158372164 * L_0 = (XmlSchemaWhiteSpaceFacet_t4158372164 *)il2cpp_codegen_object_new(XmlSchemaWhiteSpaceFacet_t4158372164_il2cpp_TypeInfo_var); XmlSchemaWhiteSpaceFacet__ctor_m1190861561(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0037; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_7 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, _stringLiteral1492323255, /*hidden argument*/NULL); if (!L_7) { goto IL_0056; } } IL_0037: { ValidationEventHandler_t791314227 * L_8 = ___h1; XmlSchemaReader_t1164558392 * L_9 = ___reader0; NullCheck(L_9); String_t* L_10 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_9); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_11 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1471754589, L_10, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_8, L_11, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_12 = ___reader0; NullCheck(L_12); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_12); return (XmlSchemaWhiteSpaceFacet_t4158372164 *)NULL; } IL_0056: { XmlSchemaWhiteSpaceFacet_t4158372164 * L_13 = V_0; XmlSchemaReader_t1164558392 * L_14 = ___reader0; NullCheck(L_14); int32_t L_15 = XmlSchemaReader_get_LineNumber_m3920914464(L_14, /*hidden argument*/NULL); NullCheck(L_13); XmlSchemaObject_set_LineNumber_m1360499025(L_13, L_15, /*hidden argument*/NULL); XmlSchemaWhiteSpaceFacet_t4158372164 * L_16 = V_0; XmlSchemaReader_t1164558392 * L_17 = ___reader0; NullCheck(L_17); int32_t L_18 = XmlSchemaReader_get_LinePosition_m2272047151(L_17, /*hidden argument*/NULL); NullCheck(L_16); XmlSchemaObject_set_LinePosition_m906865826(L_16, L_18, /*hidden argument*/NULL); XmlSchemaWhiteSpaceFacet_t4158372164 * L_19 = V_0; XmlSchemaReader_t1164558392 * L_20 = ___reader0; NullCheck(L_20); String_t* L_21 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_20); NullCheck(L_19); XmlSchemaObject_set_SourceUri_m2760372687(L_19, L_21, /*hidden argument*/NULL); goto IL_0172; } IL_007f: { XmlSchemaReader_t1164558392 * L_22 = ___reader0; NullCheck(L_22); String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_22); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_24 = String_op_Equality_m920492651(NULL /*static, unused*/, L_23, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_24) { goto IL_00a5; } } { XmlSchemaWhiteSpaceFacet_t4158372164 * L_25 = V_0; XmlSchemaReader_t1164558392 * L_26 = ___reader0; NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_26); NullCheck(L_25); XmlSchemaAnnotated_set_Id_m1597719336(L_25, L_27, /*hidden argument*/NULL); goto IL_0172; } IL_00a5: { XmlSchemaReader_t1164558392 * L_28 = ___reader0; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_28); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_30 = String_op_Equality_m920492651(NULL /*static, unused*/, L_29, _stringLiteral1709130670, /*hidden argument*/NULL); if (!L_30) { goto IL_00ea; } } { XmlSchemaWhiteSpaceFacet_t4158372164 * L_31 = V_0; XmlSchemaReader_t1164558392 * L_32 = ___reader0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); bool L_33 = XmlSchemaUtil_ReadBoolAttribute_m854567538(NULL /*static, unused*/, L_32, (&V_1), /*hidden argument*/NULL); NullCheck(L_31); VirtActionInvoker1< bool >::Invoke(10 /* System.Void System.Xml.Schema.XmlSchemaFacet::set_IsFixed(System.Boolean) */, L_31, L_33); Exception_t * L_34 = V_1; if (!L_34) { goto IL_00e5; } } { ValidationEventHandler_t791314227 * L_35 = ___h1; XmlSchemaReader_t1164558392 * L_36 = ___reader0; NullCheck(L_36); String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_36); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_38 = String_Concat_m3937257545(NULL /*static, unused*/, L_37, _stringLiteral2455250758, /*hidden argument*/NULL); Exception_t * L_39 = V_1; XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_35, L_38, L_39, /*hidden argument*/NULL); } IL_00e5: { goto IL_0172; } IL_00ea: { XmlSchemaReader_t1164558392 * L_40 = ___reader0; NullCheck(L_40); String_t* L_41 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_40); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_42 = String_op_Equality_m920492651(NULL /*static, unused*/, L_41, _stringLiteral3493618073, /*hidden argument*/NULL); if (!L_42) { goto IL_0110; } } { XmlSchemaWhiteSpaceFacet_t4158372164 * L_43 = V_0; XmlSchemaReader_t1164558392 * L_44 = ___reader0; NullCheck(L_44); String_t* L_45 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_44); NullCheck(L_43); XmlSchemaFacet_set_Value_m2382101717(L_43, L_45, /*hidden argument*/NULL); goto IL_0172; } IL_0110: { XmlSchemaReader_t1164558392 * L_46 = ___reader0; NullCheck(L_46); String_t* L_47 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_46); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_48 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_49 = String_op_Equality_m920492651(NULL /*static, unused*/, L_47, L_48, /*hidden argument*/NULL); if (!L_49) { goto IL_013a; } } { XmlSchemaReader_t1164558392 * L_50 = ___reader0; NullCheck(L_50); String_t* L_51 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_50); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_52 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_51, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_52) { goto IL_014f; } } IL_013a: { XmlSchemaReader_t1164558392 * L_53 = ___reader0; NullCheck(L_53); String_t* L_54 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_53); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_55 = String_op_Equality_m920492651(NULL /*static, unused*/, L_54, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_55) { goto IL_016b; } } IL_014f: { ValidationEventHandler_t791314227 * L_56 = ___h1; XmlSchemaReader_t1164558392 * L_57 = ___reader0; NullCheck(L_57); String_t* L_58 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_57); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_59 = String_Concat_m3937257545(NULL /*static, unused*/, L_58, _stringLiteral681123123, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_56, L_59, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_0172; } IL_016b: { XmlSchemaReader_t1164558392 * L_60 = ___reader0; XmlSchemaWhiteSpaceFacet_t4158372164 * L_61 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_60, L_61, /*hidden argument*/NULL); } IL_0172: { XmlSchemaReader_t1164558392 * L_62 = ___reader0; NullCheck(L_62); bool L_63 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_62); if (L_63) { goto IL_007f; } } { XmlSchemaReader_t1164558392 * L_64 = ___reader0; NullCheck(L_64); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_64); XmlSchemaReader_t1164558392 * L_65 = ___reader0; NullCheck(L_65); bool L_66 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_65); if (!L_66) { goto IL_0191; } } { XmlSchemaWhiteSpaceFacet_t4158372164 * L_67 = V_0; return L_67; } IL_0191: { V_2 = 1; goto IL_0214; } IL_0198: { XmlSchemaReader_t1164558392 * L_68 = ___reader0; NullCheck(L_68); int32_t L_69 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_68); if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)15))))) { goto IL_01d6; } } { XmlSchemaReader_t1164558392 * L_70 = ___reader0; NullCheck(L_70); String_t* L_71 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_70); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_72 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_71, _stringLiteral1492323255, /*hidden argument*/NULL); if (!L_72) { goto IL_01d1; } } { ValidationEventHandler_t791314227 * L_73 = ___h1; XmlSchemaReader_t1164558392 * L_74 = ___reader0; NullCheck(L_74); String_t* L_75 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_74); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_76 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2675440743, L_75, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_73, L_76, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_01d1: { goto IL_021f; } IL_01d6: { int32_t L_77 = V_2; if ((((int32_t)L_77) > ((int32_t)1))) { goto IL_020e; } } { XmlSchemaReader_t1164558392 * L_78 = ___reader0; NullCheck(L_78); String_t* L_79 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_78); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_80 = String_op_Equality_m920492651(NULL /*static, unused*/, L_79, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_80) { goto IL_020e; } } { V_2 = 2; XmlSchemaReader_t1164558392 * L_81 = ___reader0; ValidationEventHandler_t791314227 * L_82 = ___h1; XmlSchemaAnnotation_t2553753397 * L_83 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_81, L_82, /*hidden argument*/NULL); V_3 = L_83; XmlSchemaAnnotation_t2553753397 * L_84 = V_3; if (!L_84) { goto IL_0209; } } { XmlSchemaWhiteSpaceFacet_t4158372164 * L_85 = V_0; XmlSchemaAnnotation_t2553753397 * L_86 = V_3; NullCheck(L_85); XmlSchemaAnnotated_set_Annotation_m3050132480(L_85, L_86, /*hidden argument*/NULL); } IL_0209: { goto IL_0214; } IL_020e: { XmlSchemaReader_t1164558392 * L_87 = ___reader0; NullCheck(L_87); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_87, /*hidden argument*/NULL); } IL_0214: { XmlSchemaReader_t1164558392 * L_88 = ___reader0; NullCheck(L_88); bool L_89 = XmlSchemaReader_ReadNextElement_m611223709(L_88, /*hidden argument*/NULL); if (L_89) { goto IL_0198; } } IL_021f: { XmlSchemaWhiteSpaceFacet_t4158372164 * L_90 = V_0; return L_90; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Schema.XmlSchemaXPath::.ctor() extern "C" void XmlSchemaXPath__ctor_m3593854984 (XmlSchemaXPath_t3156455507 * __this, const RuntimeMethod* method) { { XmlSchemaAnnotated__ctor_m2738129066(__this, /*hidden argument*/NULL); return; } } // System.String System.Xml.Schema.XmlSchemaXPath::get_XPath() extern "C" String_t* XmlSchemaXPath_get_XPath_m3201415714 (XmlSchemaXPath_t3156455507 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_xpath_16(); return L_0; } } // System.Int32 System.Xml.Schema.XmlSchemaXPath::Compile(System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" int32_t XmlSchemaXPath_Compile_m528363123 (XmlSchemaXPath_t3156455507 * __this, ValidationEventHandler_t791314227 * ___h0, XmlSchema_t3742557897 * ___schema1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaXPath_Compile_m528363123_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2760654312 * V_0 = NULL; XmlQualifiedNameU5BU5D_t1471530361* V_1 = NULL; int32_t V_2 = 0; { Guid_t L_0 = ((XmlSchemaObject_t1315720168 *)__this)->get_CompilationId_7(); XmlSchema_t3742557897 * L_1 = ___schema1; NullCheck(L_1); Guid_t L_2 = ((XmlSchemaObject_t1315720168 *)L_1)->get_CompilationId_7(); IL2CPP_RUNTIME_CLASS_INIT(Guid_t_il2cpp_TypeInfo_var); bool L_3 = Guid_op_Equality_m4289903222(NULL /*static, unused*/, L_0, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0018; } } { return 0; } IL_0018: { XmlNamespaceManager_t418790500 * L_4 = __this->get_nsmgr_17(); if (L_4) { goto IL_0079; } } { NameTable_t3178203267 * L_5 = (NameTable_t3178203267 *)il2cpp_codegen_object_new(NameTable_t3178203267_il2cpp_TypeInfo_var); NameTable__ctor_m874080766(L_5, /*hidden argument*/NULL); XmlNamespaceManager_t418790500 * L_6 = (XmlNamespaceManager_t418790500 *)il2cpp_codegen_object_new(XmlNamespaceManager_t418790500_il2cpp_TypeInfo_var); XmlNamespaceManager__ctor_m3238790559(L_6, L_5, /*hidden argument*/NULL); __this->set_nsmgr_17(L_6); XmlSerializerNamespaces_t2702737953 * L_7 = XmlSchemaObject_get_Namespaces_m1671673830(__this, /*hidden argument*/NULL); if (!L_7) { goto IL_0079; } } { XmlSerializerNamespaces_t2702737953 * L_8 = XmlSchemaObject_get_Namespaces_m1671673830(__this, /*hidden argument*/NULL); NullCheck(L_8); XmlQualifiedNameU5BU5D_t1471530361* L_9 = XmlSerializerNamespaces_ToArray_m2843559361(L_8, /*hidden argument*/NULL); V_1 = L_9; V_2 = 0; goto IL_0070; } IL_0051: { XmlQualifiedNameU5BU5D_t1471530361* L_10 = V_1; int32_t L_11 = V_2; NullCheck(L_10); int32_t L_12 = L_11; XmlQualifiedName_t2760654312 * L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); V_0 = L_13; XmlNamespaceManager_t418790500 * L_14 = __this->get_nsmgr_17(); XmlQualifiedName_t2760654312 * L_15 = V_0; NullCheck(L_15); String_t* L_16 = XmlQualifiedName_get_Name_m815040483(L_15, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_17 = V_0; NullCheck(L_17); String_t* L_18 = XmlQualifiedName_get_Namespace_m3957593392(L_17, /*hidden argument*/NULL); NullCheck(L_14); VirtActionInvoker2< String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_14, L_16, L_18); int32_t L_19 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1)); } IL_0070: { int32_t L_20 = V_2; XmlQualifiedNameU5BU5D_t1471530361* L_21 = V_1; NullCheck(L_21); if ((((int32_t)L_20) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_21)->max_length))))))) { goto IL_0051; } } IL_0079: { XsdIdentityPath_t991900844 * L_22 = (XsdIdentityPath_t991900844 *)il2cpp_codegen_object_new(XsdIdentityPath_t991900844_il2cpp_TypeInfo_var); XsdIdentityPath__ctor_m2092303249(L_22, /*hidden argument*/NULL); __this->set_currentPath_20(L_22); String_t* L_23 = __this->get_xpath_16(); ValidationEventHandler_t791314227 * L_24 = ___h0; XmlSchema_t3742557897 * L_25 = ___schema1; XmlSchemaXPath_ParseExpression_m2341068207(__this, L_23, L_24, L_25, /*hidden argument*/NULL); String_t* L_26 = XmlSchemaAnnotated_get_Id_m2854314617(__this, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_27 = ___schema1; NullCheck(L_27); Hashtable_t1853889766 * L_28 = XmlSchema_get_IDCollection_m3725452494(L_27, /*hidden argument*/NULL); ValidationEventHandler_t791314227 * L_29 = ___h0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_CompileID_m928148374(NULL /*static, unused*/, L_26, __this, L_28, L_29, /*hidden argument*/NULL); XmlSchema_t3742557897 * L_30 = ___schema1; NullCheck(L_30); Guid_t L_31 = ((XmlSchemaObject_t1315720168 *)L_30)->get_CompilationId_7(); ((XmlSchemaObject_t1315720168 *)__this)->set_CompilationId_7(L_31); int32_t L_32 = ((XmlSchemaObject_t1315720168 *)__this)->get_errorCount_6(); return L_32; } } // Mono.Xml.Schema.XsdIdentityPath[] System.Xml.Schema.XmlSchemaXPath::get_CompiledExpression() extern "C" XsdIdentityPathU5BU5D_t2466178853* XmlSchemaXPath_get_CompiledExpression_m3788933425 (XmlSchemaXPath_t3156455507 * __this, const RuntimeMethod* method) { { XsdIdentityPathU5BU5D_t2466178853* L_0 = __this->get_compiledExpression_19(); return L_0; } } // System.Void System.Xml.Schema.XmlSchemaXPath::ParseExpression(System.String,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParseExpression_m2341068207 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, ValidationEventHandler_t791314227 * ___h1, XmlSchema_t3742557897 * ___schema2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaXPath_ParseExpression_m2341068207_MetadataUsageId); s_Il2CppMethodInitialized = true; } ArrayList_t2718874744 * V_0 = NULL; { ArrayList_t2718874744 * L_0 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_0, /*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = ___xpath0; ArrayList_t2718874744 * L_2 = V_0; ValidationEventHandler_t791314227 * L_3 = ___h1; XmlSchema_t3742557897 * L_4 = ___schema2; XmlSchemaXPath_ParsePath_m1265390928(__this, L_1, 0, L_2, L_3, L_4, /*hidden argument*/NULL); ArrayList_t2718874744 * L_5 = V_0; RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (XsdIdentityPath_t991900844_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); NullCheck(L_5); RuntimeArray * L_8 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_5, L_7); __this->set_compiledExpression_19(((XsdIdentityPathU5BU5D_t2466178853*)Castclass((RuntimeObject*)L_8, XsdIdentityPathU5BU5D_t2466178853_il2cpp_TypeInfo_var))); return; } } // System.Void System.Xml.Schema.XmlSchemaXPath::ParsePath(System.String,System.Int32,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParsePath_m1265390928 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, ArrayList_t2718874744 * ___paths2, ValidationEventHandler_t791314227 * ___h3, XmlSchema_t3742557897 * ___schema4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaXPath_ParsePath_m1265390928_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ArrayList_t2718874744 * V_1 = NULL; { String_t* L_0 = ___xpath0; int32_t L_1 = ___pos1; int32_t L_2 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_0, L_1, /*hidden argument*/NULL); ___pos1 = L_2; String_t* L_3 = ___xpath0; NullCheck(L_3); int32_t L_4 = String_get_Length_m3847582255(L_3, /*hidden argument*/NULL); int32_t L_5 = ___pos1; if ((((int32_t)L_4) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)3))))) { goto IL_0071; } } { String_t* L_6 = ___xpath0; int32_t L_7 = ___pos1; NullCheck(L_6); Il2CppChar L_8 = String_get_Chars_m2986988803(L_6, L_7, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)46))))) { goto IL_0071; } } { int32_t L_9 = ___pos1; V_0 = L_9; int32_t L_10 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)); String_t* L_11 = ___xpath0; int32_t L_12 = ___pos1; int32_t L_13 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_11, L_12, /*hidden argument*/NULL); ___pos1 = L_13; String_t* L_14 = ___xpath0; NullCheck(L_14); int32_t L_15 = String_get_Length_m3847582255(L_14, /*hidden argument*/NULL); int32_t L_16 = ___pos1; if ((((int32_t)L_15) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)2))))) { goto IL_006e; } } { String_t* L_17 = ___xpath0; int32_t L_18 = ___pos1; NullCheck(L_17); int32_t L_19 = String_IndexOf_m2410372598(L_17, _stringLiteral3450582913, L_18, 2, /*hidden argument*/NULL); int32_t L_20 = ___pos1; if ((!(((uint32_t)L_19) == ((uint32_t)L_20)))) { goto IL_006e; } } { XsdIdentityPath_t991900844 * L_21 = __this->get_currentPath_20(); NullCheck(L_21); L_21->set_Descendants_1((bool)1); int32_t L_22 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)2)); goto IL_0071; } IL_006e: { int32_t L_23 = V_0; ___pos1 = L_23; } IL_0071: { ArrayList_t2718874744 * L_24 = (ArrayList_t2718874744 *)il2cpp_codegen_object_new(ArrayList_t2718874744_il2cpp_TypeInfo_var); ArrayList__ctor_m4254721275(L_24, /*hidden argument*/NULL); V_1 = L_24; String_t* L_25 = ___xpath0; int32_t L_26 = ___pos1; ArrayList_t2718874744 * L_27 = V_1; ArrayList_t2718874744 * L_28 = ___paths2; ValidationEventHandler_t791314227 * L_29 = ___h3; XmlSchema_t3742557897 * L_30 = ___schema4; XmlSchemaXPath_ParseStep_m3870533266(__this, L_25, L_26, L_27, L_28, L_29, L_30, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Schema.XmlSchemaXPath::ParseStep(System.String,System.Int32,System.Collections.ArrayList,System.Collections.ArrayList,System.Xml.Schema.ValidationEventHandler,System.Xml.Schema.XmlSchema) extern "C" void XmlSchemaXPath_ParseStep_m3870533266 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, ArrayList_t2718874744 * ___steps2, ArrayList_t2718874744 * ___paths3, ValidationEventHandler_t791314227 * ___h4, XmlSchema_t3742557897 * ___schema5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaXPath_ParseStep_m3870533266_MetadataUsageId); s_Il2CppMethodInitialized = true; } XsdIdentityStep_t1480907129 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; String_t* V_4 = NULL; String_t* V_5 = NULL; int32_t V_6 = 0; String_t* V_7 = NULL; Il2CppChar V_8 = 0x0; { String_t* L_0 = ___xpath0; int32_t L_1 = ___pos1; int32_t L_2 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_0, L_1, /*hidden argument*/NULL); ___pos1 = L_2; String_t* L_3 = ___xpath0; NullCheck(L_3); int32_t L_4 = String_get_Length_m3847582255(L_3, /*hidden argument*/NULL); int32_t L_5 = ___pos1; if ((!(((uint32_t)L_4) == ((uint32_t)L_5)))) { goto IL_0024; } } { ValidationEventHandler_t791314227 * L_6 = ___h4; XmlSchemaObject_error_m903554348(__this, L_6, _stringLiteral3609590954, /*hidden argument*/NULL); return; } IL_0024: { XsdIdentityStep_t1480907129 * L_7 = (XsdIdentityStep_t1480907129 *)il2cpp_codegen_object_new(XsdIdentityStep_t1480907129_il2cpp_TypeInfo_var); XsdIdentityStep__ctor_m1074702096(L_7, /*hidden argument*/NULL); V_0 = L_7; String_t* L_8 = ___xpath0; int32_t L_9 = ___pos1; NullCheck(L_8); Il2CppChar L_10 = String_get_Chars_m2986988803(L_8, L_9, /*hidden argument*/NULL); V_8 = L_10; Il2CppChar L_11 = V_8; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)97)))) { case 0: { goto IL_0194; } case 1: { goto IL_0049; } case 2: { goto IL_00f1; } } } IL_0049: { Il2CppChar L_12 = V_8; if ((((int32_t)L_12) == ((int32_t)((int32_t)42)))) { goto IL_00e0; } } { Il2CppChar L_13 = V_8; if ((((int32_t)L_13) == ((int32_t)((int32_t)46)))) { goto IL_00cf; } } { Il2CppChar L_14 = V_8; if ((((int32_t)L_14) == ((int32_t)((int32_t)64)))) { goto IL_0069; } } { goto IL_0261; } IL_0069: { bool L_15 = __this->get_isSelector_18(); if (!L_15) { goto IL_0089; } } { ValidationEventHandler_t791314227 * L_16 = ___h4; XmlSchemaObject_error_m903554348(__this, L_16, _stringLiteral2106882644, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_0089: { int32_t L_17 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); XsdIdentityStep_t1480907129 * L_18 = V_0; NullCheck(L_18); L_18->set_IsAttribute_1((bool)1); String_t* L_19 = ___xpath0; int32_t L_20 = ___pos1; int32_t L_21 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_19, L_20, /*hidden argument*/NULL); ___pos1 = L_21; String_t* L_22 = ___xpath0; NullCheck(L_22); int32_t L_23 = String_get_Length_m3847582255(L_22, /*hidden argument*/NULL); int32_t L_24 = ___pos1; if ((((int32_t)L_23) <= ((int32_t)L_24))) { goto IL_00ca; } } { String_t* L_25 = ___xpath0; int32_t L_26 = ___pos1; NullCheck(L_25); Il2CppChar L_27 = String_get_Chars_m2986988803(L_25, L_26, /*hidden argument*/NULL); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)42))))) { goto IL_00ca; } } { int32_t L_28 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)1)); XsdIdentityStep_t1480907129 * L_29 = V_0; NullCheck(L_29); L_29->set_IsAnyName_2((bool)1); goto IL_03d5; } IL_00ca: { goto IL_0261; } IL_00cf: { int32_t L_30 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); XsdIdentityStep_t1480907129 * L_31 = V_0; NullCheck(L_31); L_31->set_IsCurrent_0((bool)1); goto IL_03d5; } IL_00e0: { int32_t L_32 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); XsdIdentityStep_t1480907129 * L_33 = V_0; NullCheck(L_33); L_33->set_IsAnyName_2((bool)1); goto IL_03d5; } IL_00f1: { String_t* L_34 = ___xpath0; NullCheck(L_34); int32_t L_35 = String_get_Length_m3847582255(L_34, /*hidden argument*/NULL); int32_t L_36 = ___pos1; if ((((int32_t)L_35) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)5))))) { goto IL_018f; } } { String_t* L_37 = ___xpath0; int32_t L_38 = ___pos1; NullCheck(L_37); int32_t L_39 = String_IndexOf_m2410372598(L_37, _stringLiteral430703268, L_38, 5, /*hidden argument*/NULL); int32_t L_40 = ___pos1; if ((!(((uint32_t)L_39) == ((uint32_t)L_40)))) { goto IL_018f; } } { int32_t L_41 = ___pos1; V_1 = L_41; int32_t L_42 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)5)); String_t* L_43 = ___xpath0; int32_t L_44 = ___pos1; int32_t L_45 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_43, L_44, /*hidden argument*/NULL); ___pos1 = L_45; String_t* L_46 = ___xpath0; NullCheck(L_46); int32_t L_47 = String_get_Length_m3847582255(L_46, /*hidden argument*/NULL); int32_t L_48 = ___pos1; if ((((int32_t)L_47) <= ((int32_t)L_48))) { goto IL_018c; } } { String_t* L_49 = ___xpath0; int32_t L_50 = ___pos1; NullCheck(L_49); Il2CppChar L_51 = String_get_Chars_m2986988803(L_49, L_50, /*hidden argument*/NULL); if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)58))))) { goto IL_018c; } } { String_t* L_52 = ___xpath0; int32_t L_53 = ___pos1; NullCheck(L_52); Il2CppChar L_54 = String_get_Chars_m2986988803(L_52, ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)58))))) { goto IL_018c; } } { int32_t L_55 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)2)); String_t* L_56 = ___xpath0; NullCheck(L_56); int32_t L_57 = String_get_Length_m3847582255(L_56, /*hidden argument*/NULL); int32_t L_58 = ___pos1; if ((((int32_t)L_57) <= ((int32_t)L_58))) { goto IL_017d; } } { String_t* L_59 = ___xpath0; int32_t L_60 = ___pos1; NullCheck(L_59); Il2CppChar L_61 = String_get_Chars_m2986988803(L_59, L_60, /*hidden argument*/NULL); if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)42))))) { goto IL_017d; } } { int32_t L_62 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1)); XsdIdentityStep_t1480907129 * L_63 = V_0; NullCheck(L_63); L_63->set_IsAnyName_2((bool)1); goto IL_03d5; } IL_017d: { String_t* L_64 = ___xpath0; int32_t L_65 = ___pos1; int32_t L_66 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_64, L_65, /*hidden argument*/NULL); ___pos1 = L_66; goto IL_018f; } IL_018c: { int32_t L_67 = V_1; ___pos1 = L_67; } IL_018f: { goto IL_0261; } IL_0194: { String_t* L_68 = ___xpath0; NullCheck(L_68); int32_t L_69 = String_get_Length_m3847582255(L_68, /*hidden argument*/NULL); int32_t L_70 = ___pos1; if ((((int32_t)L_69) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)((int32_t)9)))))) { goto IL_025c; } } { String_t* L_71 = ___xpath0; int32_t L_72 = ___pos1; NullCheck(L_71); int32_t L_73 = String_IndexOf_m2410372598(L_71, _stringLiteral4158421234, L_72, ((int32_t)9), /*hidden argument*/NULL); int32_t L_74 = ___pos1; if ((!(((uint32_t)L_73) == ((uint32_t)L_74)))) { goto IL_025c; } } { int32_t L_75 = ___pos1; V_2 = L_75; int32_t L_76 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)((int32_t)9))); String_t* L_77 = ___xpath0; int32_t L_78 = ___pos1; int32_t L_79 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_77, L_78, /*hidden argument*/NULL); ___pos1 = L_79; String_t* L_80 = ___xpath0; NullCheck(L_80); int32_t L_81 = String_get_Length_m3847582255(L_80, /*hidden argument*/NULL); int32_t L_82 = ___pos1; if ((((int32_t)L_81) <= ((int32_t)L_82))) { goto IL_0259; } } { String_t* L_83 = ___xpath0; int32_t L_84 = ___pos1; NullCheck(L_83); Il2CppChar L_85 = String_get_Chars_m2986988803(L_83, L_84, /*hidden argument*/NULL); if ((!(((uint32_t)L_85) == ((uint32_t)((int32_t)58))))) { goto IL_0259; } } { String_t* L_86 = ___xpath0; int32_t L_87 = ___pos1; NullCheck(L_86); Il2CppChar L_88 = String_get_Chars_m2986988803(L_86, ((int32_t)il2cpp_codegen_add((int32_t)L_87, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_88) == ((uint32_t)((int32_t)58))))) { goto IL_0259; } } { bool L_89 = __this->get_isSelector_18(); if (!L_89) { goto IL_0213; } } { ValidationEventHandler_t791314227 * L_90 = ___h4; XmlSchemaObject_error_m903554348(__this, L_90, _stringLiteral2106882644, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_0213: { int32_t L_91 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_91, (int32_t)2)); XsdIdentityStep_t1480907129 * L_92 = V_0; NullCheck(L_92); L_92->set_IsAttribute_1((bool)1); String_t* L_93 = ___xpath0; NullCheck(L_93); int32_t L_94 = String_get_Length_m3847582255(L_93, /*hidden argument*/NULL); int32_t L_95 = ___pos1; if ((((int32_t)L_94) <= ((int32_t)L_95))) { goto IL_024a; } } { String_t* L_96 = ___xpath0; int32_t L_97 = ___pos1; NullCheck(L_96); Il2CppChar L_98 = String_get_Chars_m2986988803(L_96, L_97, /*hidden argument*/NULL); if ((!(((uint32_t)L_98) == ((uint32_t)((int32_t)42))))) { goto IL_024a; } } { int32_t L_99 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_99, (int32_t)1)); XsdIdentityStep_t1480907129 * L_100 = V_0; NullCheck(L_100); L_100->set_IsAnyName_2((bool)1); goto IL_03d5; } IL_024a: { String_t* L_101 = ___xpath0; int32_t L_102 = ___pos1; int32_t L_103 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_101, L_102, /*hidden argument*/NULL); ___pos1 = L_103; goto IL_025c; } IL_0259: { int32_t L_104 = V_2; ___pos1 = L_104; } IL_025c: { goto IL_0261; } IL_0261: { int32_t L_105 = ___pos1; V_3 = L_105; goto IL_0283; } IL_0268: { String_t* L_106 = ___xpath0; int32_t L_107 = ___pos1; NullCheck(L_106); Il2CppChar L_108 = String_get_Chars_m2986988803(L_106, L_107, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlChar_t3816087079_il2cpp_TypeInfo_var); bool L_109 = XmlChar_IsNCNameChar_m158431100(NULL /*static, unused*/, L_108, /*hidden argument*/NULL); if (L_109) { goto IL_027e; } } { goto IL_028f; } IL_027e: { int32_t L_110 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_110, (int32_t)1)); } IL_0283: { String_t* L_111 = ___xpath0; NullCheck(L_111); int32_t L_112 = String_get_Length_m3847582255(L_111, /*hidden argument*/NULL); int32_t L_113 = ___pos1; if ((((int32_t)L_112) > ((int32_t)L_113))) { goto IL_0268; } } IL_028f: { int32_t L_114 = ___pos1; int32_t L_115 = V_3; if ((!(((uint32_t)L_114) == ((uint32_t)L_115)))) { goto IL_02ab; } } { ValidationEventHandler_t791314227 * L_116 = ___h4; XmlSchemaObject_error_m903554348(__this, L_116, _stringLiteral1978911567, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_02ab: { String_t* L_117 = ___xpath0; NullCheck(L_117); int32_t L_118 = String_get_Length_m3847582255(L_117, /*hidden argument*/NULL); int32_t L_119 = ___pos1; if ((((int32_t)L_118) == ((int32_t)L_119))) { goto IL_02c5; } } { String_t* L_120 = ___xpath0; int32_t L_121 = ___pos1; NullCheck(L_120); Il2CppChar L_122 = String_get_Chars_m2986988803(L_120, L_121, /*hidden argument*/NULL); if ((((int32_t)L_122) == ((int32_t)((int32_t)58)))) { goto IL_02da; } } IL_02c5: { XsdIdentityStep_t1480907129 * L_123 = V_0; String_t* L_124 = ___xpath0; int32_t L_125 = V_3; int32_t L_126 = ___pos1; int32_t L_127 = V_3; NullCheck(L_124); String_t* L_128 = String_Substring_m1610150815(L_124, L_125, ((int32_t)il2cpp_codegen_subtract((int32_t)L_126, (int32_t)L_127)), /*hidden argument*/NULL); NullCheck(L_123); L_123->set_Name_4(L_128); goto IL_03d0; } IL_02da: { String_t* L_129 = ___xpath0; int32_t L_130 = V_3; int32_t L_131 = ___pos1; int32_t L_132 = V_3; NullCheck(L_129); String_t* L_133 = String_Substring_m1610150815(L_129, L_130, ((int32_t)il2cpp_codegen_subtract((int32_t)L_131, (int32_t)L_132)), /*hidden argument*/NULL); V_4 = L_133; int32_t L_134 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_134, (int32_t)1)); String_t* L_135 = ___xpath0; NullCheck(L_135); int32_t L_136 = String_get_Length_m3847582255(L_135, /*hidden argument*/NULL); int32_t L_137 = ___pos1; if ((((int32_t)L_136) <= ((int32_t)L_137))) { goto IL_034f; } } { String_t* L_138 = ___xpath0; int32_t L_139 = ___pos1; NullCheck(L_138); Il2CppChar L_140 = String_get_Chars_m2986988803(L_138, L_139, /*hidden argument*/NULL); if ((!(((uint32_t)L_140) == ((uint32_t)((int32_t)42))))) { goto IL_034f; } } { XmlNamespaceManager_t418790500 * L_141 = __this->get_nsmgr_17(); String_t* L_142 = V_4; NullCheck(L_141); String_t* L_143 = XmlNamespaceManager_LookupNamespace_m2828740952(L_141, L_142, (bool)0, /*hidden argument*/NULL); V_5 = L_143; String_t* L_144 = V_5; if (L_144) { goto IL_033d; } } { ValidationEventHandler_t791314227 * L_145 = ___h4; String_t* L_146 = V_4; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_147 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral329641656, L_146, _stringLiteral2042047117, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_145, L_147, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_033d: { XsdIdentityStep_t1480907129 * L_148 = V_0; String_t* L_149 = V_5; NullCheck(L_148); L_148->set_NsName_3(L_149); int32_t L_150 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_150, (int32_t)1)); goto IL_03d0; } IL_034f: { int32_t L_151 = ___pos1; V_6 = L_151; goto IL_0372; } IL_0357: { String_t* L_152 = ___xpath0; int32_t L_153 = ___pos1; NullCheck(L_152); Il2CppChar L_154 = String_get_Chars_m2986988803(L_152, L_153, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlChar_t3816087079_il2cpp_TypeInfo_var); bool L_155 = XmlChar_IsNCNameChar_m158431100(NULL /*static, unused*/, L_154, /*hidden argument*/NULL); if (L_155) { goto IL_036d; } } { goto IL_037e; } IL_036d: { int32_t L_156 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_156, (int32_t)1)); } IL_0372: { String_t* L_157 = ___xpath0; NullCheck(L_157); int32_t L_158 = String_get_Length_m3847582255(L_157, /*hidden argument*/NULL); int32_t L_159 = ___pos1; if ((((int32_t)L_158) > ((int32_t)L_159))) { goto IL_0357; } } IL_037e: { XsdIdentityStep_t1480907129 * L_160 = V_0; String_t* L_161 = ___xpath0; int32_t L_162 = V_6; int32_t L_163 = ___pos1; int32_t L_164 = V_6; NullCheck(L_161); String_t* L_165 = String_Substring_m1610150815(L_161, L_162, ((int32_t)il2cpp_codegen_subtract((int32_t)L_163, (int32_t)L_164)), /*hidden argument*/NULL); NullCheck(L_160); L_160->set_Name_4(L_165); XmlNamespaceManager_t418790500 * L_166 = __this->get_nsmgr_17(); String_t* L_167 = V_4; NullCheck(L_166); String_t* L_168 = XmlNamespaceManager_LookupNamespace_m2828740952(L_166, L_167, (bool)0, /*hidden argument*/NULL); V_7 = L_168; String_t* L_169 = V_7; if (L_169) { goto IL_03c8; } } { ValidationEventHandler_t791314227 * L_170 = ___h4; String_t* L_171 = V_4; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_172 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral329641656, L_171, _stringLiteral2042047117, /*hidden argument*/NULL); XmlSchemaObject_error_m903554348(__this, L_170, L_172, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_03c8: { XsdIdentityStep_t1480907129 * L_173 = V_0; String_t* L_174 = V_7; NullCheck(L_173); L_173->set_Namespace_5(L_174); } IL_03d0: { goto IL_03d5; } IL_03d5: { XsdIdentityStep_t1480907129 * L_175 = V_0; NullCheck(L_175); bool L_176 = L_175->get_IsCurrent_0(); if (L_176) { goto IL_03e8; } } { ArrayList_t2718874744 * L_177 = ___steps2; XsdIdentityStep_t1480907129 * L_178 = V_0; NullCheck(L_177); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_177, L_178); } IL_03e8: { String_t* L_179 = ___xpath0; int32_t L_180 = ___pos1; int32_t L_181 = XmlSchemaXPath_SkipWhitespace_m3783431406(__this, L_179, L_180, /*hidden argument*/NULL); ___pos1 = L_181; String_t* L_182 = ___xpath0; NullCheck(L_182); int32_t L_183 = String_get_Length_m3847582255(L_182, /*hidden argument*/NULL); int32_t L_184 = ___pos1; if ((!(((uint32_t)L_183) == ((uint32_t)L_184)))) { goto IL_042d; } } { XsdIdentityPath_t991900844 * L_185 = __this->get_currentPath_20(); ArrayList_t2718874744 * L_186 = ___steps2; RuntimeTypeHandle_t3027515415 L_187 = { reinterpret_cast<intptr_t> (XsdIdentityStep_t1480907129_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_188 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_187, /*hidden argument*/NULL); NullCheck(L_186); RuntimeArray * L_189 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_186, L_188); NullCheck(L_185); L_185->set_OrderedSteps_0(((XsdIdentityStepU5BU5D_t2964233348*)Castclass((RuntimeObject*)L_189, XsdIdentityStepU5BU5D_t2964233348_il2cpp_TypeInfo_var))); ArrayList_t2718874744 * L_190 = ___paths3; XsdIdentityPath_t991900844 * L_191 = __this->get_currentPath_20(); NullCheck(L_190); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_190, L_191); return; } IL_042d: { String_t* L_192 = ___xpath0; int32_t L_193 = ___pos1; NullCheck(L_192); Il2CppChar L_194 = String_get_Chars_m2986988803(L_192, L_193, /*hidden argument*/NULL); if ((!(((uint32_t)L_194) == ((uint32_t)((int32_t)47))))) { goto IL_04a0; } } { int32_t L_195 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_195, (int32_t)1)); XsdIdentityStep_t1480907129 * L_196 = V_0; NullCheck(L_196); bool L_197 = L_196->get_IsAttribute_1(); if (!L_197) { goto IL_0460; } } { ValidationEventHandler_t791314227 * L_198 = ___h4; XmlSchemaObject_error_m903554348(__this, L_198, _stringLiteral3727611199, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_0460: { String_t* L_199 = ___xpath0; int32_t L_200 = ___pos1; ArrayList_t2718874744 * L_201 = ___steps2; ArrayList_t2718874744 * L_202 = ___paths3; ValidationEventHandler_t791314227 * L_203 = ___h4; XmlSchema_t3742557897 * L_204 = ___schema5; XmlSchemaXPath_ParseStep_m3870533266(__this, L_199, L_200, L_201, L_202, L_203, L_204, /*hidden argument*/NULL); XsdIdentityPath_t991900844 * L_205 = __this->get_currentPath_20(); if (L_205) { goto IL_047b; } } { return; } IL_047b: { XsdIdentityPath_t991900844 * L_206 = __this->get_currentPath_20(); ArrayList_t2718874744 * L_207 = ___steps2; RuntimeTypeHandle_t3027515415 L_208 = { reinterpret_cast<intptr_t> (XsdIdentityStep_t1480907129_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_209 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_208, /*hidden argument*/NULL); NullCheck(L_207); RuntimeArray * L_210 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_207, L_209); NullCheck(L_206); L_206->set_OrderedSteps_0(((XsdIdentityStepU5BU5D_t2964233348*)Castclass((RuntimeObject*)L_210, XsdIdentityStepU5BU5D_t2964233348_il2cpp_TypeInfo_var))); goto IL_0514; } IL_04a0: { String_t* L_211 = ___xpath0; int32_t L_212 = ___pos1; NullCheck(L_211); Il2CppChar L_213 = String_get_Chars_m2986988803(L_211, L_212, /*hidden argument*/NULL); if ((!(((uint32_t)L_213) == ((uint32_t)((int32_t)124))))) { goto IL_04ff; } } { int32_t L_214 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_214, (int32_t)1)); XsdIdentityPath_t991900844 * L_215 = __this->get_currentPath_20(); ArrayList_t2718874744 * L_216 = ___steps2; RuntimeTypeHandle_t3027515415 L_217 = { reinterpret_cast<intptr_t> (XsdIdentityStep_t1480907129_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_218 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_217, /*hidden argument*/NULL); NullCheck(L_216); RuntimeArray * L_219 = VirtFuncInvoker1< RuntimeArray *, Type_t * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_216, L_218); NullCheck(L_215); L_215->set_OrderedSteps_0(((XsdIdentityStepU5BU5D_t2964233348*)Castclass((RuntimeObject*)L_219, XsdIdentityStepU5BU5D_t2964233348_il2cpp_TypeInfo_var))); ArrayList_t2718874744 * L_220 = ___paths3; XsdIdentityPath_t991900844 * L_221 = __this->get_currentPath_20(); NullCheck(L_220); VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_220, L_221); XsdIdentityPath_t991900844 * L_222 = (XsdIdentityPath_t991900844 *)il2cpp_codegen_object_new(XsdIdentityPath_t991900844_il2cpp_TypeInfo_var); XsdIdentityPath__ctor_m2092303249(L_222, /*hidden argument*/NULL); __this->set_currentPath_20(L_222); String_t* L_223 = ___xpath0; int32_t L_224 = ___pos1; ArrayList_t2718874744 * L_225 = ___paths3; ValidationEventHandler_t791314227 * L_226 = ___h4; XmlSchema_t3742557897 * L_227 = ___schema5; XmlSchemaXPath_ParsePath_m1265390928(__this, L_223, L_224, L_225, L_226, L_227, /*hidden argument*/NULL); goto IL_0514; } IL_04ff: { ValidationEventHandler_t791314227 * L_228 = ___h4; XmlSchemaObject_error_m903554348(__this, L_228, _stringLiteral689976154, /*hidden argument*/NULL); __this->set_currentPath_20((XsdIdentityPath_t991900844 *)NULL); return; } IL_0514: { return; } } // System.Int32 System.Xml.Schema.XmlSchemaXPath::SkipWhitespace(System.String,System.Int32) extern "C" int32_t XmlSchemaXPath_SkipWhitespace_m3783431406 (XmlSchemaXPath_t3156455507 * __this, String_t* ___xpath0, int32_t ___pos1, const RuntimeMethod* method) { bool V_0 = false; Il2CppChar V_1 = 0x0; { V_0 = (bool)1; goto IL_004a; } IL_0007: { String_t* L_0 = ___xpath0; int32_t L_1 = ___pos1; NullCheck(L_0); Il2CppChar L_2 = String_get_Chars_m2986988803(L_0, L_1, /*hidden argument*/NULL); V_1 = L_2; Il2CppChar L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)9)))) { case 0: { goto IL_0039; } case 1: { goto IL_0039; } case 2: { goto IL_002c; } case 3: { goto IL_002c; } case 4: { goto IL_0039; } } } IL_002c: { Il2CppChar L_4 = V_1; if ((((int32_t)L_4) == ((int32_t)((int32_t)32)))) { goto IL_0039; } } { goto IL_0043; } IL_0039: { int32_t L_5 = ___pos1; ___pos1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); goto IL_004a; } IL_0043: { V_0 = (bool)0; goto IL_004a; } IL_004a: { bool L_6 = V_0; if (!L_6) { goto IL_005c; } } { String_t* L_7 = ___xpath0; NullCheck(L_7); int32_t L_8 = String_get_Length_m3847582255(L_7, /*hidden argument*/NULL); int32_t L_9 = ___pos1; if ((((int32_t)L_8) > ((int32_t)L_9))) { goto IL_0007; } } IL_005c: { int32_t L_10 = ___pos1; return L_10; } } // System.Xml.Schema.XmlSchemaXPath System.Xml.Schema.XmlSchemaXPath::Read(System.Xml.Schema.XmlSchemaReader,System.Xml.Schema.ValidationEventHandler,System.String) extern "C" XmlSchemaXPath_t3156455507 * XmlSchemaXPath_Read_m1808832972 (RuntimeObject * __this /* static, unused */, XmlSchemaReader_t1164558392 * ___reader0, ValidationEventHandler_t791314227 * ___h1, String_t* ___name2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSchemaXPath_Read_m1808832972_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaXPath_t3156455507 * V_0 = NULL; XmlNamespaceManager_t418790500 * V_1 = NULL; RuntimeObject* V_2 = NULL; String_t* V_3 = NULL; int32_t V_4 = 0; XmlSchemaAnnotation_t2553753397 * V_5 = NULL; String_t* V_6 = NULL; Dictionary_2_t2736202052 * V_7 = NULL; int32_t V_8 = 0; { XmlSchemaXPath_t3156455507 * L_0 = (XmlSchemaXPath_t3156455507 *)il2cpp_codegen_object_new(XmlSchemaXPath_t3156455507_il2cpp_TypeInfo_var); XmlSchemaXPath__ctor_m3593854984(L_0, /*hidden argument*/NULL); V_0 = L_0; XmlSchemaReader_t1164558392 * L_1 = ___reader0; NullCheck(L_1); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_1); XmlSchemaReader_t1164558392 * L_2 = ___reader0; NullCheck(L_2); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_2); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_3, _stringLiteral1569427300, /*hidden argument*/NULL); if (L_4) { goto IL_0033; } } { XmlSchemaReader_t1164558392 * L_5 = ___reader0; NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_5); String_t* L_7 = ___name2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_8 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_6, L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0052; } } IL_0033: { ValidationEventHandler_t791314227 * L_9 = ___h1; XmlSchemaReader_t1164558392 * L_10 = ___reader0; NullCheck(L_10); String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_10); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_12 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1885059610, L_11, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_9, L_12, (Exception_t *)NULL, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_13 = ___reader0; NullCheck(L_13); VirtActionInvoker0::Invoke(52 /* System.Void System.Xml.Schema.XmlSchemaReader::Skip() */, L_13); return (XmlSchemaXPath_t3156455507 *)NULL; } IL_0052: { XmlSchemaXPath_t3156455507 * L_14 = V_0; XmlSchemaReader_t1164558392 * L_15 = ___reader0; NullCheck(L_15); int32_t L_16 = XmlSchemaReader_get_LineNumber_m3920914464(L_15, /*hidden argument*/NULL); NullCheck(L_14); XmlSchemaObject_set_LineNumber_m1360499025(L_14, L_16, /*hidden argument*/NULL); XmlSchemaXPath_t3156455507 * L_17 = V_0; XmlSchemaReader_t1164558392 * L_18 = ___reader0; NullCheck(L_18); int32_t L_19 = XmlSchemaReader_get_LinePosition_m2272047151(L_18, /*hidden argument*/NULL); NullCheck(L_17); XmlSchemaObject_set_LinePosition_m906865826(L_17, L_19, /*hidden argument*/NULL); XmlSchemaXPath_t3156455507 * L_20 = V_0; XmlSchemaReader_t1164558392 * L_21 = ___reader0; NullCheck(L_21); String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String System.Xml.Schema.XmlSchemaReader::get_BaseURI() */, L_21); NullCheck(L_20); XmlSchemaObject_set_SourceUri_m2760372687(L_20, L_22, /*hidden argument*/NULL); XmlSchemaReader_t1164558392 * L_23 = ___reader0; NullCheck(L_23); XmlReader_t3121518892 * L_24 = XmlSchemaReader_get_Reader_m1814361792(L_23, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlParserContext_t2544895291 * L_25 = XmlSchemaUtil_GetParserContext_m769704433(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); NullCheck(L_25); XmlNamespaceManager_t418790500 * L_26 = XmlParserContext_get_NamespaceManager_m1180655003(L_25, /*hidden argument*/NULL); V_1 = L_26; XmlNamespaceManager_t418790500 * L_27 = V_1; if (!L_27) { goto IL_013b; } } { XmlSchemaXPath_t3156455507 * L_28 = V_0; XmlSchemaReader_t1164558392 * L_29 = ___reader0; NullCheck(L_29); XmlNameTable_t71772148 * L_30 = VirtFuncInvoker0< XmlNameTable_t71772148 * >::Invoke(20 /* System.Xml.XmlNameTable System.Xml.Schema.XmlSchemaReader::get_NameTable() */, L_29); XmlNamespaceManager_t418790500 * L_31 = (XmlNamespaceManager_t418790500 *)il2cpp_codegen_object_new(XmlNamespaceManager_t418790500_il2cpp_TypeInfo_var); XmlNamespaceManager__ctor_m3238790559(L_31, L_30, /*hidden argument*/NULL); NullCheck(L_28); L_28->set_nsmgr_17(L_31); XmlNamespaceManager_t418790500 * L_32 = V_1; NullCheck(L_32); RuntimeObject* L_33 = VirtFuncInvoker0< RuntimeObject* >::Invoke(9 /* System.Collections.IEnumerator System.Xml.XmlNamespaceManager::GetEnumerator() */, L_32); V_2 = L_33; goto IL_0130; } IL_00aa: { RuntimeObject* L_34 = V_2; NullCheck(L_34); RuntimeObject * L_35 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_34); V_3 = ((String_t*)IsInstSealed((RuntimeObject*)L_35, String_t_il2cpp_TypeInfo_var)); String_t* L_36 = V_3; V_6 = L_36; String_t* L_37 = V_6; if (!L_37) { goto IL_0117; } } { Dictionary_2_t2736202052 * L_38 = ((XmlSchemaXPath_t3156455507_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaXPath_t3156455507_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4A_21(); if (L_38) { goto IL_00f3; } } { Dictionary_2_t2736202052 * L_39 = (Dictionary_2_t2736202052 *)il2cpp_codegen_object_new(Dictionary_2_t2736202052_il2cpp_TypeInfo_var); Dictionary_2__ctor_m2392909825(L_39, 2, /*hidden argument*/Dictionary_2__ctor_m2392909825_RuntimeMethod_var); V_7 = L_39; Dictionary_2_t2736202052 * L_40 = V_7; NullCheck(L_40); Dictionary_2_Add_m282647386(L_40, _stringLiteral2909972470, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_41 = V_7; NullCheck(L_41); Dictionary_2_Add_m282647386(L_41, _stringLiteral3929236445, 0, /*hidden argument*/Dictionary_2_Add_m282647386_RuntimeMethod_var); Dictionary_2_t2736202052 * L_42 = V_7; ((XmlSchemaXPath_t3156455507_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaXPath_t3156455507_il2cpp_TypeInfo_var))->set_U3CU3Ef__switchU24map4A_21(L_42); } IL_00f3: { Dictionary_2_t2736202052 * L_43 = ((XmlSchemaXPath_t3156455507_StaticFields*)il2cpp_codegen_static_fields_for(XmlSchemaXPath_t3156455507_il2cpp_TypeInfo_var))->get_U3CU3Ef__switchU24map4A_21(); String_t* L_44 = V_6; NullCheck(L_43); bool L_45 = Dictionary_2_TryGetValue_m1013208020(L_43, L_44, (&V_8), /*hidden argument*/Dictionary_2_TryGetValue_m1013208020_RuntimeMethod_var); if (!L_45) { goto IL_0117; } } { int32_t L_46 = V_8; if (!L_46) { goto IL_0112; } } { goto IL_0117; } IL_0112: { goto IL_0130; } IL_0117: { XmlSchemaXPath_t3156455507 * L_47 = V_0; NullCheck(L_47); XmlNamespaceManager_t418790500 * L_48 = L_47->get_nsmgr_17(); String_t* L_49 = V_3; XmlNamespaceManager_t418790500 * L_50 = V_1; String_t* L_51 = V_3; NullCheck(L_50); String_t* L_52 = XmlNamespaceManager_LookupNamespace_m2828740952(L_50, L_51, (bool)0, /*hidden argument*/NULL); NullCheck(L_48); VirtActionInvoker2< String_t*, String_t* >::Invoke(8 /* System.Void System.Xml.XmlNamespaceManager::AddNamespace(System.String,System.String) */, L_48, L_49, L_52); goto IL_0130; } IL_0130: { RuntimeObject* L_53 = V_2; NullCheck(L_53); bool L_54 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_53); if (L_54) { goto IL_00aa; } } IL_013b: { goto IL_01ef; } IL_0140: { XmlSchemaReader_t1164558392 * L_55 = ___reader0; NullCheck(L_55); String_t* L_56 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_55); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_57 = String_op_Equality_m920492651(NULL /*static, unused*/, L_56, _stringLiteral3454449607, /*hidden argument*/NULL); if (!L_57) { goto IL_0166; } } { XmlSchemaXPath_t3156455507 * L_58 = V_0; XmlSchemaReader_t1164558392 * L_59 = ___reader0; NullCheck(L_59); String_t* L_60 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_59); NullCheck(L_58); XmlSchemaAnnotated_set_Id_m1597719336(L_58, L_60, /*hidden argument*/NULL); goto IL_01ef; } IL_0166: { XmlSchemaReader_t1164558392 * L_61 = ___reader0; NullCheck(L_61); String_t* L_62 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_61); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_63 = String_op_Equality_m920492651(NULL /*static, unused*/, L_62, _stringLiteral2333584123, /*hidden argument*/NULL); if (!L_63) { goto IL_018c; } } { XmlSchemaXPath_t3156455507 * L_64 = V_0; XmlSchemaReader_t1164558392 * L_65 = ___reader0; NullCheck(L_65); String_t* L_66 = VirtFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Xml.Schema.XmlSchemaReader::get_Value() */, L_65); NullCheck(L_64); L_64->set_xpath_16(L_66); goto IL_01ef; } IL_018c: { XmlSchemaReader_t1164558392 * L_67 = ___reader0; NullCheck(L_67); String_t* L_68 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_67); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_69 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_70 = String_op_Equality_m920492651(NULL /*static, unused*/, L_68, L_69, /*hidden argument*/NULL); if (!L_70) { goto IL_01b6; } } { XmlSchemaReader_t1164558392 * L_71 = ___reader0; NullCheck(L_71); String_t* L_72 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_71); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_73 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_72, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_73) { goto IL_01cb; } } IL_01b6: { XmlSchemaReader_t1164558392 * L_74 = ___reader0; NullCheck(L_74); String_t* L_75 = VirtFuncInvoker0< String_t* >::Invoke(19 /* System.String System.Xml.Schema.XmlSchemaReader::get_NamespaceURI() */, L_74); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_76 = String_op_Equality_m920492651(NULL /*static, unused*/, L_75, _stringLiteral1569427300, /*hidden argument*/NULL); if (!L_76) { goto IL_01e8; } } IL_01cb: { ValidationEventHandler_t791314227 * L_77 = ___h1; XmlSchemaReader_t1164558392 * L_78 = ___reader0; NullCheck(L_78); String_t* L_79 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_78); String_t* L_80 = ___name2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_81 = String_Concat_m3755062657(NULL /*static, unused*/, L_79, _stringLiteral4016147024, L_80, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_77, L_81, (Exception_t *)NULL, /*hidden argument*/NULL); goto IL_01ef; } IL_01e8: { XmlSchemaReader_t1164558392 * L_82 = ___reader0; XmlSchemaXPath_t3156455507 * L_83 = V_0; IL2CPP_RUNTIME_CLASS_INIT(XmlSchemaUtil_t956145399_il2cpp_TypeInfo_var); XmlSchemaUtil_ReadUnhandledAttribute_m1314733484(NULL /*static, unused*/, L_82, L_83, /*hidden argument*/NULL); } IL_01ef: { XmlSchemaReader_t1164558392 * L_84 = ___reader0; NullCheck(L_84); bool L_85 = VirtFuncInvoker0< bool >::Invoke(41 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToNextAttribute() */, L_84); if (L_85) { goto IL_0140; } } { XmlSchemaReader_t1164558392 * L_86 = ___reader0; NullCheck(L_86); VirtFuncInvoker0< bool >::Invoke(39 /* System.Boolean System.Xml.Schema.XmlSchemaReader::MoveToElement() */, L_86); XmlSchemaReader_t1164558392 * L_87 = ___reader0; NullCheck(L_87); bool L_88 = VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Xml.Schema.XmlSchemaReader::get_IsEmptyElement() */, L_87); if (!L_88) { goto IL_020e; } } { XmlSchemaXPath_t3156455507 * L_89 = V_0; return L_89; } IL_020e: { V_4 = 1; goto IL_0293; } IL_0216: { XmlSchemaReader_t1164558392 * L_90 = ___reader0; NullCheck(L_90); int32_t L_91 = VirtFuncInvoker0< int32_t >::Invoke(21 /* System.Xml.XmlNodeType System.Xml.Schema.XmlSchemaReader::get_NodeType() */, L_90); if ((!(((uint32_t)L_91) == ((uint32_t)((int32_t)15))))) { goto IL_0250; } } { XmlSchemaReader_t1164558392 * L_92 = ___reader0; NullCheck(L_92); String_t* L_93 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_92); String_t* L_94 = ___name2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_95 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_93, L_94, /*hidden argument*/NULL); if (!L_95) { goto IL_024b; } } { ValidationEventHandler_t791314227 * L_96 = ___h1; XmlSchemaReader_t1164558392 * L_97 = ___reader0; NullCheck(L_97); String_t* L_98 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Xml.Schema.XmlSchemaReader::get_Name() */, L_97); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_99 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral1279479074, L_98, /*hidden argument*/NULL); XmlSchemaObject_error_m1799989524(NULL /*static, unused*/, L_96, L_99, (Exception_t *)NULL, /*hidden argument*/NULL); } IL_024b: { goto IL_029e; } IL_0250: { int32_t L_100 = V_4; if ((((int32_t)L_100) > ((int32_t)1))) { goto IL_028d; } } { XmlSchemaReader_t1164558392 * L_101 = ___reader0; NullCheck(L_101); String_t* L_102 = VirtFuncInvoker0< String_t* >::Invoke(17 /* System.String System.Xml.Schema.XmlSchemaReader::get_LocalName() */, L_101); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_103 = String_op_Equality_m920492651(NULL /*static, unused*/, L_102, _stringLiteral1102688753, /*hidden argument*/NULL); if (!L_103) { goto IL_028d; } } { V_4 = 2; XmlSchemaReader_t1164558392 * L_104 = ___reader0; ValidationEventHandler_t791314227 * L_105 = ___h1; XmlSchemaAnnotation_t2553753397 * L_106 = XmlSchemaAnnotation_Read_m1586871736(NULL /*static, unused*/, L_104, L_105, /*hidden argument*/NULL); V_5 = L_106; XmlSchemaAnnotation_t2553753397 * L_107 = V_5; if (!L_107) { goto IL_0288; } } { XmlSchemaXPath_t3156455507 * L_108 = V_0; XmlSchemaAnnotation_t2553753397 * L_109 = V_5; NullCheck(L_108); XmlSchemaAnnotated_set_Annotation_m3050132480(L_108, L_109, /*hidden argument*/NULL); } IL_0288: { goto IL_0293; } IL_028d: { XmlSchemaReader_t1164558392 * L_110 = ___reader0; NullCheck(L_110); XmlSchemaReader_RaiseInvalidElementError_m4265021746(L_110, /*hidden argument*/NULL); } IL_0293: { XmlSchemaReader_t1164558392 * L_111 = ___reader0; NullCheck(L_111); bool L_112 = XmlSchemaReader_ReadNextElement_m611223709(L_111, /*hidden argument*/NULL); if (L_112) { goto IL_0216; } } IL_029e: { XmlSchemaXPath_t3156455507 * L_113 = V_0; return L_113; } } #ifdef __clang__ #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.String System.Xml.Serialization.CodeIdentifier::MakePascal(System.String) extern "C" String_t* CodeIdentifier_MakePascal_m714146339 (RuntimeObject * __this /* static, unused */, String_t* ___identifier0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodeIdentifier_MakePascal_m714146339_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___identifier0; String_t* L_1 = CodeIdentifier_MakeValid_m147143689(NULL /*static, unused*/, L_0, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; NullCheck(L_2); Il2CppChar L_3 = String_get_Chars_m2986988803(L_2, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_4 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var); Il2CppChar L_5 = Char_ToUpper_m3659851865(NULL /*static, unused*/, L_3, L_4, /*hidden argument*/NULL); Il2CppChar L_6 = L_5; RuntimeObject * L_7 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_6); String_t* L_8 = V_0; NullCheck(L_8); String_t* L_9 = String_Substring_m2848979100(L_8, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_10 = String_Concat_m904156431(NULL /*static, unused*/, L_7, L_9, /*hidden argument*/NULL); return L_10; } } // System.String System.Xml.Serialization.CodeIdentifier::MakeValid(System.String) extern "C" String_t* CodeIdentifier_MakeValid_m147143689 (RuntimeObject * __this /* static, unused */, String_t* ___identifier0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CodeIdentifier_MakeValid_m147143689_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Il2CppChar V_1 = 0x0; String_t* V_2 = NULL; int32_t V_3 = 0; { String_t* L_0 = ___identifier0; if (L_0) { goto IL_000c; } } { NullReferenceException_t1023182353 * L_1 = (NullReferenceException_t1023182353 *)il2cpp_codegen_object_new(NullReferenceException_t1023182353_il2cpp_TypeInfo_var); NullReferenceException__ctor_m744513393(L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,CodeIdentifier_MakeValid_m147143689_RuntimeMethod_var); } IL_000c: { String_t* L_2 = ___identifier0; NullCheck(L_2); int32_t L_3 = String_get_Length_m3847582255(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_001d; } } { return _stringLiteral1949155704; } IL_001d: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); V_0 = L_4; String_t* L_5 = ___identifier0; NullCheck(L_5); Il2CppChar L_6 = String_get_Chars_m2986988803(L_5, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var); bool L_7 = Char_IsLetter_m3996985877(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); if (L_7) { goto IL_0048; } } { String_t* L_8 = ___identifier0; NullCheck(L_8); Il2CppChar L_9 = String_get_Chars_m2986988803(L_8, 0, /*hidden argument*/NULL); if ((((int32_t)L_9) == ((int32_t)((int32_t)95)))) { goto IL_0048; } } { V_0 = _stringLiteral1949155704; } IL_0048: { String_t* L_10 = ___identifier0; V_2 = L_10; V_3 = 0; goto IL_007d; } IL_0051: { String_t* L_11 = V_2; int32_t L_12 = V_3; NullCheck(L_11); Il2CppChar L_13 = String_get_Chars_m2986988803(L_11, L_12, /*hidden argument*/NULL); V_1 = L_13; Il2CppChar L_14 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var); bool L_15 = Char_IsLetterOrDigit_m3494175785(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); if (L_15) { goto IL_006c; } } { Il2CppChar L_16 = V_1; if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)95))))) { goto IL_0079; } } IL_006c: { String_t* L_17 = V_0; Il2CppChar L_18 = V_1; Il2CppChar L_19 = L_18; RuntimeObject * L_20 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_19); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_21 = String_Concat_m904156431(NULL /*static, unused*/, L_17, L_20, /*hidden argument*/NULL); V_0 = L_21; } IL_0079: { int32_t L_22 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); } IL_007d: { int32_t L_23 = V_3; String_t* L_24 = V_2; NullCheck(L_24); int32_t L_25 = String_get_Length_m3847582255(L_24, /*hidden argument*/NULL); if ((((int32_t)L_23) < ((int32_t)L_25))) { goto IL_0051; } } { String_t* L_26 = V_0; NullCheck(L_26); int32_t L_27 = String_get_Length_m3847582255(L_26, /*hidden argument*/NULL); if ((((int32_t)L_27) <= ((int32_t)((int32_t)400)))) { goto IL_00a6; } } { String_t* L_28 = V_0; NullCheck(L_28); String_t* L_29 = String_Substring_m1610150815(L_28, 0, ((int32_t)400), /*hidden argument*/NULL); V_0 = L_29; } IL_00a6: { String_t* L_30 = V_0; return L_30; } } #ifdef __clang__ #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.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean) extern "C" void TypeData__ctor_m548900801 (TypeData_t476999220 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, const RuntimeMethod* method) { { Type_t * L_0 = ___type0; String_t* L_1 = ___elementName1; bool L_2 = ___isPrimitive2; TypeData__ctor_m812170617(__this, L_0, L_1, L_2, (TypeData_t476999220 *)NULL, (XmlSchemaPatternFacet_t3316004401 *)NULL, /*hidden argument*/NULL); return; } } // System.Void System.Xml.Serialization.TypeData::.ctor(System.Type,System.String,System.Boolean,System.Xml.Serialization.TypeData,System.Xml.Schema.XmlSchemaPatternFacet) extern "C" void TypeData__ctor_m812170617 (TypeData_t476999220 * __this, Type_t * ___type0, String_t* ___elementName1, bool ___isPrimitive2, TypeData_t476999220 * ___mappedType3, XmlSchemaPatternFacet_t3316004401 * ___facet4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData__ctor_m812170617_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeData_t476999220 * G_B26_0 = NULL; TypeData_t476999220 * G_B20_0 = NULL; TypeData_t476999220 * G_B24_0 = NULL; TypeData_t476999220 * G_B21_0 = NULL; TypeData_t476999220 * G_B22_0 = NULL; TypeData_t476999220 * G_B23_0 = NULL; int32_t G_B25_0 = 0; TypeData_t476999220 * G_B25_1 = NULL; int32_t G_B27_0 = 0; TypeData_t476999220 * G_B27_1 = NULL; { __this->set_hasPublicConstructor_9((bool)1); Object__ctor_m297566312(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(80 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_0); if (!L_1) { goto IL_0023; } } { InvalidOperationException_t56020091 * L_2 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_2, _stringLiteral3575685878, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2,TypeData__ctor_m812170617_RuntimeMethod_var); } IL_0023: { TypeData_t476999220 * L_3 = ___mappedType3; __this->set_mappedType_7(L_3); XmlSchemaPatternFacet_t3316004401 * L_4 = ___facet4; __this->set_facet_8(L_4); Type_t * L_5 = ___type0; __this->set_type_0(L_5); Type_t * L_6 = ___type0; NullCheck(L_6); String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6); __this->set_typeName_4(L_7); Type_t * L_8 = ___type0; NullCheck(L_8); String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_8); NullCheck(L_9); String_t* L_10 = String_Replace_m3726209165(L_9, ((int32_t)43), ((int32_t)46), /*hidden argument*/NULL); __this->set_fullTypeName_5(L_10); bool L_11 = ___isPrimitive2; if (!L_11) { goto IL_006d; } } { __this->set_sType_2(1); goto IL_00f9; } IL_006d: { Type_t * L_12 = ___type0; NullCheck(L_12); bool L_13 = Type_get_IsEnum_m208091508(L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_0084; } } { __this->set_sType_2(2); goto IL_00f9; } IL_0084: { RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (IXmlSerializable_t572450606_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); Type_t * L_16 = ___type0; NullCheck(L_15); bool L_17 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_15, L_16); if (!L_17) { goto IL_00a5; } } { __this->set_sType_2(5); goto IL_00f9; } IL_00a5: { RuntimeTypeHandle_t3027515415 L_18 = { reinterpret_cast<intptr_t> (XmlNode_t3767805227_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_19 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); Type_t * L_20 = ___type0; NullCheck(L_19); bool L_21 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_19, L_20); if (!L_21) { goto IL_00c6; } } { __this->set_sType_2(6); goto IL_00f9; } IL_00c6: { Type_t * L_22 = ___type0; NullCheck(L_22); bool L_23 = Type_get_IsArray_m2591212821(L_22, /*hidden argument*/NULL); if (L_23) { goto IL_00e6; } } { RuntimeTypeHandle_t3027515415 L_24 = { reinterpret_cast<intptr_t> (IEnumerable_t1941168011_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_25 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); Type_t * L_26 = ___type0; NullCheck(L_25); bool L_27 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_25, L_26); if (!L_27) { goto IL_00f2; } } IL_00e6: { __this->set_sType_2(3); goto IL_00f9; } IL_00f2: { __this->set_sType_2(4); } IL_00f9: { bool L_28 = TypeData_get_IsListType_m1184961596(__this, /*hidden argument*/NULL); if (!L_28) { goto IL_011f; } } { TypeData_t476999220 * L_29 = TypeData_get_ListItemTypeData_m3343906619(__this, /*hidden argument*/NULL); NullCheck(L_29); String_t* L_30 = TypeData_get_XmlType_m323326007(L_29, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); String_t* L_31 = TypeTranslator_GetArrayName_m2745210150(NULL /*static, unused*/, L_30, /*hidden argument*/NULL); __this->set_elementName_1(L_31); goto IL_0126; } IL_011f: { String_t* L_32 = ___elementName1; __this->set_elementName_1(L_32); } IL_0126: { int32_t L_33 = __this->get_sType_2(); if ((((int32_t)L_33) == ((int32_t)3))) { goto IL_013e; } } { int32_t L_34 = __this->get_sType_2(); if ((!(((uint32_t)L_34) == ((uint32_t)4)))) { goto IL_0181; } } IL_013e: { Type_t * L_35 = ___type0; NullCheck(L_35); bool L_36 = Type_get_IsInterface_m3284996719(L_35, /*hidden argument*/NULL); G_B20_0 = __this; if (L_36) { G_B26_0 = __this; goto IL_017b; } } { Type_t * L_37 = ___type0; NullCheck(L_37); bool L_38 = Type_get_IsArray_m2591212821(L_37, /*hidden argument*/NULL); G_B21_0 = G_B20_0; if (L_38) { G_B24_0 = G_B20_0; goto IL_0178; } } { Type_t * L_39 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t3940880105* L_40 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_3(); NullCheck(L_39); ConstructorInfo_t5769829 * L_41 = Type_GetConstructor_m2219014380(L_39, L_40, /*hidden argument*/NULL); G_B22_0 = G_B21_0; if (L_41) { G_B24_0 = G_B21_0; goto IL_0178; } } { Type_t * L_42 = ___type0; NullCheck(L_42); bool L_43 = Type_get_IsAbstract_m1120089130(L_42, /*hidden argument*/NULL); G_B23_0 = G_B22_0; if (L_43) { G_B24_0 = G_B22_0; goto IL_0178; } } { Type_t * L_44 = ___type0; NullCheck(L_44); bool L_45 = Type_get_IsValueType_m3108065642(L_44, /*hidden argument*/NULL); G_B25_0 = ((int32_t)(L_45)); G_B25_1 = G_B23_0; goto IL_0179; } IL_0178: { G_B25_0 = 1; G_B25_1 = G_B24_0; } IL_0179: { G_B27_0 = G_B25_0; G_B27_1 = G_B25_1; goto IL_017c; } IL_017b: { G_B27_0 = 0; G_B27_1 = G_B26_0; } IL_017c: { NullCheck(G_B27_1); G_B27_1->set_hasPublicConstructor_9((bool)G_B27_0); } IL_0181: { return; } } // System.Void System.Xml.Serialization.TypeData::.cctor() extern "C" void TypeData__cctor_m1057434258 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData__cctor_m1057434258_MetadataUsageId); s_Il2CppMethodInitialized = true; } { StringU5BU5D_t1281789340* L_0 = ((StringU5BU5D_t1281789340*)SZArrayNew(StringU5BU5D_t1281789340_il2cpp_TypeInfo_var, (uint32_t)((int32_t)80))); NullCheck(L_0); ArrayElementTypeCheck (L_0, _stringLiteral280883515); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral280883515); StringU5BU5D_t1281789340* L_1 = L_0; NullCheck(L_1); ArrayElementTypeCheck (L_1, _stringLiteral2734520598); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral2734520598); StringU5BU5D_t1281789340* L_2 = L_1; NullCheck(L_2); ArrayElementTypeCheck (L_2, _stringLiteral2149933273); (L_2)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2149933273); StringU5BU5D_t1281789340* L_3 = L_2; NullCheck(L_3); ArrayElementTypeCheck (L_3, _stringLiteral2001916978); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral2001916978); StringU5BU5D_t1281789340* L_4 = L_3; NullCheck(L_4); ArrayElementTypeCheck (L_4, _stringLiteral3455563711); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral3455563711); StringU5BU5D_t1281789340* L_5 = L_4; NullCheck(L_5); ArrayElementTypeCheck (L_5, _stringLiteral3637139173); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral3637139173); StringU5BU5D_t1281789340* L_6 = L_5; NullCheck(L_6); ArrayElementTypeCheck (L_6, _stringLiteral1202628576); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral1202628576); StringU5BU5D_t1281789340* L_7 = L_6; NullCheck(L_7); ArrayElementTypeCheck (L_7, _stringLiteral1956447343); (L_7)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral1956447343); StringU5BU5D_t1281789340* L_8 = L_7; NullCheck(L_8); ArrayElementTypeCheck (L_8, _stringLiteral2838662761); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral2838662761); StringU5BU5D_t1281789340* L_9 = L_8; NullCheck(L_9); ArrayElementTypeCheck (L_9, _stringLiteral130792137); (L_9)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral130792137); StringU5BU5D_t1281789340* L_10 = L_9; NullCheck(L_10); ArrayElementTypeCheck (L_10, _stringLiteral1178749465); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral1178749465); StringU5BU5D_t1281789340* L_11 = L_10; NullCheck(L_11); ArrayElementTypeCheck (L_11, _stringLiteral3875954633); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral3875954633); StringU5BU5D_t1281789340* L_12 = L_11; NullCheck(L_12); ArrayElementTypeCheck (L_12, _stringLiteral2978261106); (L_12)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)_stringLiteral2978261106); StringU5BU5D_t1281789340* L_13 = L_12; NullCheck(L_13); ArrayElementTypeCheck (L_13, _stringLiteral82367591); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)13)), (String_t*)_stringLiteral82367591); StringU5BU5D_t1281789340* L_14 = L_13; NullCheck(L_14); ArrayElementTypeCheck (L_14, _stringLiteral22182330); (L_14)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)14)), (String_t*)_stringLiteral22182330); StringU5BU5D_t1281789340* L_15 = L_14; NullCheck(L_15); ArrayElementTypeCheck (L_15, _stringLiteral3859429177); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (String_t*)_stringLiteral3859429177); StringU5BU5D_t1281789340* L_16 = L_15; NullCheck(L_16); ArrayElementTypeCheck (L_16, _stringLiteral2554266375); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)16)), (String_t*)_stringLiteral2554266375); StringU5BU5D_t1281789340* L_17 = L_16; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral4002445229); (L_17)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)17)), (String_t*)_stringLiteral4002445229); StringU5BU5D_t1281789340* L_18 = L_17; NullCheck(L_18); ArrayElementTypeCheck (L_18, _stringLiteral1709130670); (L_18)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)18)), (String_t*)_stringLiteral1709130670); StringU5BU5D_t1281789340* L_19 = L_18; NullCheck(L_19); ArrayElementTypeCheck (L_19, _stringLiteral345858392); (L_19)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)19)), (String_t*)_stringLiteral345858392); StringU5BU5D_t1281789340* L_20 = L_19; NullCheck(L_20); ArrayElementTypeCheck (L_20, _stringLiteral2601517161); (L_20)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)20)), (String_t*)_stringLiteral2601517161); StringU5BU5D_t1281789340* L_21 = L_20; NullCheck(L_21); ArrayElementTypeCheck (L_21, _stringLiteral2838662760); (L_21)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)21)), (String_t*)_stringLiteral2838662760); StringU5BU5D_t1281789340* L_22 = L_21; NullCheck(L_22); ArrayElementTypeCheck (L_22, _stringLiteral3980842185); (L_22)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)22)), (String_t*)_stringLiteral3980842185); StringU5BU5D_t1281789340* L_23 = L_22; NullCheck(L_23); ArrayElementTypeCheck (L_23, _stringLiteral2101930777); (L_23)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)23)), (String_t*)_stringLiteral2101930777); StringU5BU5D_t1281789340* L_24 = L_23; NullCheck(L_24); ArrayElementTypeCheck (L_24, _stringLiteral461028241); (L_24)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)24)), (String_t*)_stringLiteral461028241); StringU5BU5D_t1281789340* L_25 = L_24; NullCheck(L_25); ArrayElementTypeCheck (L_25, _stringLiteral1390811594); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)25)), (String_t*)_stringLiteral1390811594); StringU5BU5D_t1281789340* L_26 = L_25; NullCheck(L_26); ArrayElementTypeCheck (L_26, _stringLiteral1801699217); (L_26)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)26)), (String_t*)_stringLiteral1801699217); StringU5BU5D_t1281789340* L_27 = L_26; NullCheck(L_27); ArrayElementTypeCheck (L_27, _stringLiteral1184841701); (L_27)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)27)), (String_t*)_stringLiteral1184841701); StringU5BU5D_t1281789340* L_28 = L_27; NullCheck(L_28); ArrayElementTypeCheck (L_28, _stringLiteral170650980); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)28)), (String_t*)_stringLiteral170650980); StringU5BU5D_t1281789340* L_29 = L_28; NullCheck(L_29); ArrayElementTypeCheck (L_29, _stringLiteral4158218461); (L_29)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)29)), (String_t*)_stringLiteral4158218461); StringU5BU5D_t1281789340* L_30 = L_29; NullCheck(L_30); ArrayElementTypeCheck (L_30, _stringLiteral2419720959); (L_30)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)30)), (String_t*)_stringLiteral2419720959); StringU5BU5D_t1281789340* L_31 = L_30; NullCheck(L_31); ArrayElementTypeCheck (L_31, _stringLiteral3524468349); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)31)), (String_t*)_stringLiteral3524468349); StringU5BU5D_t1281789340* L_32 = L_31; NullCheck(L_32); ArrayElementTypeCheck (L_32, _stringLiteral2097807219); (L_32)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)32)), (String_t*)_stringLiteral2097807219); StringU5BU5D_t1281789340* L_33 = L_32; NullCheck(L_33); ArrayElementTypeCheck (L_33, _stringLiteral351315815); (L_33)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)33)), (String_t*)_stringLiteral351315815); StringU5BU5D_t1281789340* L_34 = L_33; NullCheck(L_34); ArrayElementTypeCheck (L_34, _stringLiteral3454318535); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)34)), (String_t*)_stringLiteral3454318535); StringU5BU5D_t1281789340* L_35 = L_34; NullCheck(L_35); ArrayElementTypeCheck (L_35, _stringLiteral827624532); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)35)), (String_t*)_stringLiteral827624532); StringU5BU5D_t1281789340* L_36 = L_35; NullCheck(L_36); ArrayElementTypeCheck (L_36, _stringLiteral2422556946); (L_36)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)36)), (String_t*)_stringLiteral2422556946); StringU5BU5D_t1281789340* L_37 = L_36; NullCheck(L_37); ArrayElementTypeCheck (L_37, _stringLiteral748112283); (L_37)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)37)), (String_t*)_stringLiteral748112283); StringU5BU5D_t1281789340* L_38 = L_37; NullCheck(L_38); ArrayElementTypeCheck (L_38, _stringLiteral3596048705); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)38)), (String_t*)_stringLiteral3596048705); StringU5BU5D_t1281789340* L_39 = L_38; NullCheck(L_39); ArrayElementTypeCheck (L_39, _stringLiteral133510650); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)39)), (String_t*)_stringLiteral133510650); StringU5BU5D_t1281789340* L_40 = L_39; NullCheck(L_40); ArrayElementTypeCheck (L_40, _stringLiteral1055810917); (L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)40)), (String_t*)_stringLiteral1055810917); StringU5BU5D_t1281789340* L_41 = L_40; NullCheck(L_41); ArrayElementTypeCheck (L_41, _stringLiteral3454842823); (L_41)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)41)), (String_t*)_stringLiteral3454842823); StringU5BU5D_t1281789340* L_42 = L_41; NullCheck(L_42); ArrayElementTypeCheck (L_42, _stringLiteral3134897496); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)42)), (String_t*)_stringLiteral3134897496); StringU5BU5D_t1281789340* L_43 = L_42; NullCheck(L_43); ArrayElementTypeCheck (L_43, _stringLiteral59180213); (L_43)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)43)), (String_t*)_stringLiteral59180213); StringU5BU5D_t1281789340* L_44 = L_43; NullCheck(L_44); ArrayElementTypeCheck (L_44, _stringLiteral895381333); (L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)44)), (String_t*)_stringLiteral895381333); StringU5BU5D_t1281789340* L_45 = L_44; NullCheck(L_45); ArrayElementTypeCheck (L_45, _stringLiteral1948332219); (L_45)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)45)), (String_t*)_stringLiteral1948332219); StringU5BU5D_t1281789340* L_46 = L_45; NullCheck(L_46); ArrayElementTypeCheck (L_46, _stringLiteral775541518); (L_46)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)46)), (String_t*)_stringLiteral775541518); StringU5BU5D_t1281789340* L_47 = L_46; NullCheck(L_47); ArrayElementTypeCheck (L_47, _stringLiteral765372749); (L_47)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)47)), (String_t*)_stringLiteral765372749); StringU5BU5D_t1281789340* L_48 = L_47; NullCheck(L_48); ArrayElementTypeCheck (L_48, _stringLiteral1453402100); (L_48)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)48)), (String_t*)_stringLiteral1453402100); StringU5BU5D_t1281789340* L_49 = L_48; NullCheck(L_49); ArrayElementTypeCheck (L_49, _stringLiteral3158016519); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)49)), (String_t*)_stringLiteral3158016519); StringU5BU5D_t1281789340* L_50 = L_49; NullCheck(L_50); ArrayElementTypeCheck (L_50, _stringLiteral2289751134); (L_50)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)50)), (String_t*)_stringLiteral2289751134); StringU5BU5D_t1281789340* L_51 = L_50; NullCheck(L_51); ArrayElementTypeCheck (L_51, _stringLiteral3454777276); (L_51)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)51)), (String_t*)_stringLiteral3454777276); StringU5BU5D_t1281789340* L_52 = L_51; NullCheck(L_52); ArrayElementTypeCheck (L_52, _stringLiteral3455563719); (L_52)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)52)), (String_t*)_stringLiteral3455563719); StringU5BU5D_t1281789340* L_53 = L_52; NullCheck(L_53); ArrayElementTypeCheck (L_53, _stringLiteral2873896790); (L_53)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)53)), (String_t*)_stringLiteral2873896790); StringU5BU5D_t1281789340* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral430703593); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)54)), (String_t*)_stringLiteral430703593); StringU5BU5D_t1281789340* L_55 = L_54; NullCheck(L_55); ArrayElementTypeCheck (L_55, _stringLiteral1167972383); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)55)), (String_t*)_stringLiteral1167972383); StringU5BU5D_t1281789340* L_56 = L_55; NullCheck(L_56); ArrayElementTypeCheck (L_56, _stringLiteral2954596464); (L_56)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)56)), (String_t*)_stringLiteral2954596464); StringU5BU5D_t1281789340* L_57 = L_56; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteral2838990438); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)57)), (String_t*)_stringLiteral2838990438); StringU5BU5D_t1281789340* L_58 = L_57; NullCheck(L_58); ArrayElementTypeCheck (L_58, _stringLiteral2322770241); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)58)), (String_t*)_stringLiteral2322770241); StringU5BU5D_t1281789340* L_59 = L_58; NullCheck(L_59); ArrayElementTypeCheck (L_59, _stringLiteral1236039580); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)59)), (String_t*)_stringLiteral1236039580); StringU5BU5D_t1281789340* L_60 = L_59; NullCheck(L_60); ArrayElementTypeCheck (L_60, _stringLiteral3820675233); (L_60)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)60)), (String_t*)_stringLiteral3820675233); StringU5BU5D_t1281789340* L_61 = L_60; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteral3557324734); (L_61)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)61)), (String_t*)_stringLiteral3557324734); StringU5BU5D_t1281789340* L_62 = L_61; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral798688685); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)62)), (String_t*)_stringLiteral798688685); StringU5BU5D_t1281789340* L_63 = L_62; NullCheck(L_63); ArrayElementTypeCheck (L_63, _stringLiteral1274151684); (L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)63)), (String_t*)_stringLiteral1274151684); StringU5BU5D_t1281789340* L_64 = L_63; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteral807124363); (L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)64)), (String_t*)_stringLiteral807124363); StringU5BU5D_t1281789340* L_65 = L_64; NullCheck(L_65); ArrayElementTypeCheck (L_65, _stringLiteral3894513951); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)65)), (String_t*)_stringLiteral3894513951); StringU5BU5D_t1281789340* L_66 = L_65; NullCheck(L_66); ArrayElementTypeCheck (L_66, _stringLiteral3873631970); (L_66)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)66)), (String_t*)_stringLiteral3873631970); StringU5BU5D_t1281789340* L_67 = L_66; NullCheck(L_67); ArrayElementTypeCheck (L_67, _stringLiteral3528114263); (L_67)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)67)), (String_t*)_stringLiteral3528114263); StringU5BU5D_t1281789340* L_68 = L_67; NullCheck(L_68); ArrayElementTypeCheck (L_68, _stringLiteral3576598565); (L_68)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)68)), (String_t*)_stringLiteral3576598565); StringU5BU5D_t1281789340* L_69 = L_68; NullCheck(L_69); ArrayElementTypeCheck (L_69, _stringLiteral2033559650); (L_69)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)69)), (String_t*)_stringLiteral2033559650); StringU5BU5D_t1281789340* L_70 = L_69; NullCheck(L_70); ArrayElementTypeCheck (L_70, _stringLiteral2553676557); (L_70)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)70)), (String_t*)_stringLiteral2553676557); StringU5BU5D_t1281789340* L_71 = L_70; NullCheck(L_71); ArrayElementTypeCheck (L_71, _stringLiteral1225964229); (L_71)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)71)), (String_t*)_stringLiteral1225964229); StringU5BU5D_t1281789340* L_72 = L_71; NullCheck(L_72); ArrayElementTypeCheck (L_72, _stringLiteral1535819814); (L_72)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)72)), (String_t*)_stringLiteral1535819814); StringU5BU5D_t1281789340* L_73 = L_72; NullCheck(L_73); ArrayElementTypeCheck (L_73, _stringLiteral1235497039); (L_73)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)73)), (String_t*)_stringLiteral1235497039); StringU5BU5D_t1281789340* L_74 = L_73; NullCheck(L_74); ArrayElementTypeCheck (L_74, _stringLiteral2409402648); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)74)), (String_t*)_stringLiteral2409402648); StringU5BU5D_t1281789340* L_75 = L_74; NullCheck(L_75); ArrayElementTypeCheck (L_75, _stringLiteral1236128813); (L_75)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)75)), (String_t*)_stringLiteral1236128813); StringU5BU5D_t1281789340* L_76 = L_75; NullCheck(L_76); ArrayElementTypeCheck (L_76, _stringLiteral75909655); (L_76)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)76)), (String_t*)_stringLiteral75909655); StringU5BU5D_t1281789340* L_77 = L_76; NullCheck(L_77); ArrayElementTypeCheck (L_77, _stringLiteral882274439); (L_77)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)77)), (String_t*)_stringLiteral882274439); StringU5BU5D_t1281789340* L_78 = L_77; NullCheck(L_78); ArrayElementTypeCheck (L_78, _stringLiteral3110370682); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)78)), (String_t*)_stringLiteral3110370682); StringU5BU5D_t1281789340* L_79 = L_78; NullCheck(L_79); ArrayElementTypeCheck (L_79, _stringLiteral729250605); (L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)79)), (String_t*)_stringLiteral729250605); ((TypeData_t476999220_StaticFields*)il2cpp_codegen_static_fields_for(TypeData_t476999220_il2cpp_TypeInfo_var))->set_keywords_11(L_79); return; } } // System.String System.Xml.Serialization.TypeData::get_XmlType() extern "C" String_t* TypeData_get_XmlType_m323326007 (TypeData_t476999220 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_elementName_1(); return L_0; } } // System.Type System.Xml.Serialization.TypeData::get_Type() extern "C" Type_t * TypeData_get_Type_m3693670728 (TypeData_t476999220 * __this, const RuntimeMethod* method) { { Type_t * L_0 = __this->get_type_0(); return L_0; } } // System.Xml.Serialization.SchemaTypes System.Xml.Serialization.TypeData::get_SchemaType() extern "C" int32_t TypeData_get_SchemaType_m4022828308 (TypeData_t476999220 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_sType_2(); return L_0; } } // System.Boolean System.Xml.Serialization.TypeData::get_IsListType() extern "C" bool TypeData_get_IsListType_m1184961596 (TypeData_t476999220 * __this, const RuntimeMethod* method) { { int32_t L_0 = TypeData_get_SchemaType_m4022828308(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0); } } // System.Void System.Xml.Serialization.TypeData::set_IsNullable(System.Boolean) extern "C" void TypeData_set_IsNullable_m3746874811 (TypeData_t476999220 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_nullableOverride_10(L_0); return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeData::get_ListItemTypeData() extern "C" TypeData_t476999220 * TypeData_get_ListItemTypeData_m3343906619 (TypeData_t476999220 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData_get_ListItemTypeData_m3343906619_MetadataUsageId); s_Il2CppMethodInitialized = true; } { TypeData_t476999220 * L_0 = __this->get_listItemTypeData_6(); if (L_0) { goto IL_0027; } } { Type_t * L_1 = __this->get_type_0(); if (!L_1) { goto IL_0027; } } { Type_t * L_2 = TypeData_get_ListItemType_m2212788481(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_3 = TypeTranslator_GetTypeData_m1676550349(NULL /*static, unused*/, L_2, /*hidden argument*/NULL); __this->set_listItemTypeData_6(L_3); } IL_0027: { TypeData_t476999220 * L_4 = __this->get_listItemTypeData_6(); return L_4; } } // System.Type System.Xml.Serialization.TypeData::get_ListItemType() extern "C" Type_t * TypeData_get_ListItemType_m2212788481 (TypeData_t476999220 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData_get_ListItemType_m2212788481_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; PropertyInfo_t * V_1 = NULL; MethodInfo_t * V_2 = NULL; MethodInfo_t * V_3 = NULL; PropertyInfo_t * V_4 = NULL; MethodInfo_t * V_5 = NULL; { Type_t * L_0 = __this->get_type_0(); if (L_0) { goto IL_0016; } } { InvalidOperationException_t56020091 * L_1 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_1, _stringLiteral2279892295, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_0016: { Type_t * L_2 = __this->get_listItemType_3(); if (!L_2) { goto IL_0028; } } { Type_t * L_3 = __this->get_listItemType_3(); return L_3; } IL_0028: { V_0 = (Type_t *)NULL; int32_t L_4 = TypeData_get_SchemaType_m4022828308(__this, /*hidden argument*/NULL); if ((((int32_t)L_4) == ((int32_t)3))) { goto IL_0051; } } { Type_t * L_5 = TypeData_get_Type_m3693670728(__this, /*hidden argument*/NULL); NullCheck(L_5); String_t* L_6 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_5); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_7 = String_Concat_m3937257545(NULL /*static, unused*/, L_6, _stringLiteral4273379246, /*hidden argument*/NULL); InvalidOperationException_t56020091 * L_8 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_8, L_7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_0051: { Type_t * L_9 = __this->get_type_0(); NullCheck(L_9); bool L_10 = Type_get_IsArray_m2591212821(L_9, /*hidden argument*/NULL); if (!L_10) { goto IL_0077; } } { Type_t * L_11 = __this->get_type_0(); NullCheck(L_11); Type_t * L_12 = VirtFuncInvoker0< Type_t * >::Invoke(44 /* System.Type System.Type::GetElementType() */, L_11); __this->set_listItemType_3(L_12); goto IL_0229; } IL_0077: { RuntimeTypeHandle_t3027515415 L_13 = { reinterpret_cast<intptr_t> (ICollection_t3904884886_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_14 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_13, /*hidden argument*/NULL); Type_t * L_15 = __this->get_type_0(); NullCheck(L_14); bool L_16 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_14, L_15); if (L_16) { goto IL_00a4; } } { Type_t * L_17 = __this->get_type_0(); Type_t * L_18 = TypeData_GetGenericListItemType_m2145930005(__this, L_17, /*hidden argument*/NULL); Type_t * L_19 = L_18; V_0 = L_19; if (!L_19) { goto IL_0179; } } IL_00a4: { RuntimeTypeHandle_t3027515415 L_20 = { reinterpret_cast<intptr_t> (IDictionary_t1363984059_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_21 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_20, /*hidden argument*/NULL); Type_t * L_22 = __this->get_type_0(); NullCheck(L_21); bool L_23 = VirtFuncInvoker1< bool, Type_t * >::Invoke(41 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_21, L_22); if (!L_23) { goto IL_00e7; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_24 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_25 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_26 = __this->get_type_0(); NullCheck(L_26); String_t* L_27 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_26); NullCheck(L_25); ArrayElementTypeCheck (L_25, L_27); (L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_27); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_28 = String_Format_m1881875187(NULL /*static, unused*/, L_24, _stringLiteral3339633678, L_25, /*hidden argument*/NULL); NotSupportedException_t1314879016 * L_29 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_29, L_28, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_29,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_00e7: { Type_t * L_30 = V_0; if (!L_30) { goto IL_00f9; } } { Type_t * L_31 = V_0; __this->set_listItemType_3(L_31); goto IL_0137; } IL_00f9: { Type_t * L_32 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(TypeData_t476999220_il2cpp_TypeInfo_var); PropertyInfo_t * L_33 = TypeData_GetIndexerProperty_m1051013388(NULL /*static, unused*/, L_32, /*hidden argument*/NULL); V_1 = L_33; PropertyInfo_t * L_34 = V_1; if (L_34) { goto IL_012b; } } { Type_t * L_35 = __this->get_type_0(); NullCheck(L_35); String_t* L_36 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_35); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_37 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral3598675092, L_36, _stringLiteral1362010054, /*hidden argument*/NULL); InvalidOperationException_t56020091 * L_38 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_38, L_37, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_38,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_012b: { PropertyInfo_t * L_39 = V_1; NullCheck(L_39); Type_t * L_40 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_39); __this->set_listItemType_3(L_40); } IL_0137: { Type_t * L_41 = __this->get_type_0(); TypeU5BU5D_t3940880105* L_42 = ((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_43 = __this->get_listItemType_3(); NullCheck(L_42); ArrayElementTypeCheck (L_42, L_43); (L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_43); NullCheck(L_41); MethodInfo_t * L_44 = Type_GetMethod_m1479779718(L_41, _stringLiteral3265744085, L_42, /*hidden argument*/NULL); V_2 = L_44; MethodInfo_t * L_45 = V_2; if (L_45) { goto IL_0174; } } { Type_t * L_46 = __this->get_type_0(); Type_t * L_47 = __this->get_listItemType_3(); IL2CPP_RUNTIME_CLASS_INIT(TypeData_t476999220_il2cpp_TypeInfo_var); InvalidOperationException_t56020091 * L_48 = TypeData_CreateMissingAddMethodException_m662119892(NULL /*static, unused*/, L_46, _stringLiteral2352956595, L_47, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_48,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_0174: { goto IL_0229; } IL_0179: { Type_t * L_49 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t3940880105* L_50 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_3(); NullCheck(L_49); MethodInfo_t * L_51 = Type_GetMethod_m1479779718(L_49, _stringLiteral3024845674, L_50, /*hidden argument*/NULL); V_3 = L_51; MethodInfo_t * L_52 = V_3; if (L_52) { goto IL_01af; } } { Type_t * L_53 = __this->get_type_0(); IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); TypeU5BU5D_t3940880105* L_54 = ((Type_t_StaticFields*)il2cpp_codegen_static_fields_for(Type_t_il2cpp_TypeInfo_var))->get_EmptyTypes_3(); NullCheck(L_53); MethodInfo_t * L_55 = Type_GetMethod_m637078096(L_53, _stringLiteral2703077774, ((int32_t)52), (Binder_t2999457153 *)NULL, L_54, (ParameterModifierU5BU5D_t2943407543*)(ParameterModifierU5BU5D_t2943407543*)NULL, /*hidden argument*/NULL); V_3 = L_55; } IL_01af: { MethodInfo_t * L_56 = V_3; NullCheck(L_56); Type_t * L_57 = VirtFuncInvoker0< Type_t * >::Invoke(32 /* System.Type System.Reflection.MethodInfo::get_ReturnType() */, L_56); NullCheck(L_57); PropertyInfo_t * L_58 = Type_GetProperty_m3414567179(L_57, _stringLiteral3862463354, /*hidden argument*/NULL); V_4 = L_58; PropertyInfo_t * L_59 = V_4; if (L_59) { goto IL_01dd; } } { RuntimeTypeHandle_t3027515415 L_60 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_61 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_60, /*hidden argument*/NULL); __this->set_listItemType_3(L_61); goto IL_01ea; } IL_01dd: { PropertyInfo_t * L_62 = V_4; NullCheck(L_62); Type_t * L_63 = VirtFuncInvoker0< Type_t * >::Invoke(17 /* System.Type System.Reflection.PropertyInfo::get_PropertyType() */, L_62); __this->set_listItemType_3(L_63); } IL_01ea: { Type_t * L_64 = __this->get_type_0(); TypeU5BU5D_t3940880105* L_65 = ((TypeU5BU5D_t3940880105*)SZArrayNew(TypeU5BU5D_t3940880105_il2cpp_TypeInfo_var, (uint32_t)1)); Type_t * L_66 = __this->get_listItemType_3(); NullCheck(L_65); ArrayElementTypeCheck (L_65, L_66); (L_65)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_66); NullCheck(L_64); MethodInfo_t * L_67 = Type_GetMethod_m1479779718(L_64, _stringLiteral3265744085, L_65, /*hidden argument*/NULL); V_5 = L_67; MethodInfo_t * L_68 = V_5; if (L_68) { goto IL_0229; } } { Type_t * L_69 = __this->get_type_0(); Type_t * L_70 = __this->get_listItemType_3(); IL2CPP_RUNTIME_CLASS_INIT(TypeData_t476999220_il2cpp_TypeInfo_var); InvalidOperationException_t56020091 * L_71 = TypeData_CreateMissingAddMethodException_m662119892(NULL /*static, unused*/, L_69, _stringLiteral1861059339, L_70, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_71,TypeData_get_ListItemType_m2212788481_RuntimeMethod_var); } IL_0229: { Type_t * L_72 = __this->get_listItemType_3(); return L_72; } } // System.Reflection.PropertyInfo System.Xml.Serialization.TypeData::GetIndexerProperty(System.Type) extern "C" PropertyInfo_t * TypeData_GetIndexerProperty_m1051013388 (RuntimeObject * __this /* static, unused */, Type_t * ___collectionType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData_GetIndexerProperty_m1051013388_MetadataUsageId); s_Il2CppMethodInitialized = true; } PropertyInfoU5BU5D_t1461822886* V_0 = NULL; PropertyInfo_t * V_1 = NULL; PropertyInfoU5BU5D_t1461822886* V_2 = NULL; int32_t V_3 = 0; ParameterInfoU5BU5D_t390618515* V_4 = NULL; { Type_t * L_0 = ___collectionType0; NullCheck(L_0); PropertyInfoU5BU5D_t1461822886* L_1 = VirtFuncInvoker1< PropertyInfoU5BU5D_t1461822886*, int32_t >::Invoke(56 /* System.Reflection.PropertyInfo[] System.Type::GetProperties(System.Reflection.BindingFlags) */, L_0, ((int32_t)20)); V_0 = L_1; PropertyInfoU5BU5D_t1461822886* L_2 = V_0; V_2 = L_2; V_3 = 0; goto IL_004d; } IL_0012: { PropertyInfoU5BU5D_t1461822886* L_3 = V_2; int32_t L_4 = V_3; NullCheck(L_3); int32_t L_5 = L_4; PropertyInfo_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_1 = L_6; PropertyInfo_t * L_7 = V_1; NullCheck(L_7); ParameterInfoU5BU5D_t390618515* L_8 = VirtFuncInvoker0< ParameterInfoU5BU5D_t390618515* >::Invoke(21 /* System.Reflection.ParameterInfo[] System.Reflection.PropertyInfo::GetIndexParameters() */, L_7); V_4 = L_8; ParameterInfoU5BU5D_t390618515* L_9 = V_4; if (!L_9) { goto IL_0049; } } { ParameterInfoU5BU5D_t390618515* L_10 = V_4; NullCheck(L_10); if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))) == ((uint32_t)1)))) { goto IL_0049; } } { ParameterInfoU5BU5D_t390618515* L_11 = V_4; NullCheck(L_11); int32_t L_12 = 0; ParameterInfo_t1861056598 * L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12)); NullCheck(L_13); Type_t * L_14 = VirtFuncInvoker0< Type_t * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_13); RuntimeTypeHandle_t3027515415 L_15 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_16 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_15, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_14) == ((RuntimeObject*)(Type_t *)L_16)))) { goto IL_0049; } } { PropertyInfo_t * L_17 = V_1; return L_17; } IL_0049: { int32_t L_18 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_004d: { int32_t L_19 = V_3; PropertyInfoU5BU5D_t1461822886* L_20 = V_2; NullCheck(L_20); if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_20)->max_length))))))) { goto IL_0012; } } { return (PropertyInfo_t *)NULL; } } // System.InvalidOperationException System.Xml.Serialization.TypeData::CreateMissingAddMethodException(System.Type,System.String,System.Type) extern "C" InvalidOperationException_t56020091 * TypeData_CreateMissingAddMethodException_m662119892 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, String_t* ___inheritFrom1, Type_t * ___argumentType2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData_CreateMissingAddMethodException_m662119892_MetadataUsageId); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_0 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); ObjectU5BU5D_t2843939325* L_1 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)3)); String_t* L_2 = ___inheritFrom1; NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2); ObjectU5BU5D_t2843939325* L_3 = L_1; Type_t * L_4 = ___argumentType2; NullCheck(L_4); String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_4); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_5); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5); ObjectU5BU5D_t2843939325* L_6 = L_3; Type_t * L_7 = ___type0; NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_7); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_8); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_9 = String_Format_m1881875187(NULL /*static, unused*/, L_0, _stringLiteral4247890760, L_6, /*hidden argument*/NULL); InvalidOperationException_t56020091 * L_10 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_10, L_9, /*hidden argument*/NULL); return L_10; } } // System.Type System.Xml.Serialization.TypeData::GetGenericListItemType(System.Type) extern "C" Type_t * TypeData_GetGenericListItemType_m2145930005 (TypeData_t476999220 * __this, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeData_GetGenericListItemType_m2145930005_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; Type_t * V_1 = NULL; TypeU5BU5D_t3940880105* V_2 = NULL; int32_t V_3 = 0; { Type_t * L_0 = ___type0; NullCheck(L_0); bool L_1 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericType() */, L_0); if (!L_1) { goto IL_0029; } } { Type_t * L_2 = ___type0; NullCheck(L_2); Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(81 /* System.Type System.Type::GetGenericTypeDefinition() */, L_2); RuntimeTypeHandle_t3027515415 L_4 = { reinterpret_cast<intptr_t> (ICollection_1_t1449021101_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_5 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_4, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_3) == ((RuntimeObject*)(Type_t *)L_5)))) { goto IL_0029; } } { Type_t * L_6 = ___type0; NullCheck(L_6); TypeU5BU5D_t3940880105* L_7 = VirtFuncInvoker0< TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type[] System.Type::GetGenericArguments() */, L_6); NullCheck(L_7); int32_t L_8 = 0; Type_t * L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); return L_9; } IL_0029: { V_0 = (Type_t *)NULL; Type_t * L_10 = ___type0; NullCheck(L_10); TypeU5BU5D_t3940880105* L_11 = VirtFuncInvoker0< TypeU5BU5D_t3940880105* >::Invoke(40 /* System.Type[] System.Type::GetInterfaces() */, L_10); V_2 = L_11; V_3 = 0; goto IL_0051; } IL_0039: { TypeU5BU5D_t3940880105* L_12 = V_2; int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = L_13; Type_t * L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); V_1 = L_15; Type_t * L_16 = V_1; Type_t * L_17 = TypeData_GetGenericListItemType_m2145930005(__this, L_16, /*hidden argument*/NULL); Type_t * L_18 = L_17; V_0 = L_18; if (!L_18) { goto IL_004d; } } { Type_t * L_19 = V_0; return L_19; } IL_004d: { int32_t L_20 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0051: { int32_t L_21 = V_3; TypeU5BU5D_t3940880105* L_22 = V_2; NullCheck(L_22); if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length))))))) { goto IL_0039; } } { return (Type_t *)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.TypeTranslator::.cctor() extern "C" void TypeTranslator__cctor_m3101224670 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator__cctor_m3101224670_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlSchemaPatternFacet_t3316004401 * V_0 = NULL; RuntimeObject* V_1 = NULL; TypeData_t476999220 * V_2 = NULL; RuntimeObject* V_3 = NULL; DictionaryEntry_t3123975638 V_4; memset(&V_4, 0, sizeof(V_4)); RuntimeObject* V_5 = NULL; TypeData_t476999220 * V_6 = NULL; TypeData_t476999220 * V_7 = NULL; RuntimeObject* V_8 = NULL; RuntimeObject* V_9 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = 0; NO_UNUSED_WARNING (__leave_target); { Hashtable_t1853889766 * L_0 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_0, /*hidden argument*/NULL); ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->set_nameCache_0(L_0); Hashtable_t1853889766 * L_1 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_2 = Hashtable_Synchronized_m2228653257(NULL /*static, unused*/, L_1, /*hidden argument*/NULL); ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->set_primitiveArrayTypes_2(L_2); Hashtable_t1853889766 * L_3 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); Hashtable_t1853889766 * L_4 = Hashtable_Synchronized_m2228653257(NULL /*static, unused*/, L_3, /*hidden argument*/NULL); ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->set_nameCache_0(L_4); Hashtable_t1853889766 * L_5 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_6 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_7 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_6, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_8 = { reinterpret_cast<intptr_t> (Boolean_t97287965_0_0_0_var) }; Type_t * L_9 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_8, /*hidden argument*/NULL); TypeData_t476999220 * L_10 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_10, L_9, _stringLiteral228529742, (bool)1, /*hidden argument*/NULL); NullCheck(L_5); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_5, L_7, L_10); Hashtable_t1853889766 * L_11 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_12 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) }; Type_t * L_13 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_12, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_14 = { reinterpret_cast<intptr_t> (Int16_t2552820387_0_0_0_var) }; Type_t * L_15 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_14, /*hidden argument*/NULL); TypeData_t476999220 * L_16 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_16, L_15, _stringLiteral1535819814, (bool)1, /*hidden argument*/NULL); NullCheck(L_11); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_11, L_13, L_16); Hashtable_t1853889766 * L_17 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_18 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) }; Type_t * L_19 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_18, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_20 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) }; Type_t * L_21 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_20, /*hidden argument*/NULL); TypeData_t476999220 * L_22 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_22, L_21, _stringLiteral3873205229, (bool)1, /*hidden argument*/NULL); NullCheck(L_17); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_17, L_19, L_22); Hashtable_t1853889766 * L_23 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_24 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) }; Type_t * L_25 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_24, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_26 = { reinterpret_cast<intptr_t> (Int32_t2950945753_0_0_0_var) }; Type_t * L_27 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_26, /*hidden argument*/NULL); TypeData_t476999220 * L_28 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_28, L_27, _stringLiteral2553676557, (bool)1, /*hidden argument*/NULL); NullCheck(L_23); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_23, L_25, L_28); Hashtable_t1853889766 * L_29 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_30 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) }; Type_t * L_31 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_30, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_32 = { reinterpret_cast<intptr_t> (UInt32_t2560061978_0_0_0_var) }; Type_t * L_33 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_32, /*hidden argument*/NULL); TypeData_t476999220 * L_34 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_34, L_33, _stringLiteral3755388189, (bool)1, /*hidden argument*/NULL); NullCheck(L_29); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_29, L_31, L_34); Hashtable_t1853889766 * L_35 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_36 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) }; Type_t * L_37 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_36, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_38 = { reinterpret_cast<intptr_t> (Int64_t3736567304_0_0_0_var) }; Type_t * L_39 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_38, /*hidden argument*/NULL); TypeData_t476999220 * L_40 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_40, L_39, _stringLiteral2409402648, (bool)1, /*hidden argument*/NULL); NullCheck(L_35); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_35, L_37, L_40); Hashtable_t1853889766 * L_41 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_42 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) }; Type_t * L_43 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_42, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_44 = { reinterpret_cast<intptr_t> (UInt64_t4134040092_0_0_0_var) }; Type_t * L_45 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_44, /*hidden argument*/NULL); TypeData_t476999220 * L_46 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_46, L_45, _stringLiteral1873420042, (bool)1, /*hidden argument*/NULL); NullCheck(L_41); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_41, L_43, L_46); Hashtable_t1853889766 * L_47 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_48 = { reinterpret_cast<intptr_t> (Single_t1397266774_0_0_0_var) }; Type_t * L_49 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_48, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_50 = { reinterpret_cast<intptr_t> (Single_t1397266774_0_0_0_var) }; Type_t * L_51 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_50, /*hidden argument*/NULL); TypeData_t476999220 * L_52 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_52, L_51, _stringLiteral807124363, (bool)1, /*hidden argument*/NULL); NullCheck(L_47); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_47, L_49, L_52); Hashtable_t1853889766 * L_53 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_54 = { reinterpret_cast<intptr_t> (Double_t594665363_0_0_0_var) }; Type_t * L_55 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_54, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_56 = { reinterpret_cast<intptr_t> (Double_t594665363_0_0_0_var) }; Type_t * L_57 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_56, /*hidden argument*/NULL); TypeData_t476999220 * L_58 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_58, L_57, _stringLiteral1235497039, (bool)1, /*hidden argument*/NULL); NullCheck(L_53); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_53, L_55, L_58); Hashtable_t1853889766 * L_59 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_60 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; Type_t * L_61 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_60, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_62 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; Type_t * L_63 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_62, /*hidden argument*/NULL); TypeData_t476999220 * L_64 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_64, L_63, _stringLiteral3798050081, (bool)1, /*hidden argument*/NULL); NullCheck(L_59); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_59, L_61, L_64); Hashtable_t1853889766 * L_65 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_66 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) }; Type_t * L_67 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_66, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_68 = { reinterpret_cast<intptr_t> (Decimal_t2948259380_0_0_0_var) }; Type_t * L_69 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_68, /*hidden argument*/NULL); TypeData_t476999220 * L_70 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_70, L_69, _stringLiteral2033559650, (bool)1, /*hidden argument*/NULL); NullCheck(L_65); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_65, L_67, L_70); Hashtable_t1853889766 * L_71 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_72 = { reinterpret_cast<intptr_t> (XmlQualifiedName_t2760654312_0_0_0_var) }; Type_t * L_73 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_72, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_74 = { reinterpret_cast<intptr_t> (XmlQualifiedName_t2760654312_0_0_0_var) }; Type_t * L_75 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_74, /*hidden argument*/NULL); TypeData_t476999220 * L_76 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_76, L_75, _stringLiteral2799480295, (bool)1, /*hidden argument*/NULL); NullCheck(L_71); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_71, L_73, L_76); Hashtable_t1853889766 * L_77 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_78 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_79 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_78, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_80 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_81 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_80, /*hidden argument*/NULL); TypeData_t476999220 * L_82 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_82, L_81, _stringLiteral1236128813, (bool)1, /*hidden argument*/NULL); NullCheck(L_77); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_77, L_79, L_82); XmlSchemaPatternFacet_t3316004401 * L_83 = (XmlSchemaPatternFacet_t3316004401 *)il2cpp_codegen_object_new(XmlSchemaPatternFacet_t3316004401_il2cpp_TypeInfo_var); XmlSchemaPatternFacet__ctor_m2153033712(L_83, /*hidden argument*/NULL); V_0 = L_83; XmlSchemaPatternFacet_t3316004401 * L_84 = V_0; NullCheck(L_84); XmlSchemaFacet_set_Value_m2382101717(L_84, _stringLiteral2801046788, /*hidden argument*/NULL); Hashtable_t1853889766 * L_85 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_86 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; Type_t * L_87 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_86, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_88 = { reinterpret_cast<intptr_t> (Guid_t_0_0_0_var) }; Type_t * L_89 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_88, /*hidden argument*/NULL); Hashtable_t1853889766 * L_90 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_91 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_92 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_91, /*hidden argument*/NULL); NullCheck(L_90); RuntimeObject * L_93 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_90, L_92); XmlSchemaPatternFacet_t3316004401 * L_94 = V_0; TypeData_t476999220 * L_95 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m812170617(L_95, L_89, _stringLiteral76564998, (bool)1, ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_93, TypeData_t476999220_il2cpp_TypeInfo_var)), L_94, /*hidden argument*/NULL); NullCheck(L_85); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_85, L_87, L_95); Hashtable_t1853889766 * L_96 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_97 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) }; Type_t * L_98 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_97, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_99 = { reinterpret_cast<intptr_t> (Byte_t1134296376_0_0_0_var) }; Type_t * L_100 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_99, /*hidden argument*/NULL); TypeData_t476999220 * L_101 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_101, L_100, _stringLiteral3773869350, (bool)1, /*hidden argument*/NULL); NullCheck(L_96); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_96, L_98, L_101); Hashtable_t1853889766 * L_102 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_103 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) }; Type_t * L_104 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_103, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_105 = { reinterpret_cast<intptr_t> (SByte_t1669577662_0_0_0_var) }; Type_t * L_106 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_105, /*hidden argument*/NULL); TypeData_t476999220 * L_107 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_107, L_106, _stringLiteral1274151684, (bool)1, /*hidden argument*/NULL); NullCheck(L_102); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_102, L_104, L_107); Hashtable_t1853889766 * L_108 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_109 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) }; Type_t * L_110 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_109, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_111 = { reinterpret_cast<intptr_t> (Char_t3634460470_0_0_0_var) }; Type_t * L_112 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_111, /*hidden argument*/NULL); Hashtable_t1853889766 * L_113 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_114 = { reinterpret_cast<intptr_t> (UInt16_t2177724958_0_0_0_var) }; Type_t * L_115 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_114, /*hidden argument*/NULL); NullCheck(L_113); RuntimeObject * L_116 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_113, L_115); TypeData_t476999220 * L_117 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m812170617(L_117, L_112, _stringLiteral3873631970, (bool)1, ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_116, TypeData_t476999220_il2cpp_TypeInfo_var)), (XmlSchemaPatternFacet_t3316004401 *)NULL, /*hidden argument*/NULL); NullCheck(L_108); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_108, L_110, L_117); Hashtable_t1853889766 * L_118 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_119 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; Type_t * L_120 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_119, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_121 = { reinterpret_cast<intptr_t> (RuntimeObject_0_0_0_var) }; Type_t * L_122 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_121, /*hidden argument*/NULL); TypeData_t476999220 * L_123 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_123, L_122, _stringLiteral3777314074, (bool)0, /*hidden argument*/NULL); NullCheck(L_118); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_118, L_120, L_123); Hashtable_t1853889766 * L_124 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_125 = { reinterpret_cast<intptr_t> (ByteU5BU5D_t4116647657_0_0_0_var) }; Type_t * L_126 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_125, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_127 = { reinterpret_cast<intptr_t> (ByteU5BU5D_t4116647657_0_0_0_var) }; Type_t * L_128 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_127, /*hidden argument*/NULL); TypeData_t476999220 * L_129 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_129, L_128, _stringLiteral1671489303, (bool)1, /*hidden argument*/NULL); NullCheck(L_124); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_124, L_126, L_129); Hashtable_t1853889766 * L_130 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_131 = { reinterpret_cast<intptr_t> (XmlNode_t3767805227_0_0_0_var) }; Type_t * L_132 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_131, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_133 = { reinterpret_cast<intptr_t> (XmlNode_t3767805227_0_0_0_var) }; Type_t * L_134 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_133, /*hidden argument*/NULL); TypeData_t476999220 * L_135 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_135, L_134, _stringLiteral1792755598, (bool)0, /*hidden argument*/NULL); NullCheck(L_130); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_130, L_132, L_135); Hashtable_t1853889766 * L_136 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); RuntimeTypeHandle_t3027515415 L_137 = { reinterpret_cast<intptr_t> (XmlElement_t561603118_0_0_0_var) }; Type_t * L_138 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_137, /*hidden argument*/NULL); RuntimeTypeHandle_t3027515415 L_139 = { reinterpret_cast<intptr_t> (XmlElement_t561603118_0_0_0_var) }; Type_t * L_140 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_139, /*hidden argument*/NULL); TypeData_t476999220 * L_141 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_141, L_140, _stringLiteral2225953156, (bool)0, /*hidden argument*/NULL); NullCheck(L_136); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_136, L_138, L_141); Hashtable_t1853889766 * L_142 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_142, /*hidden argument*/NULL); ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->set_primitiveTypes_1(L_142); Hashtable_t1853889766 * L_143 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); NullCheck(L_143); RuntimeObject* L_144 = VirtFuncInvoker0< RuntimeObject* >::Invoke(25 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_143); V_1 = L_144; RuntimeObject* L_145 = V_1; NullCheck(L_145); RuntimeObject* L_146 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t1941168011_il2cpp_TypeInfo_var, L_145); V_3 = L_146; } IL_03e6: try { // begin try (depth: 1) { goto IL_0408; } IL_03eb: { RuntimeObject* L_147 = V_3; NullCheck(L_147); RuntimeObject * L_148 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_147); V_2 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_148, TypeData_t476999220_il2cpp_TypeInfo_var)); Hashtable_t1853889766 * L_149 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); TypeData_t476999220 * L_150 = V_2; NullCheck(L_150); String_t* L_151 = TypeData_get_XmlType_m323326007(L_150, /*hidden argument*/NULL); TypeData_t476999220 * L_152 = V_2; NullCheck(L_149); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_149, L_151, L_152); } IL_0408: { RuntimeObject* L_153 = V_3; NullCheck(L_153); bool L_154 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_153); if (L_154) { goto IL_03eb; } } IL_0413: { IL2CPP_LEAVE(0x42D, FINALLY_0418); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0418; } FINALLY_0418: { // begin finally (depth: 1) { RuntimeObject* L_155 = V_3; V_8 = ((RuntimeObject*)IsInst((RuntimeObject*)L_155, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_156 = V_8; if (L_156) { goto IL_0425; } } IL_0424: { IL2CPP_END_FINALLY(1048) } IL_0425: { RuntimeObject* L_157 = V_8; NullCheck(L_157); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_157); IL2CPP_END_FINALLY(1048) } } // end finally (depth: 1) IL2CPP_CLEANUP(1048) { IL2CPP_JUMP_TBL(0x42D, IL_042d) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_042d: { Hashtable_t1853889766 * L_158 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_159 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_160 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_159, /*hidden argument*/NULL); TypeData_t476999220 * L_161 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_161, L_160, _stringLiteral1272578818, (bool)1, /*hidden argument*/NULL); NullCheck(L_158); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_158, _stringLiteral1272578818, L_161); Hashtable_t1853889766 * L_162 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_163 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; Type_t * L_164 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_163, /*hidden argument*/NULL); TypeData_t476999220 * L_165 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_165, L_164, _stringLiteral63249541, (bool)1, /*hidden argument*/NULL); NullCheck(L_162); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_162, _stringLiteral63249541, L_165); Hashtable_t1853889766 * L_166 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_167 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; Type_t * L_168 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_167, /*hidden argument*/NULL); TypeData_t476999220 * L_169 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_169, L_168, _stringLiteral3216596419, (bool)1, /*hidden argument*/NULL); NullCheck(L_166); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_166, _stringLiteral3216596419, L_169); Hashtable_t1853889766 * L_170 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_171 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_172 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_171, /*hidden argument*/NULL); TypeData_t476999220 * L_173 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_173, L_172, _stringLiteral3447975646, (bool)1, /*hidden argument*/NULL); NullCheck(L_170); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_170, _stringLiteral3447975646, L_173); Hashtable_t1853889766 * L_174 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_175 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_176 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_175, /*hidden argument*/NULL); TypeData_t476999220 * L_177 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_177, L_176, _stringLiteral2834935051, (bool)1, /*hidden argument*/NULL); NullCheck(L_174); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_174, _stringLiteral2834935051, L_177); Hashtable_t1853889766 * L_178 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_179 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_180 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_179, /*hidden argument*/NULL); TypeData_t476999220 * L_181 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_181, L_180, _stringLiteral110852430, (bool)1, /*hidden argument*/NULL); NullCheck(L_178); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_178, _stringLiteral110852430, L_181); Hashtable_t1853889766 * L_182 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_183 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_184 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_183, /*hidden argument*/NULL); TypeData_t476999220 * L_185 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_185, L_184, _stringLiteral2722193337, (bool)1, /*hidden argument*/NULL); NullCheck(L_182); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_182, _stringLiteral2722193337, L_185); Hashtable_t1853889766 * L_186 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_187 = { reinterpret_cast<intptr_t> (DateTime_t3738529785_0_0_0_var) }; Type_t * L_188 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_187, /*hidden argument*/NULL); TypeData_t476999220 * L_189 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_189, L_188, _stringLiteral2704427701, (bool)1, /*hidden argument*/NULL); NullCheck(L_186); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_186, _stringLiteral2704427701, L_189); Hashtable_t1853889766 * L_190 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_191 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_192 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_191, /*hidden argument*/NULL); TypeData_t476999220 * L_193 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_193, L_192, _stringLiteral4080338551, (bool)1, /*hidden argument*/NULL); NullCheck(L_190); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_190, _stringLiteral4080338551, L_193); Hashtable_t1853889766 * L_194 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_195 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_196 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_195, /*hidden argument*/NULL); TypeData_t476999220 * L_197 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_197, L_196, _stringLiteral3245737591, (bool)1, /*hidden argument*/NULL); NullCheck(L_194); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_194, _stringLiteral3245737591, L_197); Hashtable_t1853889766 * L_198 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_199 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_200 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_199, /*hidden argument*/NULL); TypeData_t476999220 * L_201 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_201, L_200, _stringLiteral62725275, (bool)1, /*hidden argument*/NULL); NullCheck(L_198); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_198, _stringLiteral62725275, L_201); Hashtable_t1853889766 * L_202 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_203 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_204 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_203, /*hidden argument*/NULL); TypeData_t476999220 * L_205 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_205, L_204, _stringLiteral996260479, (bool)1, /*hidden argument*/NULL); NullCheck(L_202); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_202, _stringLiteral996260479, L_205); Hashtable_t1853889766 * L_206 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_207 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_208 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_207, /*hidden argument*/NULL); TypeData_t476999220 * L_209 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_209, L_208, _stringLiteral2143290860, (bool)1, /*hidden argument*/NULL); NullCheck(L_206); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_206, _stringLiteral2143290860, L_209); Hashtable_t1853889766 * L_210 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_211 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_212 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_211, /*hidden argument*/NULL); TypeData_t476999220 * L_213 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_213, L_212, _stringLiteral1572351178, (bool)1, /*hidden argument*/NULL); NullCheck(L_210); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_210, _stringLiteral1572351178, L_213); Hashtable_t1853889766 * L_214 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_215 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_216 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_215, /*hidden argument*/NULL); TypeData_t476999220 * L_217 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_217, L_216, _stringLiteral425891063, (bool)1, /*hidden argument*/NULL); NullCheck(L_214); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_214, _stringLiteral425891063, L_217); Hashtable_t1853889766 * L_218 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_219 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_220 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_219, /*hidden argument*/NULL); TypeData_t476999220 * L_221 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_221, L_220, _stringLiteral3820814978, (bool)1, /*hidden argument*/NULL); NullCheck(L_218); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_218, _stringLiteral3820814978, L_221); Hashtable_t1853889766 * L_222 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_223 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_224 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_223, /*hidden argument*/NULL); TypeData_t476999220 * L_225 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_225, L_224, _stringLiteral4120511215, (bool)1, /*hidden argument*/NULL); NullCheck(L_222); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_222, _stringLiteral4120511215, L_225); Hashtable_t1853889766 * L_226 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_227 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_228 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_227, /*hidden argument*/NULL); TypeData_t476999220 * L_229 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_229, L_228, _stringLiteral3835929719, (bool)1, /*hidden argument*/NULL); NullCheck(L_226); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_226, _stringLiteral3835929719, L_229); Hashtable_t1853889766 * L_230 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_231 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_232 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_231, /*hidden argument*/NULL); TypeData_t476999220 * L_233 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_233, L_232, _stringLiteral4276600584, (bool)1, /*hidden argument*/NULL); NullCheck(L_230); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_230, _stringLiteral4276600584, L_233); Hashtable_t1853889766 * L_234 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_235 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_236 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_235, /*hidden argument*/NULL); TypeData_t476999220 * L_237 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_237, L_236, _stringLiteral2851744811, (bool)1, /*hidden argument*/NULL); NullCheck(L_234); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_234, _stringLiteral2851744811, L_237); Hashtable_t1853889766 * L_238 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_239 = { reinterpret_cast<intptr_t> (ByteU5BU5D_t4116647657_0_0_0_var) }; Type_t * L_240 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_239, /*hidden argument*/NULL); TypeData_t476999220 * L_241 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_241, L_240, _stringLiteral841379268, (bool)1, /*hidden argument*/NULL); NullCheck(L_238); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_238, _stringLiteral841379268, L_241); Hashtable_t1853889766 * L_242 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_243 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_244 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_243, /*hidden argument*/NULL); TypeData_t476999220 * L_245 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_245, L_244, _stringLiteral3456546791, (bool)1, /*hidden argument*/NULL); NullCheck(L_242); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_242, _stringLiteral3456546791, L_245); Hashtable_t1853889766 * L_246 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_247 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_248 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_247, /*hidden argument*/NULL); TypeData_t476999220 * L_249 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_249, L_248, _stringLiteral3671082123, (bool)1, /*hidden argument*/NULL); NullCheck(L_246); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_246, _stringLiteral3671082123, L_249); Hashtable_t1853889766 * L_250 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_251 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_252 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_251, /*hidden argument*/NULL); TypeData_t476999220 * L_253 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_253, L_252, _stringLiteral3665773707, (bool)1, /*hidden argument*/NULL); NullCheck(L_250); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_250, _stringLiteral3665773707, L_253); Hashtable_t1853889766 * L_254 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_255 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_256 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_255, /*hidden argument*/NULL); TypeData_t476999220 * L_257 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_257, L_256, _stringLiteral215120649, (bool)1, /*hidden argument*/NULL); NullCheck(L_254); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_254, _stringLiteral215120649, L_257); Hashtable_t1853889766 * L_258 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_259 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_260 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_259, /*hidden argument*/NULL); TypeData_t476999220 * L_261 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_261, L_260, _stringLiteral2005331395, (bool)1, /*hidden argument*/NULL); NullCheck(L_258); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_258, _stringLiteral2005331395, L_261); Hashtable_t1853889766 * L_262 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_263 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_264 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_263, /*hidden argument*/NULL); TypeData_t476999220 * L_265 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_265, L_264, _stringLiteral3244750353, (bool)1, /*hidden argument*/NULL); NullCheck(L_262); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_262, _stringLiteral3244750353, L_265); Hashtable_t1853889766 * L_266 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_267 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_268 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_267, /*hidden argument*/NULL); TypeData_t476999220 * L_269 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_269, L_268, _stringLiteral723171524, (bool)1, /*hidden argument*/NULL); NullCheck(L_266); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_266, _stringLiteral723171524, L_269); Hashtable_t1853889766 * L_270 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_271 = { reinterpret_cast<intptr_t> (ByteU5BU5D_t4116647657_0_0_0_var) }; Type_t * L_272 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_271, /*hidden argument*/NULL); TypeData_t476999220 * L_273 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_273, L_272, _stringLiteral1645561617, (bool)1, /*hidden argument*/NULL); NullCheck(L_270); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_270, _stringLiteral1645561617, L_273); Hashtable_t1853889766 * L_274 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); RuntimeTypeHandle_t3027515415 L_275 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) }; Type_t * L_276 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_275, /*hidden argument*/NULL); TypeData_t476999220 * L_277 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_277, L_276, _stringLiteral1501416449, (bool)1, /*hidden argument*/NULL); NullCheck(L_274); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_274, _stringLiteral1501416449, L_277); Hashtable_t1853889766 * L_278 = (Hashtable_t1853889766 *)il2cpp_codegen_object_new(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable__ctor_m1815022027(L_278, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Hashtable_t1853889766_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_279 = Hashtable_Synchronized_m2228653257(NULL /*static, unused*/, L_278, /*hidden argument*/NULL); ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->set_nullableTypes_3(L_279); Hashtable_t1853889766 * L_280 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); NullCheck(L_280); RuntimeObject* L_281 = VirtFuncInvoker0< RuntimeObject* >::Invoke(32 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_280); V_5 = L_281; } IL_0880: try { // begin try (depth: 1) { goto IL_08d2; } IL_0885: { RuntimeObject* L_282 = V_5; NullCheck(L_282); RuntimeObject * L_283 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_282); V_4 = ((*(DictionaryEntry_t3123975638 *)((DictionaryEntry_t3123975638 *)UnBox(L_283, DictionaryEntry_t3123975638_il2cpp_TypeInfo_var)))); RuntimeObject * L_284 = DictionaryEntry_get_Value_m618120527((&V_4), /*hidden argument*/NULL); V_6 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_284, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_285 = V_6; NullCheck(L_285); Type_t * L_286 = TypeData_get_Type_m3693670728(L_285, /*hidden argument*/NULL); TypeData_t476999220 * L_287 = V_6; NullCheck(L_287); String_t* L_288 = TypeData_get_XmlType_m323326007(L_287, /*hidden argument*/NULL); TypeData_t476999220 * L_289 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_289, L_286, L_288, (bool)1, /*hidden argument*/NULL); V_7 = L_289; TypeData_t476999220 * L_290 = V_7; NullCheck(L_290); TypeData_set_IsNullable_m3746874811(L_290, (bool)1, /*hidden argument*/NULL); Hashtable_t1853889766 * L_291 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nullableTypes_3(); RuntimeObject * L_292 = DictionaryEntry_get_Key_m3117378551((&V_4), /*hidden argument*/NULL); TypeData_t476999220 * L_293 = V_7; NullCheck(L_291); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(29 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_291, L_292, L_293); } IL_08d2: { RuntimeObject* L_294 = V_5; NullCheck(L_294); bool L_295 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t1853284238_il2cpp_TypeInfo_var, L_294); if (L_295) { goto IL_0885; } } IL_08de: { IL2CPP_LEAVE(0x8F9, FINALLY_08e3); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_08e3; } FINALLY_08e3: { // begin finally (depth: 1) { RuntimeObject* L_296 = V_5; V_9 = ((RuntimeObject*)IsInst((RuntimeObject*)L_296, IDisposable_t3640265483_il2cpp_TypeInfo_var)); RuntimeObject* L_297 = V_9; if (L_297) { goto IL_08f1; } } IL_08f0: { IL2CPP_END_FINALLY(2275) } IL_08f1: { RuntimeObject* L_298 = V_9; NullCheck(L_298); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t3640265483_il2cpp_TypeInfo_var, L_298); IL2CPP_END_FINALLY(2275) } } // end finally (depth: 1) IL2CPP_CLEANUP(2275) { IL2CPP_JUMP_TBL(0x8F9, IL_08f9) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_08f9: { return; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type) extern "C" TypeData_t476999220 * TypeTranslator_GetTypeData_m1676550349 (RuntimeObject * __this /* static, unused */, Type_t * ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_GetTypeData_m1676550349_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Type_t * L_0 = ___type0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_1 = TypeTranslator_GetTypeData_m2576829536(NULL /*static, unused*/, L_0, (String_t*)NULL, /*hidden argument*/NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetTypeData(System.Type,System.String) extern "C" TypeData_t476999220 * TypeTranslator_GetTypeData_m2576829536 (RuntimeObject * __this /* static, unused */, Type_t * ___runtimeType0, String_t* ___xmlDataType1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_GetTypeData_m2576829536_MetadataUsageId); s_Il2CppMethodInitialized = true; } Type_t * V_0 = NULL; bool V_1 = false; TypeData_t476999220 * V_2 = NULL; TypeData_t476999220 * V_3 = NULL; TypeData_t476999220 * V_4 = NULL; TypeData_t476999220 * V_5 = NULL; TypeData_t476999220 * V_6 = NULL; String_t* V_7 = NULL; String_t* V_8 = NULL; Type_t * V_9 = NULL; TypeU5BU5D_t3940880105* V_10 = NULL; int32_t V_11 = 0; String_t* G_B25_0 = NULL; String_t* G_B24_0 = NULL; String_t* G_B26_0 = NULL; String_t* G_B27_0 = NULL; String_t* G_B27_1 = NULL; { Type_t * L_0 = ___runtimeType0; V_0 = L_0; V_1 = (bool)0; Type_t * L_1 = V_0; NullCheck(L_1); bool L_2 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericType() */, L_1); if (!L_2) { goto IL_0080; } } { Type_t * L_3 = V_0; NullCheck(L_3); Type_t * L_4 = VirtFuncInvoker0< Type_t * >::Invoke(81 /* System.Type System.Type::GetGenericTypeDefinition() */, L_3); RuntimeTypeHandle_t3027515415 L_5 = { reinterpret_cast<intptr_t> (Nullable_1_t3772285925_0_0_0_var) }; IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var); Type_t * L_6 = Type_GetTypeFromHandle_m1620074514(NULL /*static, unused*/, L_5, /*hidden argument*/NULL); if ((!(((RuntimeObject*)(Type_t *)L_4) == ((RuntimeObject*)(Type_t *)L_6)))) { goto IL_0080; } } { V_1 = (bool)1; Type_t * L_7 = V_0; NullCheck(L_7); TypeU5BU5D_t3940880105* L_8 = VirtFuncInvoker0< TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type[] System.Type::GetGenericArguments() */, L_7); NullCheck(L_8); int32_t L_9 = 0; Type_t * L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); V_0 = L_10; Type_t * L_11 = V_0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_12 = TypeTranslator_GetTypeData_m1676550349(NULL /*static, unused*/, L_11, /*hidden argument*/NULL); V_2 = L_12; TypeData_t476999220 * L_13 = V_2; if (!L_13) { goto IL_0080; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_14 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_t476999220 * L_15 = V_2; NullCheck(L_15); String_t* L_16 = TypeData_get_XmlType_m323326007(L_15, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject * L_17 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_14, L_16); V_3 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_17, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_18 = V_3; if (L_18) { goto IL_007e; } } { Type_t * L_19 = V_0; TypeData_t476999220 * L_20 = V_2; NullCheck(L_20); String_t* L_21 = TypeData_get_XmlType_m323326007(L_20, /*hidden argument*/NULL); TypeData_t476999220 * L_22 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_22, L_19, L_21, (bool)0, /*hidden argument*/NULL); V_3 = L_22; TypeData_t476999220 * L_23 = V_3; NullCheck(L_23); TypeData_set_IsNullable_m3746874811(L_23, (bool)1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_24 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nullableTypes_3(); TypeData_t476999220 * L_25 = V_2; NullCheck(L_25); String_t* L_26 = TypeData_get_XmlType_m323326007(L_25, /*hidden argument*/NULL); TypeData_t476999220 * L_27 = V_3; NullCheck(L_24); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_24, L_26, L_27); } IL_007e: { TypeData_t476999220 * L_28 = V_3; return L_28; } IL_0080: { String_t* L_29 = ___xmlDataType1; if (!L_29) { goto IL_013d; } } { String_t* L_30 = ___xmlDataType1; NullCheck(L_30); int32_t L_31 = String_get_Length_m3847582255(L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_013d; } } { String_t* L_32 = ___xmlDataType1; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_33 = TypeTranslator_GetPrimitiveTypeData_m2740454283(NULL /*static, unused*/, L_32, /*hidden argument*/NULL); V_4 = L_33; Type_t * L_34 = V_0; NullCheck(L_34); bool L_35 = Type_get_IsArray_m2591212821(L_34, /*hidden argument*/NULL); if (!L_35) { goto IL_013a; } } { Type_t * L_36 = V_0; TypeData_t476999220 * L_37 = V_4; NullCheck(L_37); Type_t * L_38 = TypeData_get_Type_m3693670728(L_37, /*hidden argument*/NULL); if ((((RuntimeObject*)(Type_t *)L_36) == ((RuntimeObject*)(Type_t *)L_38))) { goto IL_013a; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_39 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveArrayTypes_2(); String_t* L_40 = ___xmlDataType1; NullCheck(L_39); RuntimeObject * L_41 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_39, L_40); V_5 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_41, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_42 = V_5; if (!L_42) { goto IL_00cd; } } { TypeData_t476999220 * L_43 = V_5; return L_43; } IL_00cd: { TypeData_t476999220 * L_44 = V_4; NullCheck(L_44); Type_t * L_45 = TypeData_get_Type_m3693670728(L_44, /*hidden argument*/NULL); Type_t * L_46 = V_0; NullCheck(L_46); Type_t * L_47 = VirtFuncInvoker0< Type_t * >::Invoke(44 /* System.Type System.Type::GetElementType() */, L_46); if ((!(((RuntimeObject*)(Type_t *)L_45) == ((RuntimeObject*)(Type_t *)L_47)))) { goto IL_0104; } } { Type_t * L_48 = V_0; TypeData_t476999220 * L_49 = V_4; NullCheck(L_49); String_t* L_50 = TypeData_get_XmlType_m323326007(L_49, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); String_t* L_51 = TypeTranslator_GetArrayName_m2745210150(NULL /*static, unused*/, L_50, /*hidden argument*/NULL); TypeData_t476999220 * L_52 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_52, L_48, L_51, (bool)0, /*hidden argument*/NULL); V_5 = L_52; Hashtable_t1853889766 * L_53 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveArrayTypes_2(); String_t* L_54 = ___xmlDataType1; TypeData_t476999220 * L_55 = V_5; NullCheck(L_53); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_53, L_54, L_55); TypeData_t476999220 * L_56 = V_5; return L_56; } IL_0104: { ObjectU5BU5D_t2843939325* L_57 = ((ObjectU5BU5D_t2843939325*)SZArrayNew(ObjectU5BU5D_t2843939325_il2cpp_TypeInfo_var, (uint32_t)5)); NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteral3863278315); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral3863278315); ObjectU5BU5D_t2843939325* L_58 = L_57; Type_t * L_59 = V_0; NullCheck(L_59); Type_t * L_60 = VirtFuncInvoker0< Type_t * >::Invoke(44 /* System.Type System.Type::GetElementType() */, L_59); NullCheck(L_58); ArrayElementTypeCheck (L_58, L_60); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_60); ObjectU5BU5D_t2843939325* L_61 = L_58; NullCheck(L_61); ArrayElementTypeCheck (L_61, _stringLiteral1087025813); (L_61)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral1087025813); ObjectU5BU5D_t2843939325* L_62 = L_61; String_t* L_63 = ___xmlDataType1; NullCheck(L_62); ArrayElementTypeCheck (L_62, L_63); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_63); ObjectU5BU5D_t2843939325* L_64 = L_62; NullCheck(L_64); ArrayElementTypeCheck (L_64, _stringLiteral3452614521); (L_64)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)_stringLiteral3452614521); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_65 = String_Concat_m2971454694(NULL /*static, unused*/, L_64, /*hidden argument*/NULL); InvalidOperationException_t56020091 * L_66 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_66, L_65, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_66,TypeTranslator_GetTypeData_m2576829536_RuntimeMethod_var); } IL_013a: { TypeData_t476999220 * L_67 = V_4; return L_67; } IL_013d: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_68 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); Type_t * L_69 = ___runtimeType0; NullCheck(L_68); RuntimeObject * L_70 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_68, L_69); V_6 = ((TypeData_t476999220 *)IsInstClass((RuntimeObject*)L_70, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_71 = V_6; if (!L_71) { goto IL_0159; } } { TypeData_t476999220 * L_72 = V_6; return L_72; } IL_0159: { Type_t * L_73 = V_0; NullCheck(L_73); bool L_74 = Type_get_IsArray_m2591212821(L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_0184; } } { Type_t * L_75 = V_0; NullCheck(L_75); Type_t * L_76 = VirtFuncInvoker0< Type_t * >::Invoke(44 /* System.Type System.Type::GetElementType() */, L_75); IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_77 = TypeTranslator_GetTypeData_m1676550349(NULL /*static, unused*/, L_76, /*hidden argument*/NULL); NullCheck(L_77); String_t* L_78 = TypeData_get_XmlType_m323326007(L_77, /*hidden argument*/NULL); V_8 = L_78; String_t* L_79 = V_8; String_t* L_80 = TypeTranslator_GetArrayName_m2745210150(NULL /*static, unused*/, L_79, /*hidden argument*/NULL); V_7 = L_80; goto IL_0241; } IL_0184: { Type_t * L_81 = V_0; NullCheck(L_81); bool L_82 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericType() */, L_81); if (!L_82) { goto IL_0234; } } { Type_t * L_83 = V_0; NullCheck(L_83); bool L_84 = VirtFuncInvoker0< bool >::Invoke(80 /* System.Boolean System.Type::get_IsGenericTypeDefinition() */, L_83); if (L_84) { goto IL_0234; } } { Type_t * L_85 = V_0; NullCheck(L_85); String_t* L_86 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_85); Type_t * L_87 = V_0; NullCheck(L_87); String_t* L_88 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_87); NullCheck(L_88); int32_t L_89 = String_IndexOf_m363431711(L_88, ((int32_t)96), /*hidden argument*/NULL); NullCheck(L_86); String_t* L_90 = String_Substring_m1610150815(L_86, 0, L_89, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1981561327_il2cpp_TypeInfo_var); String_t* L_91 = XmlConvert_EncodeLocalName_m2931600124(NULL /*static, unused*/, L_90, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_92 = String_Concat_m3937257545(NULL /*static, unused*/, L_91, _stringLiteral3454318561, /*hidden argument*/NULL); V_7 = L_92; Type_t * L_93 = V_0; NullCheck(L_93); TypeU5BU5D_t3940880105* L_94 = VirtFuncInvoker0< TypeU5BU5D_t3940880105* >::Invoke(78 /* System.Type[] System.Type::GetGenericArguments() */, L_93); V_10 = L_94; V_11 = 0; goto IL_0224; } IL_01d4: { TypeU5BU5D_t3940880105* L_95 = V_10; int32_t L_96 = V_11; NullCheck(L_95); int32_t L_97 = L_96; Type_t * L_98 = (L_95)->GetAt(static_cast<il2cpp_array_size_t>(L_97)); V_9 = L_98; String_t* L_99 = V_7; Type_t * L_100 = V_9; NullCheck(L_100); bool L_101 = Type_get_IsArray_m2591212821(L_100, /*hidden argument*/NULL); G_B24_0 = L_99; if (L_101) { G_B25_0 = L_99; goto IL_01f5; } } { Type_t * L_102 = V_9; NullCheck(L_102); bool L_103 = VirtFuncInvoker0< bool >::Invoke(82 /* System.Boolean System.Type::get_IsGenericType() */, L_102); G_B25_0 = G_B24_0; if (!L_103) { G_B26_0 = G_B24_0; goto IL_0206; } } IL_01f5: { Type_t * L_104 = V_9; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_105 = TypeTranslator_GetTypeData_m1676550349(NULL /*static, unused*/, L_104, /*hidden argument*/NULL); NullCheck(L_105); String_t* L_106 = TypeData_get_XmlType_m323326007(L_105, /*hidden argument*/NULL); G_B27_0 = L_106; G_B27_1 = G_B25_0; goto IL_0217; } IL_0206: { Type_t * L_107 = V_9; NullCheck(L_107); String_t* L_108 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_107); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1981561327_il2cpp_TypeInfo_var); String_t* L_109 = XmlConvert_EncodeLocalName_m2931600124(NULL /*static, unused*/, L_108, /*hidden argument*/NULL); String_t* L_110 = CodeIdentifier_MakePascal_m714146339(NULL /*static, unused*/, L_109, /*hidden argument*/NULL); G_B27_0 = L_110; G_B27_1 = G_B26_0; } IL_0217: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_111 = String_Concat_m3937257545(NULL /*static, unused*/, G_B27_1, G_B27_0, /*hidden argument*/NULL); V_7 = L_111; int32_t L_112 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)1)); } IL_0224: { int32_t L_113 = V_11; TypeU5BU5D_t3940880105* L_114 = V_10; NullCheck(L_114); if ((((int32_t)L_113) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_114)->max_length))))))) { goto IL_01d4; } } { goto IL_0241; } IL_0234: { Type_t * L_115 = V_0; NullCheck(L_115); String_t* L_116 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_115); IL2CPP_RUNTIME_CLASS_INIT(XmlConvert_t1981561327_il2cpp_TypeInfo_var); String_t* L_117 = XmlConvert_EncodeLocalName_m2931600124(NULL /*static, unused*/, L_116, /*hidden argument*/NULL); V_7 = L_117; } IL_0241: { Type_t * L_118 = V_0; String_t* L_119 = V_7; TypeData_t476999220 * L_120 = (TypeData_t476999220 *)il2cpp_codegen_object_new(TypeData_t476999220_il2cpp_TypeInfo_var); TypeData__ctor_m548900801(L_120, L_118, L_119, (bool)0, /*hidden argument*/NULL); V_6 = L_120; bool L_121 = V_1; if (!L_121) { goto IL_025a; } } { TypeData_t476999220 * L_122 = V_6; NullCheck(L_122); TypeData_set_IsNullable_m3746874811(L_122, (bool)1, /*hidden argument*/NULL); } IL_025a: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_123 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nameCache_0(); Type_t * L_124 = ___runtimeType0; TypeData_t476999220 * L_125 = V_6; NullCheck(L_123); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(27 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_123, L_124, L_125); TypeData_t476999220 * L_126 = V_6; return L_126; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String) extern "C" TypeData_t476999220 * TypeTranslator_GetPrimitiveTypeData_m2740454283 (RuntimeObject * __this /* static, unused */, String_t* ___typeName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_GetPrimitiveTypeData_m2740454283_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); TypeData_t476999220 * L_1 = TypeTranslator_GetPrimitiveTypeData_m2492367760(NULL /*static, unused*/, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Xml.Serialization.TypeData System.Xml.Serialization.TypeTranslator::GetPrimitiveTypeData(System.String,System.Boolean) extern "C" TypeData_t476999220 * TypeTranslator_GetPrimitiveTypeData_m2492367760 (RuntimeObject * __this /* static, unused */, String_t* ___typeName0, bool ___nullable1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_GetPrimitiveTypeData_m2492367760_MetadataUsageId); s_Il2CppMethodInitialized = true; } TypeData_t476999220 * V_0 = NULL; Hashtable_t1853889766 * V_1 = NULL; Hashtable_t1853889766 * G_B7_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_0 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); String_t* L_1 = ___typeName0; NullCheck(L_0); RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); V_0 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_2, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_3 = V_0; if (!L_3) { goto IL_0029; } } { TypeData_t476999220 * L_4 = V_0; NullCheck(L_4); Type_t * L_5 = TypeData_get_Type_m3693670728(L_4, /*hidden argument*/NULL); NullCheck(L_5); bool L_6 = Type_get_IsValueType_m3108065642(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0029; } } { TypeData_t476999220 * L_7 = V_0; return L_7; } IL_0029: { bool L_8 = ___nullable1; if (!L_8) { goto IL_0043; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_9 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nullableTypes_3(); if (!L_9) { goto IL_0043; } } { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_10 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_nullableTypes_3(); G_B7_0 = L_10; goto IL_0048; } IL_0043: { IL2CPP_RUNTIME_CLASS_INIT(TypeTranslator_t3446962748_il2cpp_TypeInfo_var); Hashtable_t1853889766 * L_11 = ((TypeTranslator_t3446962748_StaticFields*)il2cpp_codegen_static_fields_for(TypeTranslator_t3446962748_il2cpp_TypeInfo_var))->get_primitiveTypes_1(); G_B7_0 = L_11; } IL_0048: { V_1 = G_B7_0; Hashtable_t1853889766 * L_12 = V_1; String_t* L_13 = ___typeName0; NullCheck(L_12); RuntimeObject * L_14 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(26 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_12, L_13); V_0 = ((TypeData_t476999220 *)CastclassClass((RuntimeObject*)L_14, TypeData_t476999220_il2cpp_TypeInfo_var)); TypeData_t476999220 * L_15 = V_0; if (L_15) { goto IL_0072; } } { String_t* L_16 = ___typeName0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_17 = String_Concat_m3755062657(NULL /*static, unused*/, _stringLiteral1560233285, L_16, _stringLiteral4020356754, /*hidden argument*/NULL); NotSupportedException_t1314879016 * L_18 = (NotSupportedException_t1314879016 *)il2cpp_codegen_object_new(NotSupportedException_t1314879016_il2cpp_TypeInfo_var); NotSupportedException__ctor_m2494070935(L_18, L_17, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_18,TypeTranslator_GetPrimitiveTypeData_m2492367760_RuntimeMethod_var); } IL_0072: { TypeData_t476999220 * L_19 = V_0; return L_19; } } // System.String System.Xml.Serialization.TypeTranslator::GetArrayName(System.String) extern "C" String_t* TypeTranslator_GetArrayName_m2745210150 (RuntimeObject * __this /* static, unused */, String_t* ___elemName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_GetArrayName_m2745210150_MetadataUsageId); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___elemName0; NullCheck(L_0); Il2CppChar L_1 = String_get_Chars_m2986988803(L_0, 0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t4157843068_il2cpp_TypeInfo_var); CultureInfo_t4157843068 * L_2 = CultureInfo_get_InvariantCulture_m3532445182(NULL /*static, unused*/, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Char_t3634460470_il2cpp_TypeInfo_var); Il2CppChar L_3 = Char_ToUpper_m3659851865(NULL /*static, unused*/, L_1, L_2, /*hidden argument*/NULL); Il2CppChar L_4 = L_3; RuntimeObject * L_5 = Box(Char_t3634460470_il2cpp_TypeInfo_var, &L_4); String_t* L_6 = ___elemName0; NullCheck(L_6); String_t* L_7 = String_Substring_m2848979100(L_6, 1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_8 = String_Concat_m1715369213(NULL /*static, unused*/, _stringLiteral3459233542, L_5, L_7, /*hidden argument*/NULL); return L_8; } } // System.Void System.Xml.Serialization.TypeTranslator::ParseArrayType(System.String,System.String&,System.String&,System.String&) extern "C" void TypeTranslator_ParseArrayType_m1334976778 (RuntimeObject * __this /* static, unused */, String_t* ___arrayType0, String_t** ___type1, String_t** ___ns2, String_t** ___dimensions3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (TypeTranslator_ParseArrayType_m1334976778_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { String_t* L_0 = ___arrayType0; NullCheck(L_0); int32_t L_1 = String_LastIndexOf_m2676535141(L_0, _stringLiteral3452614550, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)(-1))))) { goto IL_001f; } } { String_t** L_3 = ___ns2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); *((RuntimeObject **)(L_3)) = (RuntimeObject *)L_4; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_3), (RuntimeObject *)L_4); goto IL_0029; } IL_001f: { String_t** L_5 = ___ns2; String_t* L_6 = ___arrayType0; int32_t L_7 = V_0; NullCheck(L_6); String_t* L_8 = String_Substring_m1610150815(L_6, 0, L_7, /*hidden argument*/NULL); *((RuntimeObject **)(L_5)) = (RuntimeObject *)L_8; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_5), (RuntimeObject *)L_8); } IL_0029: { String_t* L_9 = ___arrayType0; int32_t L_10 = V_0; NullCheck(L_9); int32_t L_11 = String_IndexOf_m3406607758(L_9, _stringLiteral3452614645, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), /*hidden argument*/NULL); V_1 = L_11; int32_t L_12 = V_1; if ((!(((uint32_t)L_12) == ((uint32_t)(-1))))) { goto IL_0050; } } { String_t* L_13 = ___arrayType0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_14 = String_Concat_m3937257545(NULL /*static, unused*/, _stringLiteral2650475604, L_13, /*hidden argument*/NULL); InvalidOperationException_t56020091 * L_15 = (InvalidOperationException_t56020091 *)il2cpp_codegen_object_new(InvalidOperationException_t56020091_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m237278729(L_15, L_14, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_15,TypeTranslator_ParseArrayType_m1334976778_RuntimeMethod_var); } IL_0050: { String_t** L_16 = ___type1; String_t* L_17 = ___arrayType0; int32_t L_18 = V_0; int32_t L_19 = V_1; int32_t L_20 = V_0; NullCheck(L_17); String_t* L_21 = String_Substring_m1610150815(L_17, ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20)), (int32_t)1)), /*hidden argument*/NULL); *((RuntimeObject **)(L_16)) = (RuntimeObject *)L_21; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_16), (RuntimeObject *)L_21); String_t** L_22 = ___dimensions3; String_t* L_23 = ___arrayType0; int32_t L_24 = V_1; NullCheck(L_23); String_t* L_25 = String_Substring_m2848979100(L_23, L_24, /*hidden argument*/NULL); *((RuntimeObject **)(L_22)) = (RuntimeObject *)L_25; Il2CppCodeGenWriteBarrier((RuntimeObject **)(L_22), (RuntimeObject *)L_25); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlAnyAttributeAttribute::.ctor() extern "C" void XmlAnyAttributeAttribute__ctor_m3496712861 (XmlAnyAttributeAttribute_t1449326428 * __this, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__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.Xml.Serialization.XmlAnyElementAttribute::.ctor() extern "C" void XmlAnyElementAttribute__ctor_m2760633889 (XmlAnyElementAttribute_t4038919363 * __this, const RuntimeMethod* method) { { __this->set_order_0((-1)); Attribute__ctor_m1529526131(__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.Xml.Serialization.XmlAttributeAttribute::.ctor(System.String) extern "C" void XmlAttributeAttribute__ctor_m1669468076 (XmlAttributeAttribute_t2511360870 * __this, String_t* ___attributeName0, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___attributeName0; __this->set_attributeName_0(L_0); return; } } // System.Void System.Xml.Serialization.XmlAttributeAttribute::set_DataType(System.String) extern "C" void XmlAttributeAttribute_set_DataType_m1583933386 (XmlAttributeAttribute_t2511360870 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_dataType_1(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String) extern "C" void XmlElementAttribute__ctor_m208346611 (XmlElementAttribute_t17472343 * __this, String_t* ___elementName0, const RuntimeMethod* method) { { __this->set_order_2((-1)); Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___elementName0; __this->set_elementName_0(L_0); return; } } // System.Void System.Xml.Serialization.XmlElementAttribute::.ctor(System.String,System.Type) extern "C" void XmlElementAttribute__ctor_m3214165518 (XmlElementAttribute_t17472343 * __this, String_t* ___elementName0, Type_t * ___type1, const RuntimeMethod* method) { { __this->set_order_2((-1)); Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___elementName0; __this->set_elementName_0(L_0); Type_t * L_1 = ___type1; __this->set_type_1(L_1); return; } } // System.Void System.Xml.Serialization.XmlElementAttribute::set_Type(System.Type) extern "C" void XmlElementAttribute_set_Type_m1314301057 (XmlElementAttribute_t17472343 * __this, Type_t * ___value0, const RuntimeMethod* method) { { Type_t * L_0 = ___value0; __this->set_type_1(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlEnumAttribute::.ctor(System.String) extern "C" void XmlEnumAttribute__ctor_m3485640911 (XmlEnumAttribute_t106705320 * __this, String_t* ___name0, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___name0; __this->set_name_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlIgnoreAttribute::.ctor() extern "C" void XmlIgnoreAttribute__ctor_m1427841136 (XmlIgnoreAttribute_t1428424057 * __this, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__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.Xml.Serialization.XmlNamespaceDeclarationsAttribute::.ctor() extern "C" void XmlNamespaceDeclarationsAttribute__ctor_m1853865456 (XmlNamespaceDeclarationsAttribute_t966425202 * __this, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__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.Xml.Serialization.XmlRootAttribute::.ctor(System.String) extern "C" void XmlRootAttribute__ctor_m2040449968 (XmlRootAttribute_t2306097217 * __this, String_t* ___elementName0, const RuntimeMethod* method) { { __this->set_isNullable_1((bool)1); Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___elementName0; __this->set_elementName_0(L_0); return; } } // System.Void System.Xml.Serialization.XmlRootAttribute::set_Namespace(System.String) extern "C" void XmlRootAttribute_set_Namespace_m1706334443 (XmlRootAttribute_t2306097217 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; __this->set_ns_2(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSchemaProviderAttribute::.ctor(System.String) extern "C" void XmlSchemaProviderAttribute__ctor_m1989773929 (XmlSchemaProviderAttribute_t3872582200 * __this, String_t* ___methodName0, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__this, /*hidden argument*/NULL); String_t* L_0 = ___methodName0; __this->set__methodName_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlSerializerNamespaces::.ctor() extern "C" void XmlSerializerNamespaces__ctor_m1179032600 (XmlSerializerNamespaces_t2702737953 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSerializerNamespaces__ctor_m1179032600_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Object__ctor_m297566312(__this, /*hidden argument*/NULL); ListDictionary_t1624492310 * L_0 = (ListDictionary_t1624492310 *)il2cpp_codegen_object_new(ListDictionary_t1624492310_il2cpp_TypeInfo_var); ListDictionary__ctor_m2955211750(L_0, /*hidden argument*/NULL); __this->set_namespaces_0(L_0); return; } } // System.Void System.Xml.Serialization.XmlSerializerNamespaces::Add(System.String,System.String) extern "C" void XmlSerializerNamespaces_Add_m3530434184 (XmlSerializerNamespaces_t2702737953 * __this, String_t* ___prefix0, String_t* ___ns1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSerializerNamespaces_Add_m3530434184_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlQualifiedName_t2760654312 * V_0 = NULL; { String_t* L_0 = ___prefix0; String_t* L_1 = ___ns1; XmlQualifiedName_t2760654312 * L_2 = (XmlQualifiedName_t2760654312 *)il2cpp_codegen_object_new(XmlQualifiedName_t2760654312_il2cpp_TypeInfo_var); XmlQualifiedName__ctor_m835061046(L_2, L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; ListDictionary_t1624492310 * L_3 = __this->get_namespaces_0(); XmlQualifiedName_t2760654312 * L_4 = V_0; NullCheck(L_4); String_t* L_5 = XmlQualifiedName_get_Name_m815040483(L_4, /*hidden argument*/NULL); XmlQualifiedName_t2760654312 * L_6 = V_0; NullCheck(L_3); ListDictionary_set_Item_m1659493973(L_3, L_5, L_6, /*hidden argument*/NULL); return; } } // System.Xml.XmlQualifiedName[] System.Xml.Serialization.XmlSerializerNamespaces::ToArray() extern "C" XmlQualifiedNameU5BU5D_t1471530361* XmlSerializerNamespaces_ToArray_m2843559361 (XmlSerializerNamespaces_t2702737953 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlSerializerNamespaces_ToArray_m2843559361_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlQualifiedNameU5BU5D_t1471530361* V_0 = NULL; { ListDictionary_t1624492310 * L_0 = __this->get_namespaces_0(); NullCheck(L_0); int32_t L_1 = ListDictionary_get_Count_m414236492(L_0, /*hidden argument*/NULL); V_0 = ((XmlQualifiedNameU5BU5D_t1471530361*)SZArrayNew(XmlQualifiedNameU5BU5D_t1471530361_il2cpp_TypeInfo_var, (uint32_t)L_1)); ListDictionary_t1624492310 * L_2 = __this->get_namespaces_0(); NullCheck(L_2); RuntimeObject* L_3 = ListDictionary_get_Values_m2311943364(L_2, /*hidden argument*/NULL); XmlQualifiedNameU5BU5D_t1471530361* L_4 = V_0; NullCheck(L_3); InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(3 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_t3904884886_il2cpp_TypeInfo_var, L_3, (RuntimeArray *)(RuntimeArray *)L_4, 0); XmlQualifiedNameU5BU5D_t1471530361* L_5 = V_0; return L_5; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Xml.Serialization.XmlTextAttribute::.ctor() extern "C" void XmlTextAttribute__ctor_m831784539 (XmlTextAttribute_t499390083 * __this, const RuntimeMethod* method) { { Attribute__ctor_m1529526131(__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 #ifdef __clang__ #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.Xml.XmlAttribute::.ctor(System.String,System.String,System.String,System.Xml.XmlDocument,System.Boolean,System.Boolean) extern "C" void XmlAttribute__ctor_m288521366 (XmlAttribute_t1173852259 * __this, String_t* ___prefix0, String_t* ___localName1, String_t* ___namespaceURI2, XmlDocument_t2837193595 * ___doc3, bool ___atomizedNames4, bool ___checkNamespace5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlAttribute__ctor_m288521366_MetadataUsageId); s_Il2CppMethodInitialized = true; } { XmlDocument_t2837193595 * L_0 = ___doc3; IL2CPP_RUNTIME_CLASS_INIT(XmlNode_t3767805227_il2cpp_TypeInfo_var); XmlNode__ctor_m2694942411(__this, L_0, /*hidden argument*/NULL); bool L_1 = ___atomizedNames4; if (L_1) { goto IL_0029; } } { String_t* L_2 = ___prefix0; if (L_2) { goto IL_001c; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); ___prefix0 = L_3; } IL_001c: { String_t* L_4 = ___namespaceURI2; if (L_4) { goto IL_0029; } } { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); ___namespaceURI2 = L_5; } IL_0029: { bool L_6 = ___checkNamespace5; if (!L_6) { goto IL_00a6; } } { String_t* L_7 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_8 = String_op_Equality_m920492651(NULL /*static, unused*/, L_7, _stringLiteral3929236445, /*hidden argument*/NULL); if (L_8) { goto IL_0060; } } { String_t* L_9 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_10 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_11 = String_op_Equality_m920492651(NULL /*static, unused*/, L_9, L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00a6; } } { String_t* L_12 = ___localName1; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_13 = String_op_Equality_m920492651(NULL /*static, unused*/, L_12, _stringLiteral3929236445, /*hidden argument*/NULL); if (!L_13) { goto IL_00a6; } } IL_0060: { String_t* L_14 = ___namespaceURI2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_15 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_14, _stringLiteral2829469855, /*hidden argument*/NULL); if (!L_15) { goto IL_007b; } } { ArgumentException_t132251570 * L_16 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_16, _stringLiteral3616512663, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16,XmlAttribute__ctor_m288521366_RuntimeMethod_var); } IL_007b: { String_t* L_17 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_18 = String_op_Equality_m920492651(NULL /*static, unused*/, L_17, _stringLiteral2909972470, /*hidden argument*/NULL); if (!L_18) { goto IL_00a6; } } { String_t* L_19 = ___namespaceURI2; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_20 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_19, _stringLiteral2984480440, /*hidden argument*/NULL); if (!L_20) { goto IL_00a6; } } { ArgumentException_t132251570 * L_21 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_21, _stringLiteral3616512663, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21,XmlAttribute__ctor_m288521366_RuntimeMethod_var); } IL_00a6: { bool L_22 = ___atomizedNames4; if (L_22) { goto IL_0116; } } { String_t* L_23 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_24 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); bool L_25 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00d3; } } { String_t* L_26 = ___prefix0; IL2CPP_RUNTIME_CLASS_INIT(XmlChar_t3816087079_il2cpp_TypeInfo_var); bool L_27 = XmlChar_IsName_m846619221(NULL /*static, unused*/, L_26, /*hidden argument*/NULL); if (L_27) { goto IL_00d3; } } { ArgumentException_t132251570 * L_28 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_28, _stringLiteral3494514062, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_28,XmlAttribute__ctor_m288521366_RuntimeMethod_var); } IL_00d3: { String_t* L_29 = ___localName1; IL2CPP_RUNTIME_CLASS_INIT(XmlChar_t3816087079_il2cpp_TypeInfo_var); bool L_30 = XmlChar_IsName_m846619221(NULL /*static, unused*/, L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00e9; } } { ArgumentException_t132251570 * L_31 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_31, _stringLiteral20642215, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31,XmlAttribute__ctor_m288521366_RuntimeMethod_var); } IL_00e9: { XmlDocument_t2837193595 * L_32 = ___doc3; NullCheck(L_32); XmlNameTable_t71772148 * L_33 = XmlDocument_get_NameTable_m3351667098(L_32, /*hidden argument*/NULL); String_t* L_34 = ___prefix0; NullCheck(L_33); String_t* L_35 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_33, L_34); ___prefix0 = L_35; XmlDocument_t2837193595 * L_36 = ___doc3; NullCheck(L_36); XmlNameTable_t71772148 * L_37 = XmlDocument_get_NameTable_m3351667098(L_36, /*hidden argument*/NULL); String_t* L_38 = ___localName1; NullCheck(L_37); String_t* L_39 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_37, L_38); ___localName1 = L_39; XmlDocument_t2837193595 * L_40 = ___doc3; NullCheck(L_40); XmlNameTable_t71772148 * L_41 = XmlDocument_get_NameTable_m3351667098(L_40, /*hidden argument*/NULL); String_t* L_42 = ___namespaceURI2; NullCheck(L_41); String_t* L_43 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_41, L_42); ___namespaceURI2 = L_43; } IL_0116: { XmlDocument_t2837193595 * L_44 = ___doc3; NullCheck(L_44); XmlNameEntryCache_t2890546907 * L_45 = XmlDocument_get_NameCache_m4223541773(L_44, /*hidden argument*/NULL); String_t* L_46 = ___prefix0; String_t* L_47 = ___localName1; String_t* L_48 = ___namespaceURI2; NullCheck(L_45); XmlNameEntry_t1073099671 * L_49 = XmlNameEntryCache_Add_m886977046(L_45, L_46, L_47, L_48, (bool)1, /*hidden argument*/NULL); __this->set_name_5(L_49); return; } } // System.Xml.XmlLinkedNode System.Xml.XmlAttribute::System.Xml.IHasXmlChildNode.get_LastLinkedChild() extern "C" XmlLinkedNode_t1437094927 * XmlAttribute_System_Xml_IHasXmlChildNode_get_LastLinkedChild_m1333727012 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlLinkedNode_t1437094927 * L_0 = __this->get_lastLinkedChild_7(); return L_0; } } // System.Void System.Xml.XmlAttribute::System.Xml.IHasXmlChildNode.set_LastLinkedChild(System.Xml.XmlLinkedNode) extern "C" void XmlAttribute_System_Xml_IHasXmlChildNode_set_LastLinkedChild_m3601301645 (XmlAttribute_t1173852259 * __this, XmlLinkedNode_t1437094927 * ___value0, const RuntimeMethod* method) { { XmlLinkedNode_t1437094927 * L_0 = ___value0; __this->set_lastLinkedChild_7(L_0); return; } } // System.String System.Xml.XmlAttribute::get_BaseURI() extern "C" String_t* XmlAttribute_get_BaseURI_m702224144 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlAttribute_get_BaseURI_m702224144_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { XmlElement_t561603118 * L_0 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); if (!L_0) { goto IL_001b; } } { XmlElement_t561603118 * L_1 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Xml.XmlNode::get_BaseURI() */, L_1); G_B3_0 = L_2; goto IL_0020; } IL_001b: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); G_B3_0 = L_3; } IL_0020: { return G_B3_0; } } // System.String System.Xml.XmlAttribute::get_LocalName() extern "C" String_t* XmlAttribute_get_LocalName_m1945312869 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlNameEntry_t1073099671 * L_0 = __this->get_name_5(); NullCheck(L_0); String_t* L_1 = L_0->get_LocalName_1(); return L_1; } } // System.String System.Xml.XmlAttribute::get_Name() extern "C" String_t* XmlAttribute_get_Name_m3898029517 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlNameEntry_t1073099671 * L_0 = __this->get_name_5(); XmlDocument_t2837193595 * L_1 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); NullCheck(L_1); XmlNameEntryCache_t2890546907 * L_2 = XmlDocument_get_NameCache_m4223541773(L_1, /*hidden argument*/NULL); NullCheck(L_0); String_t* L_3 = XmlNameEntry_GetPrefixedName_m1299719957(L_0, L_2, /*hidden argument*/NULL); return L_3; } } // System.String System.Xml.XmlAttribute::get_NamespaceURI() extern "C" String_t* XmlAttribute_get_NamespaceURI_m3814509381 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlNameEntry_t1073099671 * L_0 = __this->get_name_5(); NullCheck(L_0); String_t* L_1 = L_0->get_NS_2(); return L_1; } } // System.Xml.XmlNodeType System.Xml.XmlAttribute::get_NodeType() extern "C" int32_t XmlAttribute_get_NodeType_m1268993365 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { return (int32_t)(2); } } // System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() extern "C" XmlDocument_t2837193595 * XmlAttribute_get_OwnerDocument_m1280808947 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlDocument_t2837193595 * L_0 = XmlNode_get_OwnerDocument_m1156966852(__this, /*hidden argument*/NULL); return L_0; } } // System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() extern "C" XmlElement_t561603118 * XmlAttribute_get_OwnerElement_m710283405 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlElement_t561603118 * L_0 = XmlNode_get_AttributeOwnerElement_m1547712886(__this, /*hidden argument*/NULL); return L_0; } } // System.Xml.XmlNode System.Xml.XmlAttribute::get_ParentNode() extern "C" XmlNode_t3767805227 * XmlAttribute_get_ParentNode_m2981307220 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { return (XmlNode_t3767805227 *)NULL; } } // System.Void System.Xml.XmlAttribute::set_Prefix(System.String) extern "C" void XmlAttribute_set_Prefix_m279685582 (XmlAttribute_t1173852259 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlAttribute_set_Prefix_m279685582_MetadataUsageId); s_Il2CppMethodInitialized = true; } { bool L_0 = VirtFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Xml.XmlNode::get_IsReadOnly() */, __this); if (!L_0) { goto IL_0016; } } { XmlException_t1761730631 * L_1 = (XmlException_t1761730631 *)il2cpp_codegen_object_new(XmlException_t1761730631_il2cpp_TypeInfo_var); XmlException__ctor_m3751204500(L_1, _stringLiteral773727311, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,XmlAttribute_set_Prefix_m279685582_RuntimeMethod_var); } IL_0016: { XmlNameEntry_t1073099671 * L_2 = __this->get_name_5(); NullCheck(L_2); String_t* L_3 = L_2->get_Prefix_0(); IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_4 = String_op_Equality_m920492651(NULL /*static, unused*/, L_3, _stringLiteral3929236445, /*hidden argument*/NULL); if (!L_4) { goto IL_004b; } } { String_t* L_5 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); bool L_6 = String_op_Inequality_m215368492(NULL /*static, unused*/, L_5, _stringLiteral3929236445, /*hidden argument*/NULL); if (!L_6) { goto IL_004b; } } { ArgumentException_t132251570 * L_7 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_7, _stringLiteral227014553, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7,XmlAttribute_set_Prefix_m279685582_RuntimeMethod_var); } IL_004b: { XmlDocument_t2837193595 * L_8 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); NullCheck(L_8); XmlNameTable_t71772148 * L_9 = XmlDocument_get_NameTable_m3351667098(L_8, /*hidden argument*/NULL); String_t* L_10 = ___value0; NullCheck(L_9); String_t* L_11 = VirtFuncInvoker1< String_t*, String_t* >::Invoke(4 /* System.String System.Xml.XmlNameTable::Add(System.String) */, L_9, L_10); ___value0 = L_11; XmlDocument_t2837193595 * L_12 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); NullCheck(L_12); XmlNameEntryCache_t2890546907 * L_13 = XmlDocument_get_NameCache_m4223541773(L_12, /*hidden argument*/NULL); String_t* L_14 = ___value0; XmlNameEntry_t1073099671 * L_15 = __this->get_name_5(); NullCheck(L_15); String_t* L_16 = L_15->get_LocalName_1(); XmlNameEntry_t1073099671 * L_17 = __this->get_name_5(); NullCheck(L_17); String_t* L_18 = L_17->get_NS_2(); NullCheck(L_13); XmlNameEntry_t1073099671 * L_19 = XmlNameEntryCache_Add_m886977046(L_13, L_14, L_16, L_18, (bool)1, /*hidden argument*/NULL); __this->set_name_5(L_19); return; } } // System.String System.Xml.XmlAttribute::get_Prefix() extern "C" String_t* XmlAttribute_get_Prefix_m2826082668 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { XmlNameEntry_t1073099671 * L_0 = __this->get_name_5(); NullCheck(L_0); String_t* L_1 = L_0->get_Prefix_0(); return L_1; } } // System.Xml.Schema.IXmlSchemaInfo System.Xml.XmlAttribute::get_SchemaInfo() extern "C" RuntimeObject* XmlAttribute_get_SchemaInfo_m1317932364 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { RuntimeObject* L_0 = __this->get_schemaInfo_8(); return L_0; } } // System.Void System.Xml.XmlAttribute::set_SchemaInfo(System.Xml.Schema.IXmlSchemaInfo) extern "C" void XmlAttribute_set_SchemaInfo_m1420261602 (XmlAttribute_t1173852259 * __this, RuntimeObject* ___value0, const RuntimeMethod* method) { { RuntimeObject* L_0 = ___value0; __this->set_schemaInfo_8(L_0); return; } } // System.Boolean System.Xml.XmlAttribute::get_Specified() extern "C" bool XmlAttribute_get_Specified_m3178870454 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_isDefault_6(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.String System.Xml.XmlAttribute::get_Value() extern "C" String_t* XmlAttribute_get_Value_m1596959290 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); return L_0; } } // System.Void System.Xml.XmlAttribute::set_Value(System.String) extern "C" void XmlAttribute_set_Value_m306683248 (XmlAttribute_t1173852259 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlAttribute_set_Value_m306683248_MetadataUsageId); s_Il2CppMethodInitialized = true; } XmlNode_t3767805227 * V_0 = NULL; { bool L_0 = VirtFuncInvoker0< bool >::Invoke(13 /* System.Boolean System.Xml.XmlNode::get_IsReadOnly() */, __this); if (!L_0) { goto IL_0016; } } { ArgumentException_t132251570 * L_1 = (ArgumentException_t132251570 *)il2cpp_codegen_object_new(ArgumentException_t132251570_il2cpp_TypeInfo_var); ArgumentException__ctor_m1312628991(L_1, _stringLiteral390376736, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1,XmlAttribute_set_Value_m306683248_RuntimeMethod_var); } IL_0016: { XmlDocument_t2837193595 * L_2 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(12 /* System.String System.Xml.XmlNode::get_InnerText() */, __this); String_t* L_4 = ___value0; NullCheck(L_2); XmlDocument_CheckIdTableUpdate_m1665709554(L_2, __this, L_3, L_4, /*hidden argument*/NULL); XmlNode_t3767805227 * L_5 = VirtFuncInvoker0< XmlNode_t3767805227 * >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_0 = ((XmlCharacterData_t1167807131 *)IsInstClass((RuntimeObject*)L_5, XmlCharacterData_t1167807131_il2cpp_TypeInfo_var)); XmlNode_t3767805227 * L_6 = V_0; if (L_6) { goto IL_005a; } } { VirtActionInvoker0::Invoke(36 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this); XmlDocument_t2837193595 * L_7 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); String_t* L_8 = ___value0; NullCheck(L_7); XmlText_t2682211705 * L_9 = VirtFuncInvoker1< XmlText_t2682211705 *, String_t* >::Invoke(50 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_7, L_8); XmlNode_AppendChild_m3759797305(__this, L_9, (bool)0, /*hidden argument*/NULL); goto IL_0090; } IL_005a: { XmlNode_t3767805227 * L_10 = VirtFuncInvoker0< XmlNode_t3767805227 * >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); NullCheck(L_10); XmlNode_t3767805227 * L_11 = VirtFuncInvoker0< XmlNode_t3767805227 * >::Invoke(18 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_10); if (!L_11) { goto IL_0089; } } { VirtActionInvoker0::Invoke(36 /* System.Void System.Xml.XmlNode::RemoveAll() */, __this); XmlDocument_t2837193595 * L_12 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); String_t* L_13 = ___value0; NullCheck(L_12); XmlText_t2682211705 * L_14 = VirtFuncInvoker1< XmlText_t2682211705 *, String_t* >::Invoke(50 /* System.Xml.XmlText System.Xml.XmlDocument::CreateTextNode(System.String) */, L_12, L_13); XmlNode_AppendChild_m3759797305(__this, L_14, (bool)0, /*hidden argument*/NULL); goto IL_0090; } IL_0089: { XmlNode_t3767805227 * L_15 = V_0; String_t* L_16 = ___value0; NullCheck(L_15); VirtActionInvoker1< String_t* >::Invoke(26 /* System.Void System.Xml.XmlNode::set_Value(System.String) */, L_15, L_16); } IL_0090: { __this->set_isDefault_6((bool)0); return; } } // System.String System.Xml.XmlAttribute::get_XmlLang() extern "C" String_t* XmlAttribute_get_XmlLang_m1138422434 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (XmlAttribute_get_XmlLang_m1138422434_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* G_B3_0 = NULL; { XmlElement_t561603118 * L_0 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); if (!L_0) { goto IL_001b; } } { XmlElement_t561603118 * L_1 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); NullCheck(L_1); String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Xml.XmlNode::get_XmlLang() */, L_1); G_B3_0 = L_2; goto IL_0020; } IL_001b: { IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var); String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_2(); G_B3_0 = L_3; } IL_0020: { return G_B3_0; } } // System.Xml.XmlSpace System.Xml.XmlAttribute::get_XmlSpace() extern "C" int32_t XmlAttribute_get_XmlSpace_m3529581901 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { int32_t G_B3_0 = 0; { XmlElement_t561603118 * L_0 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); if (!L_0) { goto IL_001b; } } { XmlElement_t561603118 * L_1 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); NullCheck(L_1); int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(28 /* System.Xml.XmlSpace System.Xml.XmlNode::get_XmlSpace() */, L_1); G_B3_0 = ((int32_t)(L_2)); goto IL_001c; } IL_001b: { G_B3_0 = 0; } IL_001c: { return (int32_t)(G_B3_0); } } // System.Xml.XmlNode System.Xml.XmlAttribute::AppendChild(System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlAttribute_AppendChild_m2134423303 (XmlAttribute_t1173852259 * __this, XmlNode_t3767805227 * ___child0, const RuntimeMethod* method) { { XmlNode_t3767805227 * L_0 = ___child0; XmlNode_t3767805227 * L_1 = XmlNode_AppendChild_m1826791120(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Xml.XmlNode System.Xml.XmlAttribute::InsertBefore(System.Xml.XmlNode,System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlAttribute_InsertBefore_m3291240794 (XmlAttribute_t1173852259 * __this, XmlNode_t3767805227 * ___newChild0, XmlNode_t3767805227 * ___refChild1, const RuntimeMethod* method) { { XmlNode_t3767805227 * L_0 = ___newChild0; XmlNode_t3767805227 * L_1 = ___refChild1; XmlNode_t3767805227 * L_2 = XmlNode_InsertBefore_m3712336504(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Xml.XmlNode System.Xml.XmlAttribute::RemoveChild(System.Xml.XmlNode) extern "C" XmlNode_t3767805227 * XmlAttribute_RemoveChild_m1200168244 (XmlAttribute_t1173852259 * __this, XmlNode_t3767805227 * ___node0, const RuntimeMethod* method) { { XmlNode_t3767805227 * L_0 = ___node0; XmlNode_t3767805227 * L_1 = XmlNode_RemoveChild_m3038472627(__this, L_0, /*hidden argument*/NULL); return L_1; } } // System.Xml.XmlNode System.Xml.XmlAttribute::CloneNode(System.Boolean) extern "C" XmlNode_t3767805227 * XmlAttribute_CloneNode_m1244783453 (XmlAttribute_t1173852259 * __this, bool ___deep0, const RuntimeMethod* method) { XmlNode_t3767805227 * V_0 = NULL; XmlNode_t3767805227 * V_1 = NULL; { XmlDocument_t2837193595 * L_0 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); XmlNameEntry_t1073099671 * L_1 = __this->get_name_5(); NullCheck(L_1); String_t* L_2 = L_1->get_Prefix_0(); XmlNameEntry_t1073099671 * L_3 = __this->get_name_5(); NullCheck(L_3); String_t* L_4 = L_3->get_LocalName_1(); XmlNameEntry_t1073099671 * L_5 = __this->get_name_5(); NullCheck(L_5); String_t* L_6 = L_5->get_NS_2(); NullCheck(L_0); XmlAttribute_t1173852259 * L_7 = XmlDocument_CreateAttribute_m1866139548(L_0, L_2, L_4, L_6, (bool)1, (bool)0, /*hidden argument*/NULL); V_0 = L_7; bool L_8 = ___deep0; if (!L_8) { goto IL_005d; } } { XmlNode_t3767805227 * L_9 = VirtFuncInvoker0< XmlNode_t3767805227 * >::Invoke(10 /* System.Xml.XmlNode System.Xml.XmlNode::get_FirstChild() */, __this); V_1 = L_9; goto IL_0057; } IL_0041: { XmlNode_t3767805227 * L_10 = V_0; XmlNode_t3767805227 * L_11 = V_1; bool L_12 = ___deep0; NullCheck(L_11); XmlNode_t3767805227 * L_13 = VirtFuncInvoker1< XmlNode_t3767805227 *, bool >::Invoke(33 /* System.Xml.XmlNode System.Xml.XmlNode::CloneNode(System.Boolean) */, L_11, L_12); NullCheck(L_10); XmlNode_AppendChild_m3759797305(L_10, L_13, (bool)0, /*hidden argument*/NULL); XmlNode_t3767805227 * L_14 = V_1; NullCheck(L_14); XmlNode_t3767805227 * L_15 = VirtFuncInvoker0< XmlNode_t3767805227 * >::Invoke(18 /* System.Xml.XmlNode System.Xml.XmlNode::get_NextSibling() */, L_14); V_1 = L_15; } IL_0057: { XmlNode_t3767805227 * L_16 = V_1; if (L_16) { goto IL_0041; } } IL_005d: { XmlNode_t3767805227 * L_17 = V_0; return L_17; } } // System.Void System.Xml.XmlAttribute::SetDefault() extern "C" void XmlAttribute_SetDefault_m2091487654 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { { __this->set_isDefault_6((bool)1); return; } } // Mono.Xml.DTDAttributeDefinition System.Xml.XmlAttribute::GetAttributeDefinition() extern "C" DTDAttributeDefinition_t3434905422 * XmlAttribute_GetAttributeDefinition_m1306466778 (XmlAttribute_t1173852259 * __this, const RuntimeMethod* method) { DTDAttListDeclaration_t3593159715 * V_0 = NULL; DTDAttListDeclaration_t3593159715 * G_B5_0 = NULL; DTDAttributeDefinition_t3434905422 * G_B8_0 = NULL; { XmlElement_t561603118 * L_0 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); if (L_0) { goto IL_000d; } } { return (DTDAttributeDefinition_t3434905422 *)NULL; } IL_000d: { XmlDocument_t2837193595 * L_1 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); NullCheck(L_1); XmlDocumentType_t4112370061 * L_2 = VirtFuncInvoker0< XmlDocumentType_t4112370061 * >::Invoke(40 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_1); if (!L_2) { goto IL_0047; } } { XmlDocument_t2837193595 * L_3 = VirtFuncInvoker0< XmlDocument_t2837193595 * >::Invoke(20 /* System.Xml.XmlDocument System.Xml.XmlAttribute::get_OwnerDocument() */, __this); NullCheck(L_3); XmlDocumentType_t4112370061 * L_4 = VirtFuncInvoker0< XmlDocumentType_t4112370061 * >::Invoke(40 /* System.Xml.XmlDocumentType System.Xml.XmlDocument::get_DocumentType() */, L_3); NullCheck(L_4); DTDObjectModel_t1729680289 * L_5 = XmlDocumentType_get_DTD_m2297215448(L_4, /*hidden argument*/NULL); NullCheck(L_5); DTDAttListDeclarationCollection_t2220366188 * L_6 = DTDObjectModel_get_AttListDecls_m2801359668(L_5, /*hidden argument*/NULL); XmlElement_t561603118 * L_7 = VirtFuncInvoker0< XmlElement_t561603118 * >::Invoke(40 /* System.Xml.XmlElement System.Xml.XmlAttribute::get_OwnerElement() */, __this); NullCheck(L_7); String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlElement::get_Name() */, L_7); NullCheck(L_6); DTDAttListDeclaration_t3593159715 * L_9 = DTDAttListDeclarationCollection_get_Item_m3930829771(L_6, L_8, /*hidden argument*/NULL); G_B5_0 = L_9; goto IL_0048; } IL_0047: { G_B5_0 = ((DTDAttListDeclaration_t3593159715 *)(NULL)); } IL_0048: { V_0 = G_B5_0; DTDAttListDeclaration_t3593159715 * L_10 = V_0; if (!L_10) { goto IL_0060; } } { DTDAttListDeclaration_t3593159715 * L_11 = V_0; String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(16 /* System.String System.Xml.XmlAttribute::get_Name() */, __this); NullCheck(L_11); DTDAttributeDefinition_t3434905422 * L_13 = DTDAttListDeclaration_get_Item_m126874962(L_11, L_12, /*hidden argument*/NULL); G_B8_0 = L_13; goto IL_0061; } IL_0060: { G_B8_0 = ((DTDAttributeDefinition_t3434905422 *)(NULL)); } IL_0061: { return G_B8_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
[ "sondesnort1@gmail.com" ]
sondesnort1@gmail.com
87969eaeec38861baa6adb95bed5b90386aa820c
a04b8635f48f588c232a0f4b93b1dd40fb12bb71
/kernel/include/Sigma/mm/vmm.h
a5c4bafa8d1af6195e9fd1b0a270ce7e1747b41d
[ "BSD-2-Clause" ]
permissive
sigma-os/Sigma
9a6bf0a1ba86d21422cd8bb83d512b13bb53c727
30da9446a1f1b5cae4eff77bf9917fae1446ce85
refs/heads/master
2021-06-27T06:16:46.038653
2020-10-27T14:47:03
2020-10-27T14:47:03
177,304,765
52
1
BSD-2-Clause
2020-01-25T20:28:10
2019-03-23T15:20:01
C++
UTF-8
C++
false
false
546
h
#ifndef SIGMA_KERNEL_MM_VMM #define SIGMA_KERNEL_MM_VMM #include <Sigma/common.h> #include <Sigma/misc/misc.h> #include <Sigma/arch/x86_64/paging.h> namespace mm::vmm { class kernel_vmm { public: static x86_64::paging::context& get_instance(){ return _instance(); } kernel_vmm(kernel_vmm const&) = delete; void operator =(kernel_vmm const&) = delete; private: static x86_64::paging::context& _instance(); kernel_vmm() = default; }; } // mm::vmm #endif
[ "twoertman@gmail.com" ]
twoertman@gmail.com
c553af5bdc94d8fe5b49f9fea86340bea0975ef4
76cb6d156e27117d3c021aa660814a8e7b9f66f6
/C++ Code/C++ Primer/ch10/ex10_25.cpp
2cd2f7dc274e67e1a49fef1b0a33f7ea25b607a3
[ "CC0-1.0" ]
permissive
CCP101/CPP_Learning_Code
8258023d726768cb2c7972b12562675703ce706e
ffb95854d001c85129609bf0d930aab31a02935b
refs/heads/master
2021-04-09T14:39:21.362079
2020-12-11T13:14:48
2020-12-11T13:14:48
125,634,540
0
0
null
2018-04-30T01:32:48
2018-03-17T13:58:39
C++
UTF-8
C++
false
false
814
cpp
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <functional> using std::string; using std::vector; using namespace std::placeholders; void elimdups(vector<string> &vs) { std::sort(vs.begin(), vs.end()); vs.erase(unique(vs.begin(), vs.end()), vs.end()); } bool check_size(const string &s, string::size_type sz) { return s.size() >= sz; } void biggies(vector<string> &words, vector<string>::size_type sz) { elimdups(words); auto iter = std::stable_partition(words.begin(), words.end(), bind(check_size, _1, sz)); for_each(words.begin(), iter, [](const string &s) { std::cout << s << " "; }); } int main() { std::vector<std::string> v{"the", "quick", "red", "fox", "jumps", "over", "the", "slow", "red", "turtle"}; biggies(v, 4); }
[ "liwentao0523@hotmail.com" ]
liwentao0523@hotmail.com
c549c835f09b7d4c9108c720933ad0f3f64ed898
e36e9891c9e1d6cc0018a296c5b5191879dc404e
/328.OddEvenLinkedList.cpp
95543e429737dfd3832fd0d1f7aec3cb2fd0c441
[ "MIT" ]
permissive
mrdrivingduck/leet-code
ead8673c651390f48da6aeb9b76720264dd8afc4
fee008f3a62849a21ca703e05f755378996a1ff5
refs/heads/master
2021-11-07T19:29:02.729383
2021-09-17T15:10:13
2021-09-17T15:10:13
200,062,053
0
0
null
null
null
null
UTF-8
C++
false
false
2,751
cpp
/** * @author Mr Dk. * @version 2020.11.13 */ /* Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes. You should try to do it in place. The program should run in O(1) space complexity and O(nodes) time complexity. Example 1: Input: 1->2->3->4->5->NULL Output: 1->3->5->2->4->NULL Example 2: Input: 2->1->3->5->6->4->7->NULL Output: 2->3->6->7->1->5->4->NULL   Constraints: The relative order inside both the even and odd groups should remain as it was in the input. The first node is considered odd, the second node even and so on ... The length of the linked list is between [0, 10^4]. 来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/odd-even-linked-list 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。 */ /* 要求空间复杂度为 O(1) 的原地算法。两个奇偶指针交替后移,直到两者的 next 指针都为空。 保证奇指针停在最后一个结点上。最后将奇偶链表串在一起。 */ #include <iostream> using std::cout; using std::endl; /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(int x) : val(x), next(nullptr) {} * ListNode(int x, ListNode *next) : val(x), next(next) {} * }; */ struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode *next) : val(x), next(next) {} }; class Solution { public: ListNode* oddEvenList(ListNode* head) { if (!head || !head->next) { return head; } ListNode *p = head, *q = head->next; ListNode *odd_head = q; while (q && q->next) { p->next = q->next; p = p->next; q->next = p->next; q = q->next; } p->next = odd_head; return head; } }; int main() { Solution s; ListNode *p = new ListNode(5); p = new ListNode(4, p); p = new ListNode(3, p); p = new ListNode(2, p); p = new ListNode(1, p); p = s.oddEvenList(p); while (p) { cout << p->val << " "; p = p->next; } cout << endl; p = new ListNode(4); p = new ListNode(3, p); p = new ListNode(2, p); p = new ListNode(1, p); p = s.oddEvenList(p); while (p) { cout << p->val << " "; p = p->next; } cout << endl; return 0; }
[ "562655624@qq.com" ]
562655624@qq.com
4f9e1abb9263d816e915b6f26a9b7909e99df171
f7f5677245f880a4574fbbd9a3976a3ab1be5a29
/MiniSysAssembler/Instruction_J_Format.cpp
3767a2010be31d60aa3c8fabd18bf4a82f98a455
[ "Apache-2.0" ]
permissive
Joker-vain/MiniSysAssembler
b07430a69aa4f52d25299e1dec8223964b435036
bd6fcb6ba802619abf1e1283a1904733efa5f509
refs/heads/master
2020-09-05T23:23:38.393296
2019-07-18T04:09:06
2019-07-18T04:09:06
null
0
0
null
null
null
null
GB18030
C++
false
false
2,566
cpp
/* * Copyright 2019 nzh63 * * 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 "pch.h" std::regex J_format_regex("^(j|jal)", std::regex::icase); MachineCode J_FormatInstruction(const std::string& mnemonic, const std::string& assembly, UnsolvedSymbolMap& unsolved_symbol_map, MachineCodeHandle machine_code_it) { MachineCode& machine_code = *machine_code_it; if (isJ_Format(assembly)) { machine_code = 0; std::string op1, op2, op3; GetOperand(assembly, op1, op2, op3); if ((isNumber(op1) || isSymbol(op1)) && op2.empty() && op3.empty()) { if (mnemonic == "J") { SetOP(machine_code, 0b000010); } else { SetOP(machine_code, 0b000011); } if (isNumber(op1)) { SetAddress(machine_code, toNumber(op1)); Warning( "You are using an immediate value in jump instruction, " "please make sure that you know what you are doing."); } else { SetAddress(machine_code, 0); // 标号,使用0占位 unsolved_symbol_map[op1].push_back( SymbolRef{machine_code_it, cur_instruction}); } } else { if (op2.empty() && op3.empty()) throw ExceptNumberOrSymbol(op1); else throw TooManyOperand(mnemonic); } } else { throw UnkonwInstruction(mnemonic); } return machine_code; } bool isJ_Format(MachineCode machine_code) { int op = machine_code >> 26; return op == 0b000010 || op == 0b000011; } bool isJ_Format(const std::string& assembly) { std::string mnemonic = GetMnemonic(assembly); std::cmatch m; std::regex_match(mnemonic.c_str(), m, J_format_regex); if (!m.empty() && m.prefix().str().empty() && m.suffix().str().empty()) { return true; } else { return false; } }
[ "nzh21@outlook.com" ]
nzh21@outlook.com
f8b70cfedb53bb48ed5e71f5827bee74bc21e8e9
8b9448811a58102e2b91a12579e62fbe03fa8aad
/client.cpp
7777d445e15370961d193914afe8745718957b47
[]
no_license
TomaszPluta/SqqtClient-
b026fc968844cdb38c767f736aa0920c9ad72252
f8f165347689fab3d6f982e230af81005592b59a
refs/heads/master
2020-06-20T17:14:23.964684
2019-07-16T08:55:30
2019-07-16T08:55:30
197,189,788
0
0
null
null
null
null
UTF-8
C++
false
false
1,374
cpp
#include "ClientSocket.h" #include "SocketException.h" #include <iostream> #include <string> #include <cstdlib> #include <unistd.h> #include <future> using namespace std; void asyncCall(void){ std::cout<<"client is running"<<std::endl; } int main (int argc, char* argv[]) { std::cout << "supported cmds:\n"<< "subscribe:xx\npublish:xx:yy\n"<<std::endl; std::cout << "Client start" << std::endl; future <void> greetings = std::async(std::launch::async, asyncCall); string host = "localhost"; constexpr int port = 1886; try{ ClientSocket client_socket ( host, port ); if (argc>1){ client_socket << argv[1]; } else { client_socket << "subscribe:aa"; } auto rec = [&]( ) { while (1) { std::cout<<"from async labda"<<std::endl; string reply; client_socket >> reply; std::cout << "Client got msg: " << reply <<std::endl; } }; std::thread tRec(rec, std::ref(client_socket)); std::string userInput; do { std::cin>>userInput; client_socket << userInput; } while (userInput != "end"); tRec.join(); } catch (...){ std::cout<<"connection lost."<<endl; } std::cout << "Client end" << std::endl; return 0; }
[ "tomasz.pluta.g2@gmail.com" ]
tomasz.pluta.g2@gmail.com
1a9290c2afec6fa1cdcd1ba0920a3c5e133a408d
17f791c50ca063770e7ab0fbe6adb6e277518eba
/42. Pattern(star)3.cpp
d3b86311c40e06603181b8be342d4469d0d124ed
[]
no_license
mosroormofizarman/Practice-CPP-Programming-of-Anisul-Islam-Tutorials
376123a94beb3e99343c44f240366fa20899693c
2babd3eb60485693181ce08b5c7763e35ae61be1
refs/heads/main
2023-08-20T00:50:43.082445
2021-10-14T13:21:18
2021-10-14T13:21:18
412,907,927
0
0
null
null
null
null
UTF-8
C++
false
false
973
cpp
#include <iostream> #include <conio.h> using namespace std; int main() { int n, row, col; cout << "Enter number of lines: "; cin >> n; for(row=1; row<=n; row++) { for(col=1; col<=n-row; col++) { cout << " "; } for(col=1; col<=row; col++) { cout << " *"; } cout << endl; } cout << endl << endl << endl; for(row=1; row<=n; row++) { for(col=1; col<=n-row; col++) { cout << " "; } for(col=1; col<=row; col++) { cout << " *"; } cout << endl; } for(row=n-1; row>=1; row--) { for(col=1; col<=n-row; col++) { cout << " "; } for(col=1; col<=row; col++) { cout << " *"; } cout << endl; } getch(); }
[ "noreply@github.com" ]
mosroormofizarman.noreply@github.com
848a0d276431fcd075baa67144d6b39e66cfb445
01115167ff3bc0e95f433fbb3b8d63e546b364cc
/Src/Map/Map.cpp
98522ae442c0a8f14716097580480d0e88da41c0
[]
no_license
sagachan/team-
a26cbea0ce6c903ad15133fc02925d9cf7ddc894
1ef1bc6701d2397c024a29c9e982dd1ac331e5b8
refs/heads/master
2023-03-22T14:03:56.159791
2021-03-13T13:24:45
2021-03-13T13:24:45
347,370,822
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
22,304
cpp
#include <DxLib.h> #include "Map.h" #include "../Player/Player.h" MAP_CHIP mapInfo[MAP_CHIP_NUM][MAP_CHIP_NUM] = { 0 }; MAP_CHIP_SAVE mapInfo_save[MAP_CHIP_NUM][MAP_CHIP_NUM] = { 0 }; int MapLine_Main[MAP_CHIP_NUM][MAP_CHIP_NUM] //最初に設定されたマップ状態 { 1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,1,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, 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,0,0,0,0,1,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0, }; int save_loop = 0; int height_save = 0, width_save = 0; int player_action; void InitMap() { int src_handle_map = LoadGraph(MAP_CHIP_1); for (int height = 0; height < MAP_CHIP_NUM; height++) { for (int width = 0; width < MAP_CHIP_NUM; width++) { int start_x = 0, start_y = 0; if (MapLine_Main[height][width] == WOOD) { start_x = 0; start_y = 0; mapInfo[height][width].isUse = true; mapInfo[height][width].kind = WOOD; } else if(MapLine_Main[height][width] == ROCK) { start_x = MAP_PATH_MEDIUM; start_y = 0; mapInfo[height][width].isUse = true; mapInfo[height][width].kind = ROCK; } mapInfo[height][width].handle = DerivationGraph(start_x, start_y, MAP_PATH_MEDIUM, MAP_PATH_MEDIUM, src_handle_map); } } if (save_loop == 0) { for (int height = 0; height < MAP_CHIP_NUM; height++) { for (int width = 0; width < MAP_CHIP_NUM; width++) { mapInfo_save[height][width].x = mapInfo[height][width].x; mapInfo_save[height][width].y = mapInfo[height][width].y; mapInfo_save[height][width].kind = mapInfo[height][width].kind; mapInfo_save[height][width].isUse = mapInfo[height][width].isUse; } } save_loop++; //一度しか通さない処理 } } void StepMap() { bool loop_flag = true; //ここで関数を呼び出して、処理開始 //とりあえずpos、action、directionとして書いておく(必要なくなったら消して PlayerInfo *playerinfo = GetPlayerInfo(); /*playerinfo->direction;*/ for (int height = 0; height < MAP_CHIP_NUM; height++) { for (int width = 0; width < MAP_CHIP_NUM; width++) { if (loop_flag == true) { if (mapInfo[height][width].y > playerinfo->pos.y) { //そこから一つ戻った位置のマップチップ上にいる height_save = height - 1; } if (mapInfo[height][width].x > playerinfo->pos.x) //0から始まるため、x、yが通り過ぎるまで調べて { //そこから一つ戻った位置のマップチップ上にいる width_save = width - 1; loop_flag = false; } } } } if (playerinfo->direction == PLAYER_DIR_UP) //見ている方向にアクション可能なオブジェクトがあるか { height_save--; } if (playerinfo->direction == PLAYER_DIR_DOWN) { height_save++; } if (playerinfo->direction == PLAYER_DIR_LEFT) { width_save--; } if (playerinfo->direction == PLAYER_DIR_RIGHT) { width_save++; } if (mapInfo[height_save][width_save].isUse == true) { mapInfo[height_save][width_save].isUse = false; player_action = mapInfo[height_save][width_save].kind; } for (int height = 0; height < MAP_CHIP_NUM; height++) //現在の状態をセーブに格納 { for (int width = 0; width < MAP_CHIP_NUM; width++) { mapInfo[height][width].x = mapInfo_save[height][width].x; //あとで機能をいろいろ追加していくときに使うからあらかじめ書いておく mapInfo[height][width].y = mapInfo_save[height][width].y; mapInfo[height][width].kind = mapInfo_save[height][width].kind; mapInfo[height][width].isUse = mapInfo_save[height][width].isUse; } } } void DrawMap() { for (int height = 0; height < MAP_CHIP_NUM; height++) { for (int width = 0; width < MAP_CHIP_NUM; width++) { if (mapInfo_save[height][width].isUse == true) //使われているところのみ読みこみ { DrawRotaGraph(width, height, 1.0, 0.0, mapInfo[height][width].handle, true); } } } } void FinMap() { for (int height = 0; height < MAP_CHIP_NUM; height++) { for (int width = 0; width < MAP_CHIP_NUM; width++) { if (mapInfo_save[height][width].isUse == true) { DeleteGraph(mapInfo[height][width].handle); } } } } int Getkind() //アクションの種類を渡す { return player_action; }
[ "sagachan1218@gmail.com" ]
sagachan1218@gmail.com